# HG changeset patch # User William Roberts # Date 1271777083 -3600 # Node ID 76efc8f9f7b47002220d51e5b7cb0e9e95f64de4 # Parent c0155353733c0efb8d28cbd9dcc0abb0e985490e Apply Faisal's first patch from Bug 2354 - First resolve some the the bit rot in graphics MCL to get it to compile, then fix some performance issues in OpenWF diff -r c0155353733c -r 76efc8f9f7b4 graphicscomposition/openwfcompositionengine/common/include/owfimage.h --- a/graphicscomposition/openwfcompositionengine/common/include/owfimage.h Fri Apr 02 11:19:42 2010 +0100 +++ b/graphicscomposition/openwfcompositionengine/common/include/owfimage.h Tue Apr 20 16:24:43 2010 +0100 @@ -66,6 +66,7 @@ #define OWF_BLEND_ROUNDING_VALUE 0.0f #define OWF_PREMUL_ROUNDING_FACTOR 0.0f #define OWF_SOURCE_CONVERSION_ROUNDING_VALUE 0.0f +#define OWF_ALPHA_MIN_STEP_VALUE (1.0f/256.0f) #else #undef OWF_IMAGE_INTERNAL_PIXEL_IS_FLOAT @@ -89,6 +90,7 @@ #define OWF_SOURCE_CONVERSION_ROUNDING_VALUE 0.5f #define OWF_BLEND_ROUNDING_VALUE (OWF_ALPHA_MAX_VALUE/2) #define OWF_PREMUL_ROUNDING_FACTOR (OWF_ALPHA_MAX_VALUE/2) +#define OWF_ALPHA_MIN_STEP_VALUE 1 #endif diff -r c0155353733c -r 76efc8f9f7b4 graphicscomposition/openwfcompositionengine/common/src/owfimage.c --- a/graphicscomposition/openwfcompositionengine/common/src/owfimage.c Fri Apr 02 11:19:42 2010 +0100 +++ b/graphicscomposition/openwfcompositionengine/common/src/owfimage.c Tue Apr 20 16:24:43 2010 +0100 @@ -294,6 +294,7 @@ { case OWF_IMAGE_ARGB8888: { +#ifdef USE_FLOAT_PIXEL OWFuint32* srcPtr = (OWFuint32*) srcLinePtr; while (count > 0) @@ -310,6 +311,9 @@ srcPtr ++; count--; } +#else + memcpy(dstLinePtr, srcLinePtr, src->stride); +#endif break; } @@ -319,6 +323,7 @@ while (count > 0) { +#ifdef USE_FLOAT_PIXEL dstPtr->color.alpha = OWF_FULLY_OPAQUE; dstPtr->color.red = (OWFsubpixel) OWF_RED_MAX_VALUE * ((*srcPtr & ARGB8888_RED_MASK) >> ARGB8888_RED_SHIFT) / OWF_BYTE_MAX_VALUE; @@ -326,6 +331,9 @@ OWF_GREEN_MAX_VALUE * ((*srcPtr & ARGB8888_GREEN_MASK) >> ARGB8888_GREEN_SHIFT) / OWF_BYTE_MAX_VALUE; dstPtr->color.blue = (OWFsubpixel) OWF_BLUE_MAX_VALUE * ((*srcPtr & ARGB8888_BLUE_MASK) >> ARGB8888_BLUE_SHIFT) / OWF_BYTE_MAX_VALUE; +#else + *(OWFuint32*)dstPtr = *srcPtr | ARGB8888_ALPHA_MASK; +#endif dstPtr ++; srcPtr ++; count--; @@ -450,6 +458,7 @@ OWFint countY; OWFuint32* dstPtr; OWFpixel* srcPtr; + OWFuint8* destination; OWF_ASSERT(dst != 0 && dst->data != NULL); OWF_ASSERT(src != 0 && src->data != NULL); @@ -478,16 +487,17 @@ OWF_Image_UnpremultiplyAlpha(src); } + destination = (OWFuint8*) dst->data; for (countY = 0; countY < src->height; countY++) { - OWFuint8* destination = (OWFuint8*) dst->data; - destination += countY*dst->stride; dstPtr = (OWFuint32*) destination; - + destination += dst->stride; + switch (dst->format.pixelFormat) { case OWF_IMAGE_ARGB8888: { +#ifdef USE_FLOAT_PIXEL OWFint countX; OWFuint32 dstPixel = 0; @@ -505,11 +515,16 @@ dstPtr ++; srcPtr ++; } +#else + memcpy(dstPtr, srcPtr, src->stride); + srcPtr = (OWFpixel*)((OWFuint8*)srcPtr + src->stride); +#endif break; } case OWF_IMAGE_XRGB8888: { +#ifdef USE_FLOAT_PIXEL OWFint countX; OWFuint32 dstPixel = 0; @@ -526,6 +541,10 @@ dstPtr ++; srcPtr ++; } +#else + memcpy(dstPtr, srcPtr, src->stride); + srcPtr = (OWFpixel*)((OWFuint8*)srcPtr + src->stride); +#endif break; } @@ -1406,6 +1425,18 @@ } /* end tsColor check */ \ srcPtr ++; \ dstPtr ++; \ + --colCount; \ + } \ + srcPtr += srcLineDelta; \ + dstPtr += dstLineDelta; \ + --rowCount; \ + } + +#define BLENDER_INNER_LOOP_END_WITH_MASK \ + DA = blend->destinationFullyOpaque ? OWF_FULLY_OPAQUE : DA; \ + } /* end tsColor check */ \ + srcPtr ++; \ + dstPtr ++; \ maskPtr++; \ --colCount; \ } \ @@ -1538,11 +1569,17 @@ srcLineDelta = src->width - srect.width; dstLineDelta = dst->width - drect.width; + if ((transparency & OWF_TRANSPARENCY_GLOBAL_ALPHA) && (GA > (OWF_ALPHA_MAX_VALUE - OWF_ALPHA_MIN_STEP_VALUE))) + { + /* Fully opaque, so ignore global alpha */ + transparency &= ~OWF_TRANSPARENCY_GLOBAL_ALPHA; + } /* inner loops */ switch (transparency) { case OWF_TRANSPARENCY_NONE: { +#ifdef SLOW_CODE /* rgb = src.rgb alpha = 1 @@ -1553,6 +1590,9 @@ DB = SB; DA = OWF_FULLY_OPAQUE; BLENDER_INNER_LOOP_END; +#else + memcpy(dstPtr, srcPtr, drect.height*drect.width*4); +#endif break; } @@ -1582,10 +1622,28 @@ alpha = src.alpha + dst.alpha * (1 - src.alpha) */ BLENDER_INNER_LOOP_BEGIN; - DR = SR + (DR * (OWF_FULLY_OPAQUE - SA) + OWF_BLEND_ROUNDING_VALUE) / OWF_ALPHA_MAX_VALUE; - DG = SG + (DG * (OWF_FULLY_OPAQUE - SA) + OWF_BLEND_ROUNDING_VALUE) / OWF_ALPHA_MAX_VALUE; - DB = SB + (DB * (OWF_FULLY_OPAQUE - SA) + OWF_BLEND_ROUNDING_VALUE) / OWF_ALPHA_MAX_VALUE; - DA = SA + (DA * (OWF_FULLY_OPAQUE - SA) + OWF_BLEND_ROUNDING_VALUE) / OWF_ALPHA_MAX_VALUE; + if (SA > (OWF_ALPHA_MAX_VALUE - OWF_ALPHA_MIN_STEP_VALUE)) + { + /* Fully opaque source pixel */ + DR = SR; + DG = SG; + DB = SB; + DA = OWF_FULLY_OPAQUE; + } + else + { + if (SA >= OWF_ALPHA_MIN_STEP_VALUE) + { + /* Not fully transparent source pixel */ + /* + * DR = SR + (DR * (OWF_FULLY_OPAQUE - SA) + OWF_BLEND_ROUNDING_VALUE) / OWF_ALPHA_MAX_VALUE; + */ + DR = SR + (DR * (OWF_FULLY_OPAQUE - SA) + OWF_BLEND_ROUNDING_VALUE) >> 8; + DG = SG + (DG * (OWF_FULLY_OPAQUE - SA) + OWF_BLEND_ROUNDING_VALUE) >> 8; + DB = SB + (DB * (OWF_FULLY_OPAQUE - SA) + OWF_BLEND_ROUNDING_VALUE) >> 8; + DA = SA + (DA * (OWF_FULLY_OPAQUE - SA) + OWF_BLEND_ROUNDING_VALUE) >> 8; + } + } BLENDER_INNER_LOOP_END; break; } @@ -1605,7 +1663,7 @@ OWF_ALPHA_MAX_VALUE; DA = MA + (DA * (OWF_FULLY_OPAQUE - MA) + OWF_BLEND_ROUNDING_VALUE) / OWF_ALPHA_MAX_VALUE; - BLENDER_INNER_LOOP_END; + BLENDER_INNER_LOOP_END_WITH_MASK; break; } @@ -1651,7 +1709,7 @@ OWF_ALPHA_MAX_VALUE; //No need to check with OWF_ALPHA_MIN_VALUE as it is zero OWF_ASSERT(GA <= OWF_ALPHA_MAX_VALUE); - BLENDER_INNER_LOOP_END; + BLENDER_INNER_LOOP_END_WITH_MASK; break; } diff -r c0155353733c -r 76efc8f9f7b4 graphicscomposition/openwfcompositionengine/group/openwfc.mmp --- a/graphicscomposition/openwfcompositionengine/group/openwfc.mmp Fri Apr 02 11:19:42 2010 +0100 +++ b/graphicscomposition/openwfcompositionengine/group/openwfc.mmp Tue Apr 20 16:24:43 2010 +0100 @@ -39,6 +39,9 @@ CAPABILITY PowerMgmt ReadDeviceData WriteDeviceData ProtServ UID 0 KUidOpenWfcDllUidValue +OPTION ARMCC -O3 -Otime --cpu 6 +ALWAYS_BUILD_AS_ARM + OS_LAYER_SYSTEMINCLUDE_SYMBIAN OS_LAYER_LIBC_SYSTEMINCLUDE MACRO HG_NO_ALLOCA_H diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/bwins/GRAPHICDRAWERU.DEF --- a/windowing/windowserver/bwins/GRAPHICDRAWERU.DEF Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/bwins/GRAPHICDRAWERU.DEF Tue Apr 20 16:24:43 2010 +0100 @@ -59,11 +59,11 @@ ?DrawingRegion@TWservCrEvent@@QBEPBVTRegion@@XZ @ 58 NONAME ; class TRegion const * TWservCrEvent::DrawingRegion(void) const ?WindowGroupIdentifier@TWservCrEvent@@QBEHXZ @ 59 NONAME ; int TWservCrEvent::WindowGroupIdentifier(void) const ?Add@CWsGraphicDrawerArray@@QAEHPAVCWsGraphicDrawer@@@Z @ 60 NONAME ; int CWsGraphicDrawerArray::Add(class CWsGraphicDrawer *) - ?AddTLC@CWsGraphicDrawerArray@@QAEPAUXRollBackBase@1@PAVCWsGraphicDrawer@@@Z @ 61 NONAME ; struct CWsGraphicDrawerArray::XRollBackBase * CWsGraphicDrawerArray::AddTLC(class CWsGraphicDrawer *) - ?CommitP@CWsGraphicDrawerArray@@QAEXPAUXRollBackBase@1@@Z @ 62 NONAME ; void CWsGraphicDrawerArray::CommitP(struct CWsGraphicDrawerArray::XRollBackBase *) - ?RemoveTLC@CWsGraphicDrawerArray@@QAEPAUXRollBackBase@1@ABUTGraphicDrawerId@@@Z @ 63 NONAME ; struct CWsGraphicDrawerArray::XRollBackBase * CWsGraphicDrawerArray::RemoveTLC(struct TGraphicDrawerId const &) + ?AddTLC@CWsGraphicDrawerArray@@QAEPAVXRollBackBase@1@PAVCWsGraphicDrawer@@@Z @ 61 NONAME ; struct CWsGraphicDrawerArray::XRollBackBase * CWsGraphicDrawerArray::AddTLC(class CWsGraphicDrawer *) + ?CommitP@CWsGraphicDrawerArray@@QAEXPAVXRollBackBase@1@@Z @ 62 NONAME ; void CWsGraphicDrawerArray::CommitP(struct CWsGraphicDrawerArray::XRollBackBase *) + ?RemoveTLC@CWsGraphicDrawerArray@@QAEPAVXRollBackBase@1@ABUTGraphicDrawerId@@@Z @ 63 NONAME ; struct CWsGraphicDrawerArray::XRollBackBase * CWsGraphicDrawerArray::RemoveTLC(struct TGraphicDrawerId const &) ?Swap@CWsGraphicDrawerArray@@QAEHPAVCWsGraphicDrawer@@@Z @ 64 NONAME ; int CWsGraphicDrawerArray::Swap(class CWsGraphicDrawer *) - ?SwapTLC@CWsGraphicDrawerArray@@QAEPAUXRollBackBase@1@PAVCWsGraphicDrawer@@@Z @ 65 NONAME ; struct CWsGraphicDrawerArray::XRollBackBase * CWsGraphicDrawerArray::SwapTLC(class CWsGraphicDrawer *) + ?SwapTLC@CWsGraphicDrawerArray@@QAEPAVXRollBackBase@1@PAVCWsGraphicDrawer@@@Z @ 65 NONAME ; struct CWsGraphicDrawerArray::XRollBackBase * CWsGraphicDrawerArray::SwapTLC(class CWsGraphicDrawer *) ?Orientation@TWservCrEvent@@QBE?AW4TGraphicsOrientation@CFbsBitGc@@XZ @ 66 NONAME ; enum CFbsBitGc::TGraphicsOrientation TWservCrEvent::Orientation(void) const ?FinalClose@WsGraphicDrawer@@SAXXZ @ 67 NONAME ; void WsGraphicDrawer::FinalClose(void) ?WasVisible@TWservCrEvent@@QBEHXZ @ 68 NONAME ; int TWservCrEvent::WasVisible(void) const diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/bwins/RemoteGcSwitchU.def --- a/windowing/windowserver/bwins/RemoteGcSwitchU.def Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/bwins/RemoteGcSwitchU.def Tue Apr 20 16:24:43 2010 +0100 @@ -1,19 +1,19 @@ -EXPORTS - call_vector_1 @ 1 NONAME ; CCommandBuffer::~CCommandBuffer(void) - call_vector_2 @ 2 NONAME ; CRemoteGc::~CRemoteGc(void) - call_vector_3 @ 3 NONAME ; void CRemoteGc::ExternalizeL(class RWsGraphicMsgBuf &, int) - call_vector_4 @ 4 NONAME ; void CCommandBuffer::InternalizeL(class TDesC8 const &) - call_vector_5 @ 5 NONAME ; class CCommandBuffer * CCommandBuffer::NewL(void) - call_vector_6 @ 6 NONAME ; class CRemoteGc * CRemoteGc::NewL(class CWsScreenDevice *) - call_vector_7 @ 7 NONAME ; int CCommandBuffer::Play(class TPoint const &, class TRect const &, class MWsGraphicResolver const &, class CBitmapContext &) - call_vector_8 @ 8 NONAME ; void CRemoteGc::ResetCommandBuffer(void) - call_vector_9 @ 9 NONAME ; void CRemoteGc::SetCommandBufferObserver(class MCommandBufferObserver *) - call_vector_10 @ 10 NONAME ; void CRemoteGc::BeginDraw(class TRect const &) - call_vector_11 @ 11 NONAME ; void CRemoteGc::EndDraw(void) - call_vector_12 @ 12 NONAME ; void CCommandBuffer::InternalizeAppendL(class TDesC8 const &) - call_vector_13 @ 13 NONAME ; int CCommandBuffer::Play(class TPoint const &, class TRegion const *, class TRect const &, class MWsGraphicResolver const &, class CBitmapContext &) - call_vector_14 @ 14 NONAME ; class TRegion const & CCommandBuffer::ClippingRegion(void) const - call_vector_15 @ 15 NONAME ; int CCommandBuffer::IsIdentical(class CCommandBuffer const &) const - call_vector_16 @ 16 NONAME ; int CCommandBuffer::Play(class TPoint const &, class TRegion const *, class TRect const &, class RWsSession &, class CWindowGc &) - call_vector_17 @ 17 NONAME ; int CCommandBuffer::Play(class TPoint const &, class TRegion const *, class TRect const &, class MWsGraphicResolver const &, class MWsGraphicsContext &) - +EXPORTS + call_vector_1 @ 1 NONAME ; CCommandBuffer::~CCommandBuffer(void) + call_vector_2 @ 2 NONAME ; CRemoteGc::~CRemoteGc(void) + call_vector_3 @ 3 NONAME ; void CRemoteGc::ExternalizeL(class RWsGraphicMsgBuf &, int) + call_vector_4 @ 4 NONAME ; void CCommandBuffer::InternalizeL(class TDesC8 const &) + call_vector_5 @ 5 NONAME ; class CCommandBuffer * CCommandBuffer::NewL(void) + call_vector_6 @ 6 NONAME ; class CRemoteGc * CRemoteGc::NewL(class CWsScreenDevice *) + call_vector_7 @ 7 NONAME ; int CCommandBuffer::Play(class TPoint const &, class TRect const &, class MWsGraphicResolver const &, class CBitmapContext &) + call_vector_8 @ 8 NONAME ; void CRemoteGc::ResetCommandBuffer(void) + call_vector_9 @ 9 NONAME ; void CRemoteGc::SetCommandBufferObserver(class MCommandBufferObserver *) + call_vector_10 @ 10 NONAME ; void CRemoteGc::BeginDraw(class TRect const &) + call_vector_11 @ 11 NONAME ; void CRemoteGc::EndDraw(void) + call_vector_12 @ 12 NONAME ; void CCommandBuffer::InternalizeAppendL(class TDesC8 const &) + call_vector_13 @ 13 NONAME ; int CCommandBuffer::Play(class TPoint const &, class TRegion const *, class TRect const &, class MWsGraphicResolver const &, class CBitmapContext &) + call_vector_14 @ 14 NONAME ; class TRegion const & CCommandBuffer::ClippingRegion(void) const + call_vector_15 @ 15 NONAME ; int CCommandBuffer::IsIdentical(class CCommandBuffer const &) const + call_vector_16 @ 16 NONAME ; int CCommandBuffer::Play(class TPoint const &, class TRegion const *, class TRect const &, class RWsSession &, class CWindowGc &) + call_vector_17 @ 17 NONAME ; int CCommandBuffer::Play(class TPoint const &, class TRegion const *, class TRect const &, class MWsGraphicResolver const &, class MWsGraphicsContext &) + diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/bwins/WsGraphicDrawerSwitchU.def --- a/windowing/windowserver/bwins/WsGraphicDrawerSwitchU.def Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/bwins/WsGraphicDrawerSwitchU.def Tue Apr 20 16:24:43 2010 +0100 @@ -1,86 +1,86 @@ -EXPORTS - call_vector_1 @ 1 NONAME ; CWsGraphicDrawer::CWsGraphicDrawer(void) - call_vector_2 @ 2 NONAME ; TWsGraphicMsgAnimation::TWsGraphicMsgAnimation(void) - call_vector_3 @ 3 NONAME ; TWsGraphicMsgBufParser::TWsGraphicMsgBufParser(class TDesC8 const &) - call_vector_4 @ 4 NONAME ; CWsGraphicDrawer::~CWsGraphicDrawer(void) - call_vector_5 @ 5 NONAME ; void CWsGraphicDrawerArray::AddLC(class CWsGraphicDrawer *) - call_vector_6 @ 6 NONAME ; void MWsAnimationScheduler::Animate(class MWsScreen &) - call_vector_7 @ 7 NONAME ; class TTimeIntervalMicroSeconds TWsGraphicMsgAnimation::AnimationTime(class TTime const &, class TTimeIntervalMicroSeconds const &) const - call_vector_8 @ 8 NONAME ; void CWsGraphicDrawer::BaseConstructL(class MWsGraphicDrawerEnvironment &, struct TGraphicDrawerId const &, class MWsClient &) - call_vector_9 @ 9 NONAME ; void CWsGraphicDrawerArray::Close(void) - call_vector_10 @ 10 NONAME ; int TGraphicDrawerId::Compare(struct TGraphicDrawerId const &) const - call_vector_11 @ 11 NONAME ; int TGraphicDrawerId::Compare(struct TGraphicDrawerId const &, struct TGraphicDrawerId const &) - call_vector_12 @ 12 NONAME ; int CWsGraphicDrawer::Contains(class TArray const &) const - call_vector_13 @ 13 NONAME ; int TWsGraphicMsgBufParser::Count(void) const - call_vector_14 @ 14 NONAME ; class CWsGraphicDrawer * WsGraphicDrawer::CreateLC(class TUid, class MWsGraphicDrawerEnvironment &, struct TGraphicDrawerId const &, class MWsClient &, class TDesC8 const &) - call_vector_15 @ 15 NONAME ; class TPtrC8 TWsGraphicMsgBufParser::Data(int) const - call_vector_16 @ 16 NONAME ; void CWsGraphicDrawer::Draw(class MWsGc &, class TRect const &, class TDesC8 const &) const - call_vector_17 @ 17 NONAME ; class MWsGraphicDrawerEnvironment & CWsGraphicDrawer::Env(void) - call_vector_18 @ 18 NONAME ; int TWsGraphicMsgBufParser::Find(class TUid, int) const - call_vector_19 @ 19 NONAME ; int CWsGraphicDrawer::HasAsChild(class TArray const &) const - call_vector_20 @ 20 NONAME ; struct TGraphicDrawerId const & CWsGraphicDrawer::Id(void) const - call_vector_21 @ 21 NONAME ; void CWsGraphicDrawer::Invalidate(void) - call_vector_22 @ 22 NONAME ; int CWsGraphicDrawerArray::IsEmpty(void) const - call_vector_23 @ 23 NONAME ; int TWsGraphicMsgAnimation::IsPlaying(class TTime const &, class TTimeIntervalMicroSeconds const &) const - call_vector_24 @ 24 NONAME ; int CWsGraphicDrawer::IsSharedWith(class TSecureId) const - call_vector_25 @ 25 NONAME ; int TWsGraphicMsgAnimation::Load(class TWsGraphicMsgBufParser const &) - call_vector_26 @ 26 NONAME ; int TWsGraphicMsgAnimation::Load(class TWsGraphicMsgBufParser const &, int) - call_vector_27 @ 27 NONAME ; class MWsClient const & CWsGraphicDrawer::Owner(void) const - call_vector_28 @ 28 NONAME ; void MWsAnimationScheduler::Redraw(class MWsScreen &) - call_vector_29 @ 29 NONAME ; int MWsAnimationScheduler::RedrawInvalid(class MWsScreen &, class TArray const &) - call_vector_30 @ 30 NONAME ; int CWsGraphicDrawerArray::Remove(struct TGraphicDrawerId const &) - call_vector_31 @ 31 NONAME ; int CWsGraphicDrawerArray::RemoveAll(class MWsClient const &) - call_vector_32 @ 32 NONAME ; int CWsGraphicDrawerArray::RemoveAndDestroy(struct TGraphicDrawerId const &) - call_vector_33 @ 33 NONAME ; int CWsGraphicDrawerArray::RemoveAndDestroyAll(class MWsClient const &) - call_vector_34 @ 34 NONAME ; void CWsGraphicDrawerArray::ResetAndDestroy(void) - call_vector_35 @ 35 NONAME ; class CWsGraphicDrawer const * CWsGraphicDrawerArray::ResolveGraphic(struct TGraphicDrawerId const &) const - call_vector_36 @ 36 NONAME ; void * MWsObjectProvider::ResolveObjectInterface(unsigned int) - call_vector_37 @ 37 NONAME ; int CWsGraphicDrawer::SendMessage(class TDesC8 const &) - call_vector_38 @ 38 NONAME ; int CWsGraphicDrawer::Share(class TSecureId) - call_vector_39 @ 39 NONAME ; int CWsGraphicDrawer::ShareGlobally(void) - call_vector_40 @ 40 NONAME ; int CWsGraphicDrawerArray::SwapLC(class CWsGraphicDrawer *) - call_vector_41 @ 41 NONAME ; class TUid TWsGraphicMsgBufParser::Uid(int) const - call_vector_42 @ 42 NONAME ; int CWsGraphicDrawer::UnShare(class TSecureId) - call_vector_43 @ 43 NONAME ; int CWsGraphicDrawer::UnShareGlobally(void) - call_vector_44 @ 44 NONAME ; int TWsGraphicMsgBufParser::Verify(void) const - call_vector_45 @ 45 NONAME ; class MWsGraphicDrawerEnvironment const & CWsGraphicDrawer::Env(void) const - call_vector_46 @ 46 NONAME ; void CWsGraphicDrawer::HandleEvent(struct TWservCrEvent const &) - call_vector_47 @ 47 NONAME ; int CWsGraphicDrawer::HasEventHandler(void) const - call_vector_48 @ 48 NONAME ; void CWsGraphicDrawer::SetEventHandler(class MWsEventHandler *) - call_vector_49 @ 49 NONAME ; TWservCrEvent::TWservCrEvent(unsigned long) - call_vector_50 @ 50 NONAME ; TWservCrEvent::TWservCrEvent(unsigned long, unsigned long) - call_vector_51 @ 51 NONAME ; TWservCrEvent::TWservCrEvent(unsigned long, unsigned long, void *) - call_vector_52 @ 52 NONAME ; int TWservCrEvent::SizeMode(void) const - call_vector_53 @ 53 NONAME ; unsigned long TWservCrEvent::Type(void) const - call_vector_54 @ 54 NONAME ; class RRegion const * TWservCrEvent::VisibleRegion(void) const - call_vector_55 @ 55 NONAME ; int TWservCrEvent::ScreenNumber(void) const - call_vector_56 @ 56 NONAME ; int TWsGraphicMsgBufParser::LoadFixed(class TUid, void *, int, int) const - call_vector_57 @ 57 NONAME ; int CWsGraphicDrawer::SendMessage(class CWsMessageData &) - call_vector_58 @ 58 NONAME ; class TRegion const * TWservCrEvent::DrawingRegion(void) const - call_vector_59 @ 59 NONAME ; int TWservCrEvent::WindowGroupIdentifier(void) const - call_vector_60 @ 60 NONAME ; int CWsGraphicDrawerArray::Add(class CWsGraphicDrawer *) - call_vector_61 @ 61 NONAME ; class CWsGraphicDrawerArray::XRollBackBase * CWsGraphicDrawerArray::AddTLC(class CWsGraphicDrawer *) - call_vector_62 @ 62 NONAME ; void CWsGraphicDrawerArray::CommitP(class CWsGraphicDrawerArray::XRollBackBase *) - call_vector_63 @ 63 NONAME ; class CWsGraphicDrawerArray::XRollBackBase * CWsGraphicDrawerArray::RemoveTLC(struct TGraphicDrawerId const &) - call_vector_64 @ 64 NONAME ; int CWsGraphicDrawerArray::Swap(class CWsGraphicDrawer *) - call_vector_65 @ 65 NONAME ; class CWsGraphicDrawerArray::XRollBackBase * CWsGraphicDrawerArray::SwapTLC(class CWsGraphicDrawer *) - call_vector_66 @ 66 NONAME ; enum CFbsBitGc::TGraphicsOrientation TWservCrEvent::Orientation(void) const - call_vector_67 @ 67 NONAME ; void WsGraphicDrawer::FinalClose(void) - call_vector_68 @ 68 NONAME ; int TWservCrEvent::WasVisible(void) const - call_vector_69 @ 69 NONAME ; TWservCrEvent::TWservCrEvent(unsigned long, unsigned long, void *, class MWsWindow *) - call_vector_70 @ 70 NONAME ; class MWsWindow * TWservCrEvent::Window(void) const - call_vector_71 @ 71 NONAME ; CWsPlugin::CWsPlugin(void) - call_vector_72 @ 72 NONAME ; CWsRenderStage::CWsRenderStage(void) - call_vector_73 @ 73 NONAME ; CWsPlugin::~CWsPlugin(void) - call_vector_74 @ 74 NONAME ; CWsRenderStage::~CWsRenderStage(void) - call_vector_75 @ 75 NONAME ; void CWsPlugin::BaseConstructL(class MWsGraphicDrawerEnvironment &) - call_vector_76 @ 76 NONAME ; void CWsRenderStage::BaseConstructL(void) - call_vector_77 @ 77 NONAME ; class MWsGraphicDrawerEnvironment & CWsPlugin::Env(void) - call_vector_78 @ 78 NONAME ; class MWsGraphicDrawerEnvironment const & CWsPlugin::Env(void) const - call_vector_79 @ 79 NONAME ; class CWsRenderStage * CWsRenderStage::Next(void) - call_vector_80 @ 80 NONAME ; class TDesC16 const & CWsPlugin::PluginName(void) const - call_vector_81 @ 81 NONAME ; void * CWsRenderStage::ResolveObjectInterface(unsigned int) - call_vector_82 @ 82 NONAME ; void CWsRenderStage::SetNext(class CWsRenderStage *) - call_vector_83 @ 83 NONAME ; class TSurfaceId const * TWservCrEvent::SurfaceId(void) const - call_vector_84 @ 84 NONAME ; void MWsAnimationScheduler::Animate(class MWsScreen &, class TRequestStatus *) - +EXPORTS + call_vector_1 @ 1 NONAME ; CWsGraphicDrawer::CWsGraphicDrawer(void) + call_vector_2 @ 2 NONAME ; TWsGraphicMsgAnimation::TWsGraphicMsgAnimation(void) + call_vector_3 @ 3 NONAME ; TWsGraphicMsgBufParser::TWsGraphicMsgBufParser(class TDesC8 const &) + call_vector_4 @ 4 NONAME ; CWsGraphicDrawer::~CWsGraphicDrawer(void) + call_vector_5 @ 5 NONAME ; void CWsGraphicDrawerArray::AddLC(class CWsGraphicDrawer *) + call_vector_6 @ 6 NONAME ; void MWsAnimationScheduler::Animate(class MWsScreen &) + call_vector_7 @ 7 NONAME ; class TTimeIntervalMicroSeconds TWsGraphicMsgAnimation::AnimationTime(class TTime const &, class TTimeIntervalMicroSeconds const &) const + call_vector_8 @ 8 NONAME ; void CWsGraphicDrawer::BaseConstructL(class MWsGraphicDrawerEnvironment &, struct TGraphicDrawerId const &, class MWsClient &) + call_vector_9 @ 9 NONAME ; void CWsGraphicDrawerArray::Close(void) + call_vector_10 @ 10 NONAME ; int TGraphicDrawerId::Compare(struct TGraphicDrawerId const &) const + call_vector_11 @ 11 NONAME ; int TGraphicDrawerId::Compare(struct TGraphicDrawerId const &, struct TGraphicDrawerId const &) + call_vector_12 @ 12 NONAME ; int CWsGraphicDrawer::Contains(class TArray const &) const + call_vector_13 @ 13 NONAME ; int TWsGraphicMsgBufParser::Count(void) const + call_vector_14 @ 14 NONAME ; class CWsGraphicDrawer * WsGraphicDrawer::CreateLC(class TUid, class MWsGraphicDrawerEnvironment &, struct TGraphicDrawerId const &, class MWsClient &, class TDesC8 const &) + call_vector_15 @ 15 NONAME ; class TPtrC8 TWsGraphicMsgBufParser::Data(int) const + call_vector_16 @ 16 NONAME ; void CWsGraphicDrawer::Draw(class MWsGc &, class TRect const &, class TDesC8 const &) const + call_vector_17 @ 17 NONAME ; class MWsGraphicDrawerEnvironment & CWsGraphicDrawer::Env(void) + call_vector_18 @ 18 NONAME ; int TWsGraphicMsgBufParser::Find(class TUid, int) const + call_vector_19 @ 19 NONAME ; int CWsGraphicDrawer::HasAsChild(class TArray const &) const + call_vector_20 @ 20 NONAME ; struct TGraphicDrawerId const & CWsGraphicDrawer::Id(void) const + call_vector_21 @ 21 NONAME ; void CWsGraphicDrawer::Invalidate(void) + call_vector_22 @ 22 NONAME ; int CWsGraphicDrawerArray::IsEmpty(void) const + call_vector_23 @ 23 NONAME ; int TWsGraphicMsgAnimation::IsPlaying(class TTime const &, class TTimeIntervalMicroSeconds const &) const + call_vector_24 @ 24 NONAME ; int CWsGraphicDrawer::IsSharedWith(class TSecureId) const + call_vector_25 @ 25 NONAME ; int TWsGraphicMsgAnimation::Load(class TWsGraphicMsgBufParser const &) + call_vector_26 @ 26 NONAME ; int TWsGraphicMsgAnimation::Load(class TWsGraphicMsgBufParser const &, int) + call_vector_27 @ 27 NONAME ; class MWsClient const & CWsGraphicDrawer::Owner(void) const + call_vector_28 @ 28 NONAME ; void MWsAnimationScheduler::Redraw(class MWsScreen &) + call_vector_29 @ 29 NONAME ; int MWsAnimationScheduler::RedrawInvalid(class MWsScreen &, class TArray const &) + call_vector_30 @ 30 NONAME ; int CWsGraphicDrawerArray::Remove(struct TGraphicDrawerId const &) + call_vector_31 @ 31 NONAME ; int CWsGraphicDrawerArray::RemoveAll(class MWsClient const &) + call_vector_32 @ 32 NONAME ; int CWsGraphicDrawerArray::RemoveAndDestroy(struct TGraphicDrawerId const &) + call_vector_33 @ 33 NONAME ; int CWsGraphicDrawerArray::RemoveAndDestroyAll(class MWsClient const &) + call_vector_34 @ 34 NONAME ; void CWsGraphicDrawerArray::ResetAndDestroy(void) + call_vector_35 @ 35 NONAME ; class CWsGraphicDrawer const * CWsGraphicDrawerArray::ResolveGraphic(struct TGraphicDrawerId const &) const + call_vector_36 @ 36 NONAME ; void * MWsObjectProvider::ResolveObjectInterface(unsigned int) + call_vector_37 @ 37 NONAME ; int CWsGraphicDrawer::SendMessage(class TDesC8 const &) + call_vector_38 @ 38 NONAME ; int CWsGraphicDrawer::Share(class TSecureId) + call_vector_39 @ 39 NONAME ; int CWsGraphicDrawer::ShareGlobally(void) + call_vector_40 @ 40 NONAME ; int CWsGraphicDrawerArray::SwapLC(class CWsGraphicDrawer *) + call_vector_41 @ 41 NONAME ; class TUid TWsGraphicMsgBufParser::Uid(int) const + call_vector_42 @ 42 NONAME ; int CWsGraphicDrawer::UnShare(class TSecureId) + call_vector_43 @ 43 NONAME ; int CWsGraphicDrawer::UnShareGlobally(void) + call_vector_44 @ 44 NONAME ; int TWsGraphicMsgBufParser::Verify(void) const + call_vector_45 @ 45 NONAME ; class MWsGraphicDrawerEnvironment const & CWsGraphicDrawer::Env(void) const + call_vector_46 @ 46 NONAME ; void CWsGraphicDrawer::HandleEvent(struct TWservCrEvent const &) + call_vector_47 @ 47 NONAME ; int CWsGraphicDrawer::HasEventHandler(void) const + call_vector_48 @ 48 NONAME ; void CWsGraphicDrawer::SetEventHandler(class MWsEventHandler *) + call_vector_49 @ 49 NONAME ; TWservCrEvent::TWservCrEvent(unsigned long) + call_vector_50 @ 50 NONAME ; TWservCrEvent::TWservCrEvent(unsigned long, unsigned long) + call_vector_51 @ 51 NONAME ; TWservCrEvent::TWservCrEvent(unsigned long, unsigned long, void *) + call_vector_52 @ 52 NONAME ; int TWservCrEvent::SizeMode(void) const + call_vector_53 @ 53 NONAME ; unsigned long TWservCrEvent::Type(void) const + call_vector_54 @ 54 NONAME ; class RRegion const * TWservCrEvent::VisibleRegion(void) const + call_vector_55 @ 55 NONAME ; int TWservCrEvent::ScreenNumber(void) const + call_vector_56 @ 56 NONAME ; int TWsGraphicMsgBufParser::LoadFixed(class TUid, void *, int, int) const + call_vector_57 @ 57 NONAME ; int CWsGraphicDrawer::SendMessage(class CWsMessageData &) + call_vector_58 @ 58 NONAME ; class TRegion const * TWservCrEvent::DrawingRegion(void) const + call_vector_59 @ 59 NONAME ; int TWservCrEvent::WindowGroupIdentifier(void) const + call_vector_60 @ 60 NONAME ; int CWsGraphicDrawerArray::Add(class CWsGraphicDrawer *) + call_vector_61 @ 61 NONAME ; struct CWsGraphicDrawerArray::XRollBackBase * CWsGraphicDrawerArray::AddTLC(class CWsGraphicDrawer *) + call_vector_62 @ 62 NONAME ; void CWsGraphicDrawerArray::CommitP(struct CWsGraphicDrawerArray::XRollBackBase *) + call_vector_63 @ 63 NONAME ; struct CWsGraphicDrawerArray::XRollBackBase * CWsGraphicDrawerArray::RemoveTLC(struct TGraphicDrawerId const &) + call_vector_64 @ 64 NONAME ; int CWsGraphicDrawerArray::Swap(class CWsGraphicDrawer *) + call_vector_65 @ 65 NONAME ; struct CWsGraphicDrawerArray::XRollBackBase * CWsGraphicDrawerArray::SwapTLC(class CWsGraphicDrawer *) + call_vector_66 @ 66 NONAME ; enum CFbsBitGc::TGraphicsOrientation TWservCrEvent::Orientation(void) const + call_vector_67 @ 67 NONAME ; void WsGraphicDrawer::FinalClose(void) + call_vector_68 @ 68 NONAME ; int TWservCrEvent::WasVisible(void) const + call_vector_69 @ 69 NONAME ; TWservCrEvent::TWservCrEvent(unsigned long, unsigned long, void *, class MWsWindow *) + call_vector_70 @ 70 NONAME ; class MWsWindow * TWservCrEvent::Window(void) const + call_vector_71 @ 71 NONAME ; CWsPlugin::CWsPlugin(void) + call_vector_72 @ 72 NONAME ; CWsRenderStage::CWsRenderStage(void) + call_vector_73 @ 73 NONAME ; CWsPlugin::~CWsPlugin(void) + call_vector_74 @ 74 NONAME ; CWsRenderStage::~CWsRenderStage(void) + call_vector_75 @ 75 NONAME ; void CWsPlugin::BaseConstructL(class MWsGraphicDrawerEnvironment &) + call_vector_76 @ 76 NONAME ; void CWsRenderStage::BaseConstructL(void) + call_vector_77 @ 77 NONAME ; class MWsGraphicDrawerEnvironment & CWsPlugin::Env(void) + call_vector_78 @ 78 NONAME ; class MWsGraphicDrawerEnvironment const & CWsPlugin::Env(void) const + call_vector_79 @ 79 NONAME ; class CWsRenderStage * CWsRenderStage::Next(void) + call_vector_80 @ 80 NONAME ; class TDesC16 const & CWsPlugin::PluginName(void) const + call_vector_81 @ 81 NONAME ; void * CWsRenderStage::ResolveObjectInterface(unsigned int) + call_vector_82 @ 82 NONAME ; void CWsRenderStage::SetNext(class CWsRenderStage *) + call_vector_83 @ 83 NONAME ; class TSurfaceId const * TWservCrEvent::SurfaceId(void) const + call_vector_84 @ 84 NONAME ; void MWsAnimationScheduler::Animate(class MWsScreen &, class TRequestStatus *) + diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/bwins/ws32switchu.def --- a/windowing/windowserver/bwins/ws32switchu.def Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/bwins/ws32switchu.def Tue Apr 20 16:24:43 2010 +0100 @@ -1,580 +1,581 @@ -EXPORTS - call_vector_1 @ 1 NONAME ; public: __thiscall CWindowGc::CWindowGc(class CWsScreenDevice *) - call_vector_2 @ 2 NONAME ; public: __thiscall CWsBitmap::CWsBitmap(class RWsSession &) - call_vector_3 @ 3 NONAME ; public: __thiscall CWsBitmap::CWsBitmap(void) - call_vector_4 @ 4 NONAME ; public: __thiscall CWsScreenDevice::CWsScreenDevice(class RWsSession &) - call_vector_5 @ 5 NONAME ; public: __thiscall CWsScreenDevice::CWsScreenDevice(void) - call_vector_6 @ 6 NONAME ; protected: __thiscall RAnim::RAnim(class RAnimDll &) - call_vector_7 @ 7 NONAME ; protected: __thiscall RAnim::RAnim(void) - call_vector_8 @ 8 NONAME ; public: __thiscall RAnimDll::RAnimDll(class RWsSession &) - call_vector_9 @ 9 NONAME ; public: __thiscall RAnimDll::RAnimDll(void) - call_vector_10 @ 10 NONAME ; public: __thiscall RBackedUpWindow::RBackedUpWindow(class RWsSession &) - call_vector_11 @ 11 NONAME ; public: __thiscall RBackedUpWindow::RBackedUpWindow(void) - call_vector_12 @ 12 NONAME ; public: __thiscall RBlankWindow::RBlankWindow(class RWsSession &) - call_vector_13 @ 13 NONAME ; public: __thiscall RBlankWindow::RBlankWindow(void) - call_vector_14 @ 14 NONAME ; public: __thiscall RWindow::RWindow(class RWsSession &) - call_vector_15 @ 15 NONAME ; public: __thiscall RWindow::RWindow(void) - call_vector_16 @ 16 NONAME ; public: __thiscall RWindowGroup::RWindowGroup(class RWsSession &) - call_vector_17 @ 17 NONAME ; public: __thiscall RWindowGroup::RWindowGroup(void) - call_vector_18 @ 18 NONAME ; public: __thiscall RWsPointerCursor::RWsPointerCursor(class RWsSession &) - call_vector_19 @ 19 NONAME ; public: __thiscall RWsPointerCursor::RWsPointerCursor(void) - call_vector_20 @ 20 NONAME ; public: __thiscall RWsSession::RWsSession(void) - call_vector_21 @ 21 NONAME ; public: __thiscall RWsSprite::RWsSprite(class RWsSession &) - call_vector_22 @ 22 NONAME ; public: __thiscall RWsSprite::RWsSprite(void) - call_vector_23 @ 23 NONAME ; protected: __thiscall RWsSpriteBase::RWsSpriteBase(class RWsSession &) - call_vector_24 @ 24 NONAME ; protected: __thiscall RWsSpriteBase::RWsSpriteBase(void) - call_vector_25 @ 25 NONAME ; public: virtual __thiscall CWindowGc::~CWindowGc(void) - call_vector_26 @ 26 NONAME ; public: virtual __thiscall CWsBitmap::~CWsBitmap(void) - call_vector_27 @ 27 NONAME ; public: virtual __thiscall CWsScreenDevice::~CWsScreenDevice(void) - call_vector_28 @ 28 NONAME ; public: virtual __thiscall RAnim::~RAnim(void) - call_vector_29 @ 29 NONAME ; public: virtual __thiscall RAnimDll::~RAnimDll(void) - call_vector_30 @ 30 NONAME ; public: virtual void __thiscall CWindowGc::Activate(class RDrawableWindow &) - call_vector_31 @ 31 NONAME ; public: void __thiscall RWindowBase::Activate(void) - call_vector_32 @ 32 NONAME ; public: int __thiscall RWsSpriteBase::Activate(void) - call_vector_33 @ 33 NONAME ; public: virtual int __thiscall CWsScreenDevice::AddFile(class TDesC16 const &,int &) - call_vector_34 @ 34 NONAME ; public: int __thiscall RWindowBase::AddKeyRect(class TRect const &,int,int) - call_vector_35 @ 35 NONAME ; public: int __thiscall RWindowGroup::AddPriorityKey(unsigned int,unsigned int,unsigned int) - call_vector_36 @ 36 NONAME ; public: int __thiscall RWindowBase::AllocPointerMoveBuffer(int,unsigned int) - call_vector_37 @ 37 NONAME ; public: int __thiscall RWsSpriteBase::AppendMember(struct TSpriteMember const &) - call_vector_38 @ 38 NONAME ; public: void __thiscall RWindowGroup::AutoForeground(int) - call_vector_39 @ 39 NONAME ; public: void __thiscall RWindow::BeginRedraw(class TRect const &) - call_vector_40 @ 40 NONAME ; public: void __thiscall RWindow::BeginRedraw(void) - call_vector_41 @ 41 NONAME ; public: virtual void __thiscall CWindowGc::BitBlt(class TPoint const &,class CFbsBitmap const *) - call_vector_42 @ 42 NONAME ; public: virtual void __thiscall CWindowGc::BitBlt(class TPoint const &,class CFbsBitmap const *,class TRect const &) - call_vector_43 @ 43 NONAME ; public: virtual void __thiscall CWindowGc::BitBlt(class TPoint const &,class CWsBitmap const *) - call_vector_44 @ 44 NONAME ; public: virtual void __thiscall CWindowGc::BitBlt(class TPoint const &,class CWsBitmap const *,class TRect const &) - call_vector_45 @ 45 NONAME ; public: virtual void __thiscall CWindowGc::BitBltMasked(class TPoint const &,class CFbsBitmap const *,class TRect const &,class CFbsBitmap const *,int) - call_vector_46 @ 46 NONAME ; public: virtual void __thiscall CWindowGc::BitBltMasked(class TPoint const &,class CWsBitmap const *,class TRect const &,class CWsBitmap const *,int) - call_vector_47 @ 47 NONAME ; int RBackedUpWindow::BitmapHandle(void) const - call_vector_48 @ 48 NONAME ; public: void __thiscall RWindowGroup::CancelCaptureKey(long) - call_vector_49 @ 49 NONAME ; public: void __thiscall RWindowGroup::CancelCaptureKeyUpAndDowns(long) - call_vector_50 @ 50 NONAME ; public: virtual void __thiscall CWindowGc::CancelClippingRect(void) - call_vector_51 @ 51 NONAME ; public: virtual void __thiscall CWindowGc::CancelClippingRegion(void) - call_vector_52 @ 52 NONAME ; public: void __thiscall RWindowBase::CancelPointerRepeatEventRequest(void) - call_vector_53 @ 53 NONAME ; public: void __thiscall RWindowGroup::CancelTextCursor(void) - call_vector_54 @ 54 NONAME ; public: long __thiscall RWindowGroup::CaptureKey(unsigned int,unsigned int,unsigned int) - call_vector_55 @ 55 NONAME ; public: long __thiscall RWindowGroup::CaptureKeyUpAndDowns(unsigned int,unsigned int,unsigned int) - call_vector_56 @ 56 NONAME ; public: unsigned long __thiscall RWindowTreeNode::Child(void)const - call_vector_57 @ 57 NONAME ; public: void __thiscall RWindowBase::ClaimPointerGrab(int) - call_vector_58 @ 58 NONAME ; public: int __thiscall RWsSession::ClaimSystemPointerCursorList(void) - call_vector_59 @ 59 NONAME ; public: virtual void __thiscall CWindowGc::Clear(class TRect const &) - call_vector_60 @ 60 NONAME ; public: virtual void __thiscall CWindowGc::Clear(void) - call_vector_61 @ 61 NONAME ; public: int __thiscall RWsSession::ClearHotKeys(enum THotKey) - call_vector_62 @ 62 NONAME ; public: void __thiscall RWsSession::ClearSystemPointerCursor(int) - call_vector_63 @ 63 NONAME ; public: virtual void __thiscall RAnim::Close(void) - call_vector_64 @ 64 NONAME ; public: virtual void __thiscall RAnimDll::Close(void) - call_vector_65 @ 65 NONAME ; public: void __thiscall RWindowTreeNode::Close(void) - call_vector_66 @ 66 NONAME ; public: void __thiscall RWsSpriteBase::Close(void) - call_vector_67 @ 67 NONAME ; protected: void __thiscall RAnim::Command(int) - call_vector_68 @ 68 NONAME ; protected: void __thiscall RAnim::Command(int,class TPtrC8 const &) - call_vector_69 @ 69 NONAME ; protected: int __thiscall RAnim::CommandReply(int) - call_vector_70 @ 70 NONAME ; protected: int __thiscall RAnim::CommandReply(int,class TPtrC8 const &) - call_vector_71 @ 71 NONAME ; public: void __thiscall RWsSession::ComputeMode(enum RWsSession::TComputeMode) - call_vector_72 @ 72 NONAME ; public: int __thiscall RWsSession::Connect(void) - call_vector_73 @ 73 NONAME ; public: virtual int __thiscall CWindowGc::Construct(void) - call_vector_74 @ 74 NONAME ; public: int __thiscall CWsScreenDevice::Construct(void) - call_vector_75 @ 75 NONAME ; protected: int __thiscall RAnim::Construct(class RWindowBase const &,int,class TDesC8 const &) - call_vector_76 @ 76 NONAME ; public: int __thiscall RBackedUpWindow::Construct(class RWindowTreeNode const &,enum TDisplayMode,unsigned long) - call_vector_77 @ 77 NONAME ; public: int __thiscall RBlankWindow::Construct(class RWindowTreeNode const &,unsigned long) - call_vector_78 @ 78 NONAME ; public: int __thiscall RWindow::Construct(class RWindowTreeNode const &,unsigned long) - call_vector_79 @ 79 NONAME ; public: int __thiscall RWindowGroup::Construct(unsigned long) - call_vector_80 @ 80 NONAME ; public: int __thiscall RWindowGroup::Construct(unsigned long,int) - call_vector_81 @ 81 NONAME ; public: int __thiscall RWsPointerCursor::Construct(int) - call_vector_82 @ 82 NONAME ; public: int __thiscall RWsSprite::Construct(class RWindowTreeNode &,class TPoint const &,int) - call_vector_83 @ 83 NONAME ; public: virtual void __thiscall CWindowGc::CopyRect(class TPoint const &,class TRect const &) - call_vector_84 @ 84 NONAME ; public: int __thiscall CWsScreenDevice::CopyScreenToBitmap(class CFbsBitmap const *)const - call_vector_85 @ 85 NONAME ; public: int __thiscall CWsScreenDevice::CopyScreenToBitmap(class CFbsBitmap const *,class TRect const &)const - call_vector_86 @ 86 NONAME ; public: int __thiscall CWsBitmap::Create(class TSize const &,enum TDisplayMode) - call_vector_87 @ 87 NONAME ; public: virtual int __thiscall CWsScreenDevice::CreateContext(class CGraphicsContext * &) - call_vector_88 @ 88 NONAME ; public: virtual void __thiscall CWindowGc::Deactivate(void) - call_vector_89 @ 89 NONAME ; public: void __thiscall RWindowGroup::DefaultOwningWindow(void) - call_vector_90 @ 90 NONAME ; public: void __thiscall RAnim::Destroy(void) - call_vector_91 @ 91 NONAME ; public: void __thiscall RAnimDll::Destroy(void) - call_vector_92 @ 92 NONAME ; public: void __thiscall RWindowTreeNode::Destroy(void) - call_vector_93 @ 93 NONAME ; public: virtual class CGraphicsDevice * __thiscall CWindowGc::Device(void)const - call_vector_94 @ 94 NONAME ; public: void __thiscall RWindowTreeNode::DisableGroupChangeEvents(void) - call_vector_95 @ 95 NONAME ; public: void __thiscall RWindowGroup::DisableKeyClick(int) - call_vector_96 @ 96 NONAME ; public: void __thiscall RWindowTreeNode::DisableModifierChangedEvents(void) - call_vector_97 @ 97 NONAME ; public: void __thiscall RWindowTreeNode::DisableOnEvents(void) - call_vector_98 @ 98 NONAME ; public: void __thiscall RWindowTreeNode::DisableErrorMessages(void) - call_vector_99 @ 99 NONAME ; public: void __thiscall RWindowBase::DisablePointerMoveBuffer(void) - call_vector_100 @ 100 NONAME ; public: virtual void __thiscall CWindowGc::DiscardBrushPattern(void) - call_vector_101 @ 101 NONAME ; public: virtual void __thiscall CWindowGc::DiscardFont(void) - call_vector_102 @ 102 NONAME ; public: void __thiscall RWindowBase::DiscardPointerMoveBuffer(void) - call_vector_103 @ 103 NONAME ; public: void __thiscall RWsSession::Close(void) - call_vector_104 @ 104 NONAME ; public: virtual enum TDisplayMode __thiscall CWsScreenDevice::DisplayMode(void)const - call_vector_105 @ 105 NONAME ; public: virtual void __thiscall CWindowGc::DrawArc(class TRect const &,class TPoint const &,class TPoint const &) - call_vector_106 @ 106 NONAME ; public: virtual void __thiscall CWindowGc::DrawBitmap(class TPoint const &,class CFbsBitmap const *) - call_vector_107 @ 107 NONAME ; public: virtual void __thiscall CWindowGc::DrawBitmap(class TRect const &,class CFbsBitmap const *,class TRect const &) - call_vector_108 @ 108 NONAME ; public: virtual void __thiscall CWindowGc::DrawBitmap(class TRect const &,class CFbsBitmap const *) - call_vector_109 @ 109 NONAME ; public: virtual void __thiscall CWindowGc::DrawEllipse(class TRect const &) - call_vector_110 @ 110 NONAME ; public: virtual void __thiscall CWindowGc::DrawLine(class TPoint const &,class TPoint const &) - call_vector_111 @ 111 NONAME ; public: virtual void __thiscall CWindowGc::DrawLineBy(class TPoint const &) - call_vector_112 @ 112 NONAME ; public: virtual void __thiscall CWindowGc::DrawLineTo(class TPoint const &) - call_vector_113 @ 113 NONAME ; public: virtual void __thiscall CWindowGc::DrawPie(class TRect const &,class TPoint const &,class TPoint const &) - call_vector_114 @ 114 NONAME ; public: virtual void __thiscall CWindowGc::DrawPolyLine(class CArrayFix const *) - call_vector_115 @ 115 NONAME ; public: virtual void __thiscall CWindowGc::DrawPolyLine(class TPoint const *,int) - call_vector_116 @ 116 NONAME ; public: virtual int __thiscall CWindowGc::DrawPolygon(class CArrayFix const *,enum CGraphicsContext::TFillRule) - call_vector_117 @ 117 NONAME ; public: virtual int __thiscall CWindowGc::DrawPolygon(class TPoint const *,int,enum CGraphicsContext::TFillRule) - call_vector_118 @ 118 NONAME ; public: virtual void __thiscall CWindowGc::DrawRect(class TRect const &) - call_vector_119 @ 119 NONAME ; public: virtual void __thiscall CWindowGc::DrawRoundRect(class TRect const &,class TSize const &) - call_vector_120 @ 120 NONAME ; public: virtual void __thiscall CWindowGc::DrawText(class TDesC16 const &,class TPoint const &) - call_vector_121 @ 121 NONAME ; public: virtual void __thiscall CWindowGc::DrawText(class TDesC16 const &,class TRect const &,int,enum CGraphicsContext::TTextAlign,int) - call_vector_122 @ 122 NONAME ; public: virtual void __thiscall CWindowGc::DrawTextVertical(class TDesC16 const &,class TPoint const &,int) - call_vector_123 @ 123 NONAME ; public: virtual void __thiscall CWindowGc::DrawTextVertical(class TDesC16 const &,class TRect const &,int,int,enum CGraphicsContext::TTextAlign,int) - call_vector_124 @ 124 NONAME ; public: int __thiscall CWsBitmap::Duplicate(int) - call_vector_125 @ 125 NONAME ; public: void __thiscall RWindowBase::EnableBackup(unsigned int) - call_vector_126 @ 126 NONAME ; public: int __thiscall RWindowTreeNode::EnableGroupChangeEvents(void) - call_vector_127 @ 127 NONAME ; public: int __thiscall RWindowTreeNode::EnableModifierChangedEvents(unsigned int,enum TEventControl) - call_vector_128 @ 128 NONAME ; public: int __thiscall RWindowTreeNode::EnableOnEvents(enum TEventControl) - call_vector_129 @ 129 NONAME ; public: int __thiscall RWindowTreeNode::EnableErrorMessages(enum TEventControl) - call_vector_130 @ 130 NONAME ; public: void __thiscall RWindowBase::EnablePointerMoveBuffer(void) - call_vector_131 @ 131 NONAME ; public: void __thiscall RWindowGroup::EnableReceiptOfFocus(int) - call_vector_132 @ 132 NONAME ; public: void __thiscall RWindow::EndRedraw(void) - call_vector_133 @ 133 NONAME ; public: void __thiscall RWsSession::EventReady(class TRequestStatus *) - call_vector_134 @ 134 NONAME ; public: void __thiscall RWsSession::EventReadyCancel(void) - call_vector_135 @ 135 NONAME ; int RWsSession::FetchMessage(class TUid &, class TPtr8 &, class TWsEvent const &) const - call_vector_136 @ 136 NONAME ; int RWsSession::FindWindowGroupIdentifier(int, class TDesC16 const &, int) const - call_vector_137 @ 137 NONAME ; int RWsSession::FindWindowGroupIdentifier(int, class TThreadId) const - call_vector_138 @ 138 NONAME ; public: void __thiscall RWsSession::Flush(void) - call_vector_139 @ 139 NONAME ; public: virtual int __thiscall CWsScreenDevice::FontHeightInPixels(int,int)const - call_vector_140 @ 140 NONAME ; public: virtual int __thiscall CWsScreenDevice::FontHeightInTwips(int,int)const - call_vector_141 @ 141 NONAME ; public: void __thiscall RWindowBase::FreePointerMoveBuffer(void) - call_vector_142 @ 142 NONAME ; public: void __thiscall RWsSession::FreeSystemPointerCursorList(void) - call_vector_143 @ 143 NONAME ; public: int __thiscall RWindowTreeNode::FullOrdinalPosition(void)const - call_vector_144 @ 144 NONAME ; public: class TRgb __thiscall RWsSession::GetBackgroundColor(void)const - call_vector_145 @ 145 NONAME ; int RWsSession::GetDefaultOwningWindow(void) const - call_vector_146 @ 146 NONAME ; void RWsSession::GetDoubleClickSettings(class TTimeIntervalMicroSeconds32 &, int &) const - call_vector_147 @ 147 NONAME ; void RWsSession::GetEvent(class TWsEvent &) const - call_vector_148 @ 148 NONAME ; int RWsSession::GetFocusWindowGroup(void) const - call_vector_149 @ 149 NONAME ; public: int __thiscall CWsScreenDevice::GetFontById(class CFont * &,class TUid,class TAlgStyle const &) - call_vector_150 @ 150 NONAME ; void RWindow::GetInvalidRegion(class RRegion &) const - call_vector_151 @ 151 NONAME ; void RWsSession::GetKeyboardRepeatRate(class TTimeIntervalMicroSeconds32 &, class TTimeIntervalMicroSeconds32 &) const - call_vector_152 @ 152 NONAME ; public: int __thiscall RWsSession::GetModifierState(void)const - call_vector_153 @ 153 NONAME ; public: virtual int __thiscall CWsScreenDevice::GetNearestFontInPixels(class CFont * &,class TFontSpec const &) - call_vector_154 @ 154 NONAME ; public: virtual int __thiscall CWsScreenDevice::GetNearestFontInTwips(class CFont * &,class TFontSpec const &) - call_vector_155 @ 155 NONAME ; public: virtual int __thiscall CWsScreenDevice::GetPalette(class CPalette * &)const - call_vector_156 @ 156 NONAME ; public: virtual void __thiscall CWsScreenDevice::GetPixel(class TRgb &,class TPoint const &)const - call_vector_157 @ 157 NONAME ; void RWsSession::GetPriorityKey(class TWsPriorityKeyEvent &) const - call_vector_158 @ 158 NONAME ; public: void __thiscall RWsSession::GetRedraw(class TWsRedrawEvent &) - call_vector_159 @ 159 NONAME ; public: virtual void __thiscall CWsScreenDevice::GetScanLine(class TDes8 &,class TPoint const &,int,enum TDisplayMode)const - call_vector_160 @ 160 NONAME ; int RWsSession::GetWindowGroupClientThreadId(int, class TThreadId &) const - call_vector_161 @ 161 NONAME ; int RWsSession::GetWindowGroupHandle(int) const - call_vector_162 @ 162 NONAME ; int RWsSession::GetWindowGroupNameFromIdentifier(int, class TDes16 &) const - call_vector_163 @ 163 NONAME ; int RWsSession::GetWindowGroupOrdinalPriority(int) const - call_vector_164 @ 164 NONAME ; public: int __thiscall RWsSession::HeapCount(void)const - call_vector_165 @ 165 NONAME ; public: void __thiscall RWsSession::HeapSetFail(int,int) - call_vector_166 @ 166 NONAME ; public: virtual int __thiscall CWsScreenDevice::HorizontalPixelsToTwips(int)const - call_vector_167 @ 167 NONAME ; public: virtual int __thiscall CWsScreenDevice::HorizontalTwipsToPixels(int)const - call_vector_168 @ 168 NONAME ; public: int __thiscall RWindowGroup::Identifier(void)const - call_vector_169 @ 169 NONAME ; public: class TPoint __thiscall RWindowBase::InquireOffset(class RWindowTreeNode const &)const - call_vector_170 @ 170 NONAME ; public: void __thiscall CWsBitmap::InternalizeL(class RReadStream &) - call_vector_171 @ 171 NONAME ; public: void __thiscall RWindow::Invalidate(class TRect const &) - call_vector_172 @ 172 NONAME ; public: void __thiscall RWindow::Invalidate(void) - call_vector_173 @ 173 NONAME ; public: int __thiscall CWsBitmap::Load(class TDesC16 const &,long,int) - call_vector_174 @ 174 NONAME ; public: int __thiscall RAnimDll::Load(class TDesC16 const &) - call_vector_175 @ 175 NONAME ; public: void __thiscall RWsSession::LogMessage(class TBuf<128> const &) - call_vector_176 @ 176 NONAME ; public: void __thiscall RBackedUpWindow::MaintainBackup(void) - call_vector_177 @ 177 NONAME ; public: virtual void __thiscall CWindowGc::MapColors(class TRect const &,class TRgb const *,int,int) - call_vector_178 @ 178 NONAME ; public: virtual void __thiscall CWindowGc::MoveBy(class TPoint const &) - call_vector_179 @ 179 NONAME ; public: virtual void __thiscall CWindowGc::MoveTo(class TPoint const &) - call_vector_180 @ 180 NONAME ; public: int __thiscall RWindowGroup::Name(class TDes16 &)const - call_vector_181 @ 181 NONAME ; public: unsigned long __thiscall RWindowTreeNode::NextSibling(void)const - call_vector_182 @ 182 NONAME ; public: virtual int __thiscall CWsScreenDevice::NumTypefaces(void)const - call_vector_183 @ 183 NONAME ; public: int __thiscall RWsSession::NumWindowGroups(int)const - call_vector_184 @ 184 NONAME ; public: int __thiscall RWsSession::NumWindowGroups(void)const - call_vector_185 @ 185 NONAME ; public: int __thiscall RWindowTreeNode::OrdinalPosition(void)const - call_vector_186 @ 186 NONAME ; public: virtual void __thiscall CWsScreenDevice::PaletteAttributes(int &,int &)const - call_vector_187 @ 187 NONAME ; public: unsigned long __thiscall RWindowTreeNode::Parent(void)const - call_vector_188 @ 188 NONAME ; public: void __thiscall RWsSession::PasswordEntered(void) - call_vector_189 @ 189 NONAME ; public: int __thiscall RWindowBase::PasswordWindow(enum TPasswordMode) - call_vector_190 @ 190 NONAME ; public: virtual void __thiscall CWindowGc::Plot(class TPoint const &) - call_vector_191 @ 191 NONAME ; public: void __thiscall RWindowBase::PointerFilter(unsigned long,unsigned long) - call_vector_192 @ 192 NONAME ; public: class TRect __thiscall CWsScreenDevice::PointerRect(void)const - call_vector_193 @ 193 NONAME ; public: class TPoint __thiscall RWindowBase::Position(void)const - call_vector_194 @ 194 NONAME ; public: unsigned long __thiscall RWindowTreeNode::PrevSibling(void)const - call_vector_195 @ 195 NONAME ; public: void __thiscall RWsSession::PriorityKeyReady(class TRequestStatus *) - call_vector_196 @ 196 NONAME ; public: void __thiscall RWsSession::PriorityKeyReadyCancel(void) - call_vector_197 @ 197 NONAME ; public: void __thiscall RWsSession::PurgePointerEvents(void) - call_vector_198 @ 198 NONAME ; int CWsScreenDevice::RectCompare(class TRect const &, class TRect const &) const - call_vector_199 @ 199 NONAME ; public: void __thiscall RWsSession::RedrawReady(class TRequestStatus *) - call_vector_200 @ 200 NONAME ; public: void __thiscall RWsSession::RedrawReadyCancel(void) - call_vector_201 @ 201 NONAME ; public: virtual void __thiscall CWsScreenDevice::ReleaseFont(class CFont *) - call_vector_202 @ 202 NONAME ; public: void __thiscall RWindowBase::RemoveAllKeyRects(void) - call_vector_203 @ 203 NONAME ; public: virtual void __thiscall CWsScreenDevice::RemoveFile(int) - call_vector_204 @ 204 NONAME ; public: void __thiscall RWindowGroup::RemovePriorityKey(unsigned int,unsigned int,unsigned int) - call_vector_205 @ 205 NONAME ; public: void __thiscall RWindowBase::RequestPointerRepeatEvent(class TTimeIntervalMicroSeconds32,class TRect const &) - call_vector_206 @ 206 NONAME ; public: virtual void __thiscall CWindowGc::Reset(void) - call_vector_207 @ 207 NONAME ; public: void __thiscall CWsBitmap::Reset(void) - call_vector_208 @ 208 NONAME ; int RWsSession::ResourceCount(void) const - call_vector_209 @ 209 NONAME ; public: int __thiscall RWsSession::RestoreDefaultHotKey(enum THotKey) - call_vector_210 @ 210 NONAME ; int RWindowBase::RetrievePointerMoveBuffer(class TDes8 &) const - call_vector_211 @ 211 NONAME ; public: void __thiscall RDrawableWindow::Scroll(class TPoint const &) - call_vector_212 @ 212 NONAME ; public: void __thiscall RDrawableWindow::Scroll(class TPoint const &,class TRect const &) - call_vector_213 @ 213 NONAME ; public: void __thiscall RDrawableWindow::Scroll(class TRect const &,class TPoint const &,class TRect const &) - call_vector_214 @ 214 NONAME ; public: void __thiscall RDrawableWindow::Scroll(class TRect const &,class TPoint const &) - call_vector_215 @ 215 NONAME ; public: int __thiscall RWsSession::SendEventToWindowGroup(int,class TWsEvent const &) - call_vector_216 @ 216 NONAME ; public: int __thiscall RWsSession::SendMessageToWindowGroup(int,class TUid,class TDesC8 const &) - call_vector_217 @ 217 NONAME ; public: int __thiscall RWsSession::SetAutoFlush(int) - call_vector_218 @ 218 NONAME ; public: void __thiscall RWindow::SetBackgroundColor(class TRgb) - call_vector_219 @ 219 NONAME ; public: void __thiscall RWindow::SetBackgroundColor(void) - call_vector_220 @ 220 NONAME ; public: void __thiscall RWsSession::SetBackgroundColor(class TRgb) - call_vector_221 @ 221 NONAME ; public: virtual void __thiscall CWindowGc::SetBrushColor(class TRgb const &) - call_vector_222 @ 222 NONAME ; public: virtual void __thiscall CWindowGc::SetBrushOrigin(class TPoint const &) - call_vector_223 @ 223 NONAME ; public: virtual void __thiscall CWindowGc::SetBrushStyle(enum CGraphicsContext::TBrushStyle) - call_vector_224 @ 224 NONAME ; public: virtual void __thiscall CWindowGc::SetCharJustification(int,int) - call_vector_225 @ 225 NONAME ; public: virtual void __thiscall CWindowGc::SetClippingRect(class TRect const &) - call_vector_226 @ 226 NONAME ; public: virtual int __thiscall CWindowGc::SetClippingRegion(class TRegion const &) - call_vector_227 @ 227 NONAME ; public: void __thiscall RBlankWindow::SetColor(class TRgb) - call_vector_228 @ 228 NONAME ; public: int __thiscall RWindowBase::SetCornerType(enum TCornerType,int) - call_vector_229 @ 229 NONAME ; public: void __thiscall RWindowTreeNode::SetCustomPointerCursor(class RWsPointerCursor const &) - call_vector_230 @ 230 NONAME ; public: virtual void __thiscall CWindowGc::SetDitherOrigin(class TPoint const &) - call_vector_231 @ 231 NONAME ; public: int __thiscall RWsSession::SetDoubleClick(class TTimeIntervalMicroSeconds32 const &,int) - call_vector_232 @ 232 NONAME ; public: virtual void __thiscall CWindowGc::SetDrawMode(enum CGraphicsContext::TDrawMode) - call_vector_233 @ 233 NONAME ; public: void __thiscall RBlankWindow::SetExtent(class TPoint const &,class TSize const &) - call_vector_234 @ 234 NONAME ; public: void __thiscall RWindow::SetExtent(class TPoint const &,class TSize const &) - call_vector_235 @ 235 NONAME ; public: int __thiscall RWindowBase::SetExtentErr(class TPoint const &,class TSize const &) - call_vector_236 @ 236 NONAME ; public: int __thiscall RWsSession::SetHotKey(enum THotKey,unsigned int,unsigned int,unsigned int) - call_vector_237 @ 237 NONAME ; public: int __thiscall RWsSession::SetKeyboardRepeatRate(class TTimeIntervalMicroSeconds32 const &,class TTimeIntervalMicroSeconds32 const &) - call_vector_238 @ 238 NONAME ; public: int __thiscall RWsSession::SetModifierState(enum TEventModifier,enum TModifierState) - call_vector_239 @ 239 NONAME ; public: int __thiscall RWindowGroup::SetName(class TDesC16 const &) - call_vector_240 @ 240 NONAME ; public: void __thiscall RWindowTreeNode::SetOrdinalPosition(int) - call_vector_241 @ 241 NONAME ; public: void __thiscall RWindowTreeNode::SetOrdinalPosition(int,int) - call_vector_242 @ 242 NONAME ; public: void __thiscall RWindowGroup::SetOrdinalPriorityAdjust(int) - call_vector_243 @ 243 NONAME ; public: virtual void __thiscall CWindowGc::SetOrigin(class TPoint const &) - call_vector_244 @ 244 NONAME ; public: void __thiscall RWindowGroup::SetOwningWindowGroup(int) - call_vector_245 @ 245 NONAME ; public: virtual void __thiscall CWsScreenDevice::SetPalette(class CPalette *) - call_vector_246 @ 246 NONAME ; public: virtual void __thiscall CWindowGc::SetPenColor(class TRgb const &) - call_vector_247 @ 247 NONAME ; public: virtual void __thiscall CWindowGc::SetPenSize(class TSize const &) - call_vector_248 @ 248 NONAME ; public: virtual void __thiscall CWindowGc::SetPenStyle(enum CGraphicsContext::TPenStyle) - call_vector_249 @ 249 NONAME ; public: void __thiscall RWindowBase::SetPointerCapture(int) - call_vector_250 @ 250 NONAME ; public: int __thiscall RWindowTreeNode::SetPointerCursor(int) - call_vector_251 @ 251 NONAME ; public: void __thiscall RWindowBase::SetPointerGrab(int) - call_vector_252 @ 252 NONAME ; public: void __thiscall RWindowBase::SetPosition(class TPoint const &) - call_vector_253 @ 253 NONAME ; public: void __thiscall RWsSprite::SetPosition(class TPoint const &) - call_vector_254 @ 254 NONAME ; public: int __thiscall RWindowBase::SetRequiredDisplayMode(enum TDisplayMode) - call_vector_255 @ 255 NONAME ; public: void __thiscall RWindowBase::SetShadowDisabled(int) - call_vector_256 @ 256 NONAME ; public: void __thiscall RWindowBase::SetShadowHeight(int) - call_vector_257 @ 257 NONAME ; public: void __thiscall RWsSession::SetShadowVector(class TPoint const &) - call_vector_258 @ 258 NONAME ; public: int __thiscall RWindowBase::SetShape(class TRegion const &) - call_vector_259 @ 259 NONAME ; public: void __thiscall RBlankWindow::SetSize(class TSize const &) - call_vector_260 @ 260 NONAME ; public: void __thiscall RWindow::SetSize(class TSize const &) - call_vector_261 @ 261 NONAME ; public: int __thiscall RWindowBase::SetSizeErr(class TSize const &) - call_vector_262 @ 262 NONAME ; public: virtual void __thiscall CWindowGc::SetStrikethroughStyle(enum TFontStrikethrough) - call_vector_263 @ 263 NONAME ; public: int __thiscall RWsSession::SetSystemPointerCursor(class RWsPointerCursor const &,int) - call_vector_264 @ 264 NONAME ; public: void __thiscall RWindowGroup::SetTextCursor(class RWindowBase &,class TPoint const &,struct TTextCursor const &) - call_vector_265 @ 265 NONAME ; public: void __thiscall RWindowGroup::SetTextCursor(class RWindowBase &,class TPoint const &,struct TTextCursor const &,class TRect const &) - call_vector_266 @ 266 NONAME ; public: virtual void __thiscall CWindowGc::SetUnderlineStyle(enum TFontUnderline) - call_vector_267 @ 267 NONAME ; public: void __thiscall RWindowBase::SetVisible(int) - call_vector_268 @ 268 NONAME ; public: int __thiscall RWsSession::SetWindowGroupOrdinalPosition(int,int) - call_vector_269 @ 269 NONAME ; public: virtual void __thiscall CWindowGc::SetWordJustification(int,int) - call_vector_270 @ 270 NONAME ; public: class TPoint __thiscall RWsSession::ShadowVector(void)const - call_vector_271 @ 271 NONAME ; public: void __thiscall RWsSession::SimulateRawEvent(class TRawEvent) - call_vector_272 @ 272 NONAME ; public: class TSize __thiscall RWindowBase::Size(void)const - call_vector_273 @ 273 NONAME ; public: virtual class TSize __thiscall CWsScreenDevice::SizeInPixels(void)const - call_vector_274 @ 274 NONAME ; public: virtual class TSize __thiscall CWsScreenDevice::SizeInTwips(void)const - call_vector_275 @ 275 NONAME ; public: void __thiscall RWsSession::SystemInfo(int &,struct RWsSession::SSystemInfo &) - call_vector_276 @ 276 NONAME ; public: void __thiscall RWsSession::TestWrite(int,int,void const *,int) - call_vector_277 @ 277 NONAME ; public: void __thiscall RWsSession::TestWriteReply(int,int,void const *,int) - call_vector_278 @ 278 NONAME ; public: void __thiscall RWsSession::TestWriteReplyP(int,int,void const *,int,class TDes8 *) - call_vector_279 @ 279 NONAME ; public: virtual void __thiscall CWsScreenDevice::TypefaceSupport(class TTypefaceSupport &,int)const - call_vector_280 @ 280 NONAME ; public: void __thiscall RBackedUpWindow::UpdateBackupBitmap(void) - call_vector_281 @ 281 NONAME ; public: int __thiscall RWsSpriteBase::UpdateMember(int,struct TSpriteMember const &) - call_vector_282 @ 282 NONAME ; public: void __thiscall RWsSpriteBase::UpdateMember(int) - call_vector_283 @ 283 NONAME ; public: void __thiscall RBackedUpWindow::UpdateScreen(class TRegion const &) - call_vector_284 @ 284 NONAME ; public: void __thiscall RBackedUpWindow::UpdateScreen(void) - call_vector_285 @ 285 NONAME ; public: virtual void __thiscall CWindowGc::UseBrushPattern(class CFbsBitmap const *) - call_vector_286 @ 286 NONAME ; public: virtual void __thiscall CWindowGc::UseFont(class CFont const *) - call_vector_287 @ 287 NONAME ; class TVersion RWsSession::Version(void) const - call_vector_288 @ 288 NONAME ; public: virtual int __thiscall CWsScreenDevice::VerticalPixelsToTwips(int)const - call_vector_289 @ 289 NONAME ; public: virtual int __thiscall CWsScreenDevice::VerticalTwipsToPixels(int)const - call_vector_290 @ 290 NONAME ; int RWsSession::WindowGroupList(int, class CArrayFixFlat *) const - call_vector_291 @ 291 NONAME ; int RWsSession::WindowGroupList(class CArrayFixFlat *) const - call_vector_292 @ 292 NONAME ; public: int __thiscall RWsSession::RequestOffEvents(int,class RWindowTreeNode *) - call_vector_293 @ 293 NONAME ; public: void __thiscall RWindowTreeNode::__DbgTestInvariant(void)const - call_vector_294 @ 294 NONAME ; public: void __thiscall RWindowGroup::DisableScreenChangeEvents(void) - call_vector_295 @ 295 NONAME ; public: int __thiscall RWindowGroup::EnableScreenChangeEvents(void) - call_vector_296 @ 296 NONAME ; public: void __thiscall RWindowBase::FadeBehind(int) - call_vector_297 @ 297 NONAME ; public: void __thiscall CWsScreenDevice::GetDefaultScreenSizeAndRotation(struct TPixelsAndRotation &)const - call_vector_298 @ 298 NONAME ; public: void __thiscall CWsScreenDevice::GetDefaultScreenSizeAndRotation(struct TPixelsTwipsAndRotation &)const - call_vector_299 @ 299 NONAME ; enum TDisplayMode RWindowBase::DisplayMode(void) const - call_vector_300 @ 300 NONAME ; public: enum TDisplayMode __thiscall RWsSession::GetDefModeMaxNumColors(int &,int &)const - call_vector_301 @ 301 NONAME ; public: void __thiscall CWsScreenDevice::GetScreenModeSizeAndRotation(int,struct TPixelsAndRotation &)const - call_vector_302 @ 302 NONAME ; public: void __thiscall CWsScreenDevice::GetScreenModeSizeAndRotation(int,struct TPixelsTwipsAndRotation &)const - call_vector_303 @ 303 NONAME ; public: int __thiscall CWsScreenDevice::NumScreenModes(void)const - call_vector_304 @ 304 NONAME ; public: enum TScreenModeEnforcement __thiscall CWsScreenDevice::ScreenModeEnforcement(void)const - call_vector_305 @ 305 NONAME ; public: virtual void __thiscall CWindowGc::SetFaded(int) - call_vector_306 @ 306 NONAME ; public: void __thiscall RWindowTreeNode::SetFaded(int,enum RWindowTreeNode::TFadeControl) - call_vector_307 @ 307 NONAME ; public: void __thiscall RWindowTreeNode::SetNonFading(int) - call_vector_308 @ 308 NONAME ; public: void __thiscall CWsScreenDevice::SetScreenMode(int) - call_vector_309 @ 309 NONAME ; public: void __thiscall CWsScreenDevice::SetScreenModeEnforcement(enum TScreenModeEnforcement)const - call_vector_310 @ 310 NONAME ; public: void __thiscall CWsScreenDevice::SetScreenSizeAndRotation(struct TPixelsAndRotation const &) - call_vector_311 @ 311 NONAME ; public: void __thiscall CWsScreenDevice::SetScreenSizeAndRotation(struct TPixelsTwipsAndRotation const &) - call_vector_312 @ 312 NONAME ; public: void __thiscall RWindowGroup::SimulatePointerEvent(class TRawEvent) - call_vector_313 @ 313 NONAME ; public: int __thiscall RWsSession::GetColorModeList(class CArrayFixFlat *)const - call_vector_314 @ 314 NONAME ; int RWindowBase::IsFaded(void) const - call_vector_315 @ 315 NONAME ; int RWindowBase::IsNonFading(void) const - call_vector_316 @ 316 NONAME ; protected: int __thiscall RAnim::Construct(class RWsSprite const &,int,class TDesC8 const &) - call_vector_317 @ 317 NONAME ; public: int __thiscall CWsScreenDevice::GetRotationsList(int,class CArrayFixFlat *)const - call_vector_318 @ 318 NONAME ; public: int __thiscall RWindowTreeNode::OrdinalPriority(void)const - call_vector_319 @ 319 NONAME ; public: int __thiscall RWsSession::SendEventToAllWindowGroups(class TWsEvent const &) - call_vector_320 @ 320 NONAME ; public: int __thiscall RWsSession::SendEventToAllWindowGroups(int,class TWsEvent const &) - call_vector_321 @ 321 NONAME ; public: void __thiscall CWsScreenDevice::SetCurrentRotations(int,enum CFbsBitGc::TGraphicsOrientation)const - call_vector_322 @ 322 NONAME ; public: void __thiscall RWsSession::SimulateKeyEvent(struct TKeyEvent) - call_vector_323 @ 323 NONAME ; public: void __thiscall RWsSession::SetRemoveKeyCode(int) - call_vector_324 @ 324 NONAME ; public: void __thiscall RWsSession::ClearDefaultSystemPointerCursor(void) - call_vector_325 @ 325 NONAME ; public: void __thiscall RWindowTreeNode::ClearPointerCursor(void) - call_vector_326 @ 326 NONAME ; public: class TRect __thiscall RWsSession::PointerCursorArea(int)const - call_vector_327 @ 327 NONAME ; public: class TRect __thiscall RWsSession::PointerCursorArea(void)const - call_vector_328 @ 328 NONAME ; public: enum TPointerCursorMode __thiscall RWsSession::PointerCursorMode(void)const - call_vector_329 @ 329 NONAME ; public: class TPoint __thiscall RWsSession::PointerCursorPosition(void)const - call_vector_330 @ 330 NONAME ; public: void __thiscall RWsSession::SetDefaultSystemPointerCursor(int) - call_vector_331 @ 331 NONAME ; public: void __thiscall RWsSession::SetPointerCursorArea(class TRect const &) - call_vector_332 @ 332 NONAME ; public: void __thiscall RWsSession::SetPointerCursorArea(int,class TRect const &) - call_vector_333 @ 333 NONAME ; public: void __thiscall RWsSession::SetPointerCursorMode(enum TPointerCursorMode) - call_vector_334 @ 334 NONAME ; public: int __thiscall RWsSession::SetPointerCursorPosition(class TPoint const &) - call_vector_335 @ 335 NONAME ; public: void __thiscall RWsSession::SimulateXyInputType(enum TXYInputType) - call_vector_336 @ 336 NONAME ; public: int __thiscall RWindowBase::MoveToGroup(int) - call_vector_337 @ 337 NONAME ; public: int __thiscall RWsSession::SendMessageToAllWindowGroups(int,class TUid,class TDesC8 const &) - call_vector_338 @ 338 NONAME ; public: int __thiscall RWsSession::SendMessageToAllWindowGroups(class TUid,class TDesC8 const &) - call_vector_339 @ 339 NONAME ; public: void __thiscall RWindowTreeNode::DisableFocusChangeEvents(void) - call_vector_340 @ 340 NONAME ; public: int __thiscall RWindowTreeNode::EnableFocusChangeEvents(void) - call_vector_341 @ 341 NONAME ; public: void __thiscall RWsSession::SetDefaultFadingParameters(unsigned char,unsigned char) - call_vector_342 @ 342 NONAME ; public: void __thiscall RWindowTreeNode::SetFaded(int,enum RWindowTreeNode::TFadeControl,unsigned char,unsigned char) - call_vector_343 @ 343 NONAME ; public: virtual void __thiscall CWindowGc::SetFadingParameters(unsigned char,unsigned char) - call_vector_344 @ 344 NONAME ; public: void __thiscall RWsSession::PrepareForSwitchOff(void) - call_vector_345 @ 345 NONAME ; public: int __thiscall CWsScreenDevice::SetCustomPalette(class CPalette const *) - call_vector_346 @ 346 NONAME ; public: __thiscall RDirectScreenAccess::RDirectScreenAccess(class RWsSession &) - call_vector_347 @ 347 NONAME ; public: __thiscall RDirectScreenAccess::RDirectScreenAccess(void) - call_vector_348 @ 348 NONAME ; public: void __thiscall RDirectScreenAccess::Cancel(void) - call_vector_349 @ 349 NONAME ; public: void __thiscall RDirectScreenAccess::Close(void) - call_vector_350 @ 350 NONAME ; public: void __thiscall RDirectScreenAccess::Completed(void) - call_vector_351 @ 351 NONAME ; public: int __thiscall RDirectScreenAccess::Construct(void) - call_vector_352 @ 352 NONAME ; public: static class CDirectScreenAccess * __cdecl CDirectScreenAccess::NewL(class RWsSession &,class CWsScreenDevice &,class RWindowBase &,class MDirectScreenAccess &) - call_vector_353 @ 353 NONAME ; public: int __thiscall RDirectScreenAccess::Request(class RRegion * &,class TRequestStatus &,class RWindowBase const &) - call_vector_354 @ 354 NONAME ; public: void __thiscall CDirectScreenAccess::StartL(void) - call_vector_355 @ 355 NONAME ; public: void __thiscall RWsSession::SetBufferSizeL(int) - call_vector_356 @ 356 NONAME ; public: int __thiscall RWsSession::SetSystemFaded(int) - call_vector_357 @ 357 NONAME ; public: int __thiscall RWsSession::SetSystemFaded(int,unsigned char,unsigned char) - call_vector_358 @ 358 NONAME ; public: void __thiscall RWindowTreeNode::DisableGroupListChangeEvents(void) - call_vector_359 @ 359 NONAME ; public: int __thiscall RWindowTreeNode::EnableGroupListChangeEvents(void) - call_vector_360 @ 360 NONAME ; public: int __thiscall RSoundPlugIn::Construct(class TUid) - call_vector_361 @ 361 NONAME ; public: void __thiscall RSoundPlugIn::Destroy(void) - call_vector_362 @ 362 NONAME ; int RSoundPlugIn::IsLoaded(int &) const - call_vector_363 @ 363 NONAME ; public: int __thiscall RSoundPlugIn::Load(class TDesC16 const &) - call_vector_364 @ 364 NONAME ; public: int __thiscall RSoundPlugIn::Unload(void) - call_vector_365 @ 365 NONAME ; public: int __thiscall CWsScreenDevice::CurrentScreenMode(void)const - call_vector_366 @ 366 NONAME ; public: void __thiscall RWindowGroup::CancelCaptureLongKey(long) - call_vector_367 @ 367 NONAME ; public: long __thiscall RWindowGroup::CaptureLongKey(unsigned int,unsigned int,unsigned int,unsigned int,int,unsigned int) - call_vector_368 @ 368 NONAME ; public: long __thiscall RWindowGroup::CaptureLongKey(class TTimeIntervalMicroSeconds32,unsigned int,unsigned int,unsigned int,unsigned int,int,unsigned int) - call_vector_369 @ 369 NONAME ; public: int __thiscall RWsSession::SendEventToOneWindowGroupsPerClient(class TWsEvent const &) - call_vector_370 @ 370 NONAME ; int RSoundPlugIn::KeyClickEnabled(void) const - call_vector_371 @ 371 NONAME ; int RSoundPlugIn::PenClickEnabled(void) const - call_vector_372 @ 372 NONAME ; public: void __thiscall RSoundPlugIn::SetKeyClick(int) - call_vector_373 @ 373 NONAME ; public: void __thiscall RSoundPlugIn::SetPenClick(int) - call_vector_374 @ 374 NONAME ; public: long __thiscall RWindowGroup::CaptureKey(unsigned int,unsigned int,unsigned int,int) - call_vector_375 @ 375 NONAME ; public: long __thiscall RWindowGroup::CaptureKeyUpAndDowns(unsigned int,unsigned int,unsigned int,int) - call_vector_376 @ 376 NONAME ; public: void __thiscall RWsSession::LogCommand(enum RWsSession::TLoggingCommand) - call_vector_377 @ 377 NONAME ; public: __thiscall RSoundPlugIn::RSoundPlugIn(class RWsSession &) - call_vector_378 @ 378 NONAME ; public: __thiscall RSoundPlugIn::RSoundPlugIn(void) - call_vector_379 @ 379 NONAME ; public: void __thiscall RSoundPlugIn::Close(void) - call_vector_380 @ 380 NONAME ; public: int __thiscall RSoundPlugIn::CommandReply(int,class TPtrC8 const &) - call_vector_381 @ 381 NONAME ; public: int __thiscall RWsSession::SetCustomTextCursor(int,class TArray const &,unsigned int,enum RWsSession::TCustomTextCursorAlignment) - call_vector_382 @ 382 NONAME ; public: void __thiscall RWindow::HandleTransparencyUpdate(void) - call_vector_383 @ 383 NONAME ; public: int __thiscall RWindow::SetTransparencyBitmap(class CFbsBitmap const &) - call_vector_384 @ 384 NONAME ; public: int __thiscall RWindow::SetTransparencyFactor(class TRgb const &) - call_vector_385 @ 385 NONAME ; public: void __thiscall RWindow::SetNonTransparent(void) - call_vector_386 @ 386 NONAME ; public: int __thiscall RWsSession::TestWriteReplyByProvidingRemoteReadAccess(int,int,class TDesC8 const &,class TDesC16 const &) - call_vector_387 @ 387 NONAME ; public: int __thiscall RWsSession::TestWriteReplyByProvidingRemoteReadAccess(int,int,class TDesC8 const &,class TDesC8 const &) - call_vector_388 @ 388 NONAME ; int RAnim::CommandReply(int, class TDesC8 const &, class TIpcArgs const &) - call_vector_389 @ 389 NONAME ; int RAnim::Construct(class RWindowBase const &, int, class TDesC8 const &, class TIpcArgs const &) - call_vector_390 @ 390 NONAME ; int RAnim::Construct(class RWsSprite const &, int, class TDesC8 const &, class TIpcArgs const &) - call_vector_391 @ 391 NONAME ; void RAnim::AsyncCommandReply(class TRequestStatus &, int, class TIpcArgs const &) - call_vector_392 @ 392 NONAME ; public: class TPoint __thiscall RWindowBase::AbsPosition(void)const - call_vector_393 @ 393 NONAME ; public: int __thiscall CWsScreenDevice::RectCompare(class TRect const &,class TRect const &,unsigned int)const - call_vector_394 @ 394 NONAME ; public: class TPoint __thiscall CWsScreenDevice::GetDefaultScreenModeOrigin(void)const - call_vector_395 @ 395 NONAME ; public: class TPoint __thiscall CWsScreenDevice::GetScreenModeOrigin(int)const - call_vector_396 @ 396 NONAME ; void RWindow::EnableRedrawStore(int) - call_vector_397 @ 397 NONAME ; void CWindowGc::AlphaBlendBitmaps(class TPoint const &, class CFbsBitmap const *, class TRect const &, class CFbsBitmap const *, class TPoint const &) - call_vector_398 @ 398 NONAME ; void CWindowGc::AlphaBlendBitmaps(class TPoint const &, class CWsBitmap const *, class TRect const &, class CWsBitmap const *, class TPoint const &) - call_vector_399 @ 399 NONAME ; void CWindowGc::SetOpaque(int) - call_vector_400 @ 400 NONAME ; public: class TSizeMode __thiscall CWsScreenDevice::GetCurrentScreenModeAttributes(void)const - call_vector_401 @ 401 NONAME ; public: class TPoint __thiscall CWsScreenDevice::GetCurrentScreenModeScaledOrigin(void)const - call_vector_402 @ 402 NONAME ; public: class TSize __thiscall CWsScreenDevice::GetCurrentScreenModeScale(void)const - call_vector_403 @ 403 NONAME ; public: class TPoint __thiscall CWsScreenDevice::GetScreenModeScaledOrigin(int)const - call_vector_404 @ 404 NONAME ; public: class TSize __thiscall CWsScreenDevice::GetScreenModeScale(int)const - call_vector_405 @ 405 NONAME ; public: void __thiscall CWsScreenDevice::SetAppScreenMode(int) - call_vector_406 @ 406 NONAME ; public: void __thiscall CWsScreenDevice::SetCurrentScreenModeAttributes(class TSizeMode const &) - call_vector_407 @ 407 NONAME ; void CWindowGc::DrawBitmapMasked(class TRect const &, class CFbsBitmap const *, class TRect const &, class CFbsBitmap const *, int) - call_vector_408 @ 408 NONAME ; int CWsScreenDevice::Construct(int) - call_vector_409 @ 409 NONAME ; int CWsScreenDevice::GetScreenNumber(void) const - call_vector_410 @ 410 NONAME ; int RWsSession::GetFocusScreen(void) const - call_vector_411 @ 411 NONAME ; int RWsSession::SetFocusScreen(int) - call_vector_412 @ 412 NONAME ; public: int __thiscall RWindowGroup::ConstructChildApp(int,unsigned long) - call_vector_413 @ 413 NONAME ; public: int __thiscall RWindowGroup::ConstructChildApp(int,unsigned long,int) - call_vector_414 @ 414 NONAME ; int RWsSession::WindowGroupList(int, class RArray *) const - call_vector_415 @ 415 NONAME ; int RWsSession::WindowGroupList(class RArray *) const - call_vector_416 @ 416 NONAME ; public: void __thiscall RWindowGroup::AllowProcessToCreateChildWindowGroups(class TUid) - call_vector_417 @ 417 NONAME ; public: int __thiscall RWindow::SetTransparencyWsBitmap(class CWsBitmap const &) - call_vector_418 @ 418 NONAME ; int CWsScreenDevice::GetScreenSizeModeList(class RArray *) const - call_vector_419 @ 419 NONAME ; int CWsScreenDevice::GetNearestFontToDesignHeightInPixels(class CFont * &, class TFontSpec const &) - call_vector_420 @ 420 NONAME ; int CWsScreenDevice::GetNearestFontToDesignHeightInTwips(class CFont * &, class TFontSpec const &) - call_vector_421 @ 421 NONAME ; int CWsScreenDevice::GetNearestFontToMaxHeightInPixels(class CFont * &, class TFontSpec const &, int) - call_vector_422 @ 422 NONAME ; int CWsScreenDevice::GetNearestFontToMaxHeightInTwips(class CFont * &, class TFontSpec const &, int) - call_vector_423 @ 423 NONAME ; void RWindowTreeNode::DisableVisibilityChangeEvents(void) - call_vector_424 @ 424 NONAME ; int RWindowTreeNode::EnableVisibilityChangeEvents(void) - call_vector_425 @ 425 NONAME ; int RWindow::SetTransparencyAlphaChannel(void) - call_vector_426 @ 426 NONAME ; void RBlankWindow::SetColor(void) - call_vector_427 @ 427 NONAME ; int RWsSession::SetClientCursorMode(enum TPointerCursorMode) - call_vector_428 @ 428 NONAME ; class TRect RDrawableWindow::GetDrawRect(void) const - call_vector_429 @ 429 NONAME - call_vector_430 @ 430 NONAME - call_vector_431 @ 431 NONAME ; void CWindowGc::Reserved_CWindowGc_3(void) - call_vector_432 @ 432 NONAME ; void CWindowGc::Reserved_CWindowGc_4(void) - call_vector_433 @ 433 NONAME ; void CWindowGc::Reserved_CWindowGc_5(void) - call_vector_434 @ 434 NONAME ; void CWindowGc::Reserved_CBitmapContext_1(void) - call_vector_435 @ 435 NONAME ; void CWindowGc::Reserved_CBitmapContext_2(void) - call_vector_436 @ 436 NONAME ; void CWindowGc::Reserved_CBitmapContext_3(void) - call_vector_437 @ 437 NONAME ; int CWindowGc::APIExtension(class TUid, int*&, int *) - call_vector_438 @ 438 NONAME ; void CWindowGc::Reserved_CGraphicsContext_2(void) - call_vector_439 @ 439 NONAME ; void CWindowGc::DrawBitmapMasked(class TRect const &, class CWsBitmap const *, class TRect const &, class CWsBitmap const *, int) - call_vector_440 @ 440 NONAME ; int RWsSession::Connect(class RFs &) - call_vector_441 @ 441 NONAME ; enum TDisplayMode CWsScreenDevice::GetScreenModeDisplayMode(int const &) const - call_vector_442 @ 442 NONAME ; public: void __thiscall RWsSession::ClearAllRedrawStores(void) - call_vector_443 @ 443 NONAME ; int RWindowTreeNode::WindowGroupId(void) const - call_vector_444 @ 444 NONAME ; int RWindowBase::GetPointerCapturePriority(void) const - call_vector_445 @ 445 NONAME ; void RWindowBase::SetPointerCapturePriority(int) - call_vector_446 @ 446 NONAME ; int RWindow::SetTransparentRegion(class TRegion const &) - call_vector_447 @ 447 NONAME ; int RWindow::SetTransparencyPolicy(enum TWsTransparencyPolicy) - call_vector_448 @ 448 NONAME ; int RWindow::IsRedrawStoreEnabled(void) const - call_vector_449 @ 449 NONAME ; int CWsScreenDevice::SetBackLight(int) - call_vector_450 @ 450 NONAME ; int RWindowGroup::SetOrdinalPositionErr(int, int) - call_vector_451 @ 451 NONAME ; int RWindowGroup::ClearChildGroup(void) - call_vector_452 @ 452 NONAME ; int RWindowGroup::SetChildGroup(int) - call_vector_453 @ 453 NONAME ; class TUid TWsGraphicId::Uid(void) const - call_vector_454 @ 454 NONAME ; CWsGraphic::CWsGraphic(void) - call_vector_455 @ 455 NONAME ; RWsGraphicMsgBuf::RWsGraphicMsgBuf(void) - call_vector_456 @ 456 NONAME ; TWsGraphicMsgFixedBase::TWsGraphicMsgFixedBase(class TUid, int) - call_vector_457 @ 457 NONAME ; CWsGraphic::~CWsGraphic(void) - call_vector_458 @ 458 NONAME ; int RWsGraphicMsgBuf::Append(class TWsGraphicMsgFixedBase const &) - call_vector_459 @ 459 NONAME ; int RWsGraphicMsgBuf::Append(class TUid, class TDesC16 const &) - call_vector_460 @ 460 NONAME ; int RWsGraphicMsgBuf::Append(class TUid, class TDesC8 const &) - call_vector_461 @ 461 NONAME ; int RWsGraphicMsgBuf::Append(class TUid, int, class TPtr8 &) - call_vector_462 @ 462 NONAME ; void CWsGraphic::BaseConstructL(class TWsGraphicId const &, class TUid, class TDesC8 const &) - call_vector_463 @ 463 NONAME ; void CWsGraphic::BaseConstructL(class TUid, class TUid, class TDesC8 const &) - call_vector_464 @ 464 NONAME ; void CWsGraphic::BaseConstructL(class TUid, class TDesC8 const &) - call_vector_465 @ 465 NONAME ; int CWsGraphic::CWsGraphic_Reserved1(void) - call_vector_466 @ 466 NONAME ; int CWsGraphic::CWsGraphic_Reserved2(void) - call_vector_467 @ 467 NONAME ; int CWsGraphic::CWsGraphic_Reserved3(void) - call_vector_468 @ 468 NONAME ; int TWsGraphicId::Compare(class TWsGraphicId const &) const - call_vector_469 @ 469 NONAME ; int RWsGraphicMsgBuf::Count(void) const - call_vector_470 @ 470 NONAME ; class TPtrC8 RWsGraphicMsgBuf::Data(int) const - call_vector_471 @ 471 NONAME ; void CWsGraphic::Destroy(void) - call_vector_472 @ 472 NONAME ; void RWsGraphicMsgBuf::GetFixedMsg(class TWsGraphicMsgFixedBase &, int) const - call_vector_473 @ 473 NONAME ; class TWsGraphicId const & CWsGraphic::Id(void) const - call_vector_474 @ 474 NONAME ; int CWsGraphic::IsActive(void) const - call_vector_475 @ 475 NONAME ; int TWsGraphicId::IsId(void) const - call_vector_476 @ 476 NONAME ; void CWsGraphic::OnClientClose(void) - call_vector_477 @ 477 NONAME ; class TDesC8 const & RWsGraphicMsgBuf::Pckg(void) const - call_vector_478 @ 478 NONAME ; class TPtrC8 TWsGraphicMsgFixedBase::Pckg(void) const - call_vector_479 @ 479 NONAME ; void RWsGraphicMsgBuf::Remove(int) - call_vector_480 @ 480 NONAME ; void CWsGraphic::SendMessage(class TDesC8 const &) const - call_vector_481 @ 481 NONAME ; void TWsGraphicId::Set(int) - call_vector_482 @ 482 NONAME ; void TWsGraphicId::Set(class TUid) - call_vector_483 @ 483 NONAME ; int CWsGraphic::Share(class TSecureId) - call_vector_484 @ 484 NONAME ; int CWsGraphic::ShareGlobally(void) - call_vector_485 @ 485 NONAME ; int TWsGraphicMsgFixedBase::Size(void) const - call_vector_486 @ 486 NONAME ; class TUid RWsGraphicMsgBuf::TypeId(int) const - call_vector_487 @ 487 NONAME ; class TUid TWsGraphicMsgFixedBase::TypeId(void) const - call_vector_488 @ 488 NONAME ; int CWsGraphic::UnShare(class TSecureId) - call_vector_489 @ 489 NONAME ; int CWsGraphic::UnShareGlobally(void) - call_vector_490 @ 490 NONAME ; class TPtr8 RWsGraphicMsgBuf::Data(int) - call_vector_491 @ 491 NONAME ; TWsGraphicId::TWsGraphicId(class TWsGraphicId const &) - call_vector_492 @ 492 NONAME ; TWsGraphicId::TWsGraphicId(int) - call_vector_493 @ 493 NONAME ; int CWsGraphic::Flush(void) const - call_vector_494 @ 494 NONAME ; int RWindowGroup::Construct(unsigned long, int, class CWsScreenDevice *) - call_vector_495 @ 495 NONAME ; int RWindowGroup::Construct(unsigned long, class CWsScreenDevice *) - call_vector_496 @ 496 NONAME ; int RWsSession::GetColorModeList(int, class CArrayFixFlat *) const - call_vector_497 @ 497 NONAME ; enum TDisplayMode RWsSession::GetDefModeMaxNumColors(int, int &, int &) const - call_vector_498 @ 498 NONAME ; int RWsSession::GetDefaultOwningWindow(int) const - call_vector_499 @ 499 NONAME ; int RWsSession::GetFocusWindowGroup(int) const - call_vector_500 @ 500 NONAME ; int RWsSession::NumWindowGroups(int, int) const - call_vector_501 @ 501 NONAME ; int RWsSession::NumberOfScreens(void) const - call_vector_502 @ 502 NONAME ; int RWsSession::WindowGroupList(class CArrayFixFlat *, int, int) const - call_vector_503 @ 503 NONAME ; TWsGraphicId::TWsGraphicId(class TUid) - call_vector_504 @ 504 NONAME ; public: void __thiscall RWsSession::SetMaxBufferSizeL(int) - call_vector_505 @ 505 NONAME ; void RWindow::EnableOSB(int) - call_vector_506 @ 506 NONAME ; int TWsGraphicId::Id(void) const - call_vector_507 @ 507 NONAME ; int TWsGraphicId::IsUid(void) const - call_vector_508 @ 508 NONAME ; void CWsGraphic::SetGraphicExtension(class MWsObjectProvider *) - call_vector_509 @ 509 NONAME ; int CWsGraphic::SendSynchronMessage(class TDesC8 const &) const - call_vector_510 @ 510 NONAME ; int RWsSession::DebugInfo(int, class TDes8 &, int) const - call_vector_511 @ 511 NONAME ; int RWsSession::DebugInfo(int, int) const - call_vector_512 @ 512 NONAME ; unsigned long RWindowTreeNode::ClientHandle(void) const - call_vector_513 @ 513 NONAME ; int RWindowBase::SetBackgroundSurface(class TSurfaceId const &) - call_vector_514 @ 514 NONAME - call_vector_515 @ 515 NONAME ; class TRgb RWindowBase::KeyColor(void) const - call_vector_516 @ 516 NONAME - call_vector_517 @ 517 NONAME - call_vector_518 @ 518 NONAME - call_vector_519 @ 519 NONAME - call_vector_520 @ 520 NONAME - call_vector_521 @ 521 NONAME ; int RWindowBase::GetBackgroundSurface(class TSurfaceConfiguration &) const - call_vector_522 @ 522 NONAME - call_vector_523 @ 523 NONAME ; int RWsSession::PreferredSurfaceConfigurationSize(void) const - call_vector_524 @ 524 NONAME ; int RWsSession::RegisterSurface(int, class TSurfaceId const &) - call_vector_525 @ 525 NONAME - call_vector_526 @ 526 NONAME ; void RWindowBase::RemoveBackgroundSurface(int) - call_vector_527 @ 527 NONAME - call_vector_528 @ 528 NONAME ; int RWindowBase::SetBackgroundSurface(class TSurfaceConfiguration const &, int) - call_vector_529 @ 529 NONAME ; void RWsSession::UnregisterSurface(int, class TSurfaceId const &) - call_vector_530 @ 530 NONAME ; void RWindow::ClearRedrawStore(void) - call_vector_531 @ 531 NONAME ; int RWsSession::Finish(void) - call_vector_532 @ 532 NONAME ; void RWsSession::SyncMsgBuf(void) - call_vector_533 @ 533 NONAME ; class RWsSession & CWsGraphic::Session(void) - call_vector_534 @ 534 NONAME ; int RWindowTreeNode::ScreenNumber(void) const - call_vector_535 @ 535 NONAME ; void TWsEvent::SetPointerNumber(unsigned char) - call_vector_536 @ 536 NONAME ; int TAdvancedPointerEvent::DoGetPointerNumber(void) const - call_vector_537 @ 537 NONAME ; int RWindowBase::ClaimPointerGrab(unsigned char, int) - call_vector_538 @ 538 NONAME ; int RWindowBase::RequestPointerRepeatEvent(class TTimeIntervalMicroSeconds32, class TRect const &, unsigned char) - call_vector_539 @ 539 NONAME ; int RWsSession::GetExitHighPressureThreshold(void) const - call_vector_540 @ 540 NONAME ; int RWsSession::SetCloseProximityThresholds(int, int) - call_vector_541 @ 541 NONAME ; int RWsSession::SetHighPressureThresholds(int, int) - call_vector_542 @ 542 NONAME ; int RWindowBase::CancelPointerRepeatEventRequest(unsigned char) - call_vector_543 @ 543 NONAME ; void TWsEvent::InitAdvancedPointerEvent(enum TPointerEvent::TType, unsigned int, class TPoint3D const &, unsigned char) - call_vector_544 @ 544 NONAME ; int RWsSession::GetExitCloseProximityThreshold(void) const - call_vector_545 @ 545 NONAME ; void RWindowBase::EnableAdvancedPointers(void) - call_vector_546 @ 546 NONAME ; void TWsEvent::SetPointerZ(int) - call_vector_547 @ 547 NONAME ; int TAdvancedPointerEvent::DoGetProximityAndPressure(void) const - call_vector_548 @ 548 NONAME ; int TAdvancedPointerEvent::DoGetProximity(void) const - call_vector_549 @ 549 NONAME ; int TAdvancedPointerEvent::DoGetPressure(void) const - call_vector_550 @ 550 NONAME ; void RWindowGroup::SimulateAdvancedPointerEvent(class TRawEvent) - call_vector_551 @ 551 NONAME ; int RWsSession::GetEnterHighPressureThreshold(void) const - call_vector_552 @ 552 NONAME ; int RWsSession::GetEnterCloseProximityThreshold(void) const - call_vector_553 @ 553 NONAME ; class TAdvancedPointerEvent & TAdvancedPointerEvent::operator=(class TAdvancedPointerEvent const &) - call_vector_554 @ 554 NONAME ; TAdvancedPointerEvent::TAdvancedPointerEvent(class TAdvancedPointerEvent const &) - call_vector_555 @ 555 NONAME ; RWsDrawableSource::RWsDrawableSource(void) - call_vector_556 @ 556 NONAME ; void RWsDrawableSource::Close(void) - call_vector_557 @ 557 NONAME ; int RWsDrawableSource::Create(class RSgDrawable const &) - call_vector_558 @ 558 NONAME ; class TSgDrawableId const & RWsDrawableSource::DrawableId(void) const - call_vector_559 @ 559 NONAME ; void CWindowGc::DrawResource(class TPoint const &, class RWsDrawableSource const &, enum CWindowGc::TGraphicsRotation) - call_vector_560 @ 560 NONAME ; void CWindowGc::DrawResource(class TRect const &, class RWsDrawableSource const &, enum CWindowGc::TGraphicsRotation) - call_vector_561 @ 561 NONAME ; void CWindowGc::DrawResource(class TRect const &, class RWsDrawableSource const &, class TRect const &, enum CWindowGc::TGraphicsRotation) - call_vector_562 @ 562 NONAME ; void CWindowGc::DrawResource(class TRect const &, class RWsDrawableSource const &, class TDesC8 const &) - call_vector_563 @ 563 NONAME ; int RDirectScreenAccess::Construct(int) - call_vector_564 @ 564 NONAME ; class CDirectScreenAccess * CDirectScreenAccess::NewL(class RWsSession &, class CWsScreenDevice &, class RWindowBase &, class MDirectScreenAccess &, int) - call_vector_565 @ 565 NONAME ; int RWsDrawableSource::Create(class RSgDrawable const &, int) - call_vector_566 @ 566 NONAME ; RWsDrawableSource::RWsDrawableSource(class RWsSession &) - call_vector_567 @ 567 NONAME ; int RWsDrawableSource::ScreenNumber(void) const - call_vector_568 @ 568 NONAME ; void * CWsScreenDevice::GetInterface(unsigned int) - call_vector_569 @ 569 NONAME ; int CWsScreenDevice::IsCurrentModeDynamic(void) const - call_vector_570 @ 570 NONAME ; int CWsScreenDevice::IsModeDynamic(int) const - call_vector_571 @ 571 NONAME ; void const * CWindowGc::Interface(class TUid) const - call_vector_572 @ 572 NONAME ; void * CWindowGc::Interface(class TUid) - call_vector_573 @ 573 NONAME ; class RWsSession * RWindowTreeNode::Session(void) const - call_vector_574 @ 574 NONAME ; void RWsSession::HeapSetBurstFail(int, int, int) - call_vector_575 @ 575 NONAME ; void RWsSession::EnableWindowSizeCacheL(void) - call_vector_576 @ 576 NONAME ; void RWindowBase::SetSurfaceTransparency(int) +EXPORTS + call_vector_1 @ 1 NONAME ; public: __thiscall CWindowGc::CWindowGc(class CWsScreenDevice *) + call_vector_2 @ 2 NONAME ; public: __thiscall CWsBitmap::CWsBitmap(class RWsSession &) + call_vector_3 @ 3 NONAME ; public: __thiscall CWsBitmap::CWsBitmap(void) + call_vector_4 @ 4 NONAME ; public: __thiscall CWsScreenDevice::CWsScreenDevice(class RWsSession &) + call_vector_5 @ 5 NONAME ; public: __thiscall CWsScreenDevice::CWsScreenDevice(void) + call_vector_6 @ 6 NONAME ; protected: __thiscall RAnim::RAnim(class RAnimDll &) + call_vector_7 @ 7 NONAME ; protected: __thiscall RAnim::RAnim(void) + call_vector_8 @ 8 NONAME ; public: __thiscall RAnimDll::RAnimDll(class RWsSession &) + call_vector_9 @ 9 NONAME ; public: __thiscall RAnimDll::RAnimDll(void) + call_vector_10 @ 10 NONAME ; public: __thiscall RBackedUpWindow::RBackedUpWindow(class RWsSession &) + call_vector_11 @ 11 NONAME ; public: __thiscall RBackedUpWindow::RBackedUpWindow(void) + call_vector_12 @ 12 NONAME ; public: __thiscall RBlankWindow::RBlankWindow(class RWsSession &) + call_vector_13 @ 13 NONAME ; public: __thiscall RBlankWindow::RBlankWindow(void) + call_vector_14 @ 14 NONAME ; public: __thiscall RWindow::RWindow(class RWsSession &) + call_vector_15 @ 15 NONAME ; public: __thiscall RWindow::RWindow(void) + call_vector_16 @ 16 NONAME ; public: __thiscall RWindowGroup::RWindowGroup(class RWsSession &) + call_vector_17 @ 17 NONAME ; public: __thiscall RWindowGroup::RWindowGroup(void) + call_vector_18 @ 18 NONAME ; public: __thiscall RWsPointerCursor::RWsPointerCursor(class RWsSession &) + call_vector_19 @ 19 NONAME ; public: __thiscall RWsPointerCursor::RWsPointerCursor(void) + call_vector_20 @ 20 NONAME ; public: __thiscall RWsSession::RWsSession(void) + call_vector_21 @ 21 NONAME ; public: __thiscall RWsSprite::RWsSprite(class RWsSession &) + call_vector_22 @ 22 NONAME ; public: __thiscall RWsSprite::RWsSprite(void) + call_vector_23 @ 23 NONAME ; protected: __thiscall RWsSpriteBase::RWsSpriteBase(class RWsSession &) + call_vector_24 @ 24 NONAME ; protected: __thiscall RWsSpriteBase::RWsSpriteBase(void) + call_vector_25 @ 25 NONAME ; public: virtual __thiscall CWindowGc::~CWindowGc(void) + call_vector_26 @ 26 NONAME ; public: virtual __thiscall CWsBitmap::~CWsBitmap(void) + call_vector_27 @ 27 NONAME ; public: virtual __thiscall CWsScreenDevice::~CWsScreenDevice(void) + call_vector_28 @ 28 NONAME ; public: virtual __thiscall RAnim::~RAnim(void) + call_vector_29 @ 29 NONAME ; public: virtual __thiscall RAnimDll::~RAnimDll(void) + call_vector_30 @ 30 NONAME ; public: virtual void __thiscall CWindowGc::Activate(class RDrawableWindow &) + call_vector_31 @ 31 NONAME ; public: void __thiscall RWindowBase::Activate(void) + call_vector_32 @ 32 NONAME ; public: int __thiscall RWsSpriteBase::Activate(void) + call_vector_33 @ 33 NONAME ; public: virtual int __thiscall CWsScreenDevice::AddFile(class TDesC16 const &,int &) + call_vector_34 @ 34 NONAME ; public: int __thiscall RWindowBase::AddKeyRect(class TRect const &,int,int) + call_vector_35 @ 35 NONAME ; public: int __thiscall RWindowGroup::AddPriorityKey(unsigned int,unsigned int,unsigned int) + call_vector_36 @ 36 NONAME ; public: int __thiscall RWindowBase::AllocPointerMoveBuffer(int,unsigned int) + call_vector_37 @ 37 NONAME ; public: int __thiscall RWsSpriteBase::AppendMember(struct TSpriteMember const &) + call_vector_38 @ 38 NONAME ; public: void __thiscall RWindowGroup::AutoForeground(int) + call_vector_39 @ 39 NONAME ; public: void __thiscall RWindow::BeginRedraw(class TRect const &) + call_vector_40 @ 40 NONAME ; public: void __thiscall RWindow::BeginRedraw(void) + call_vector_41 @ 41 NONAME ; public: virtual void __thiscall CWindowGc::BitBlt(class TPoint const &,class CFbsBitmap const *) + call_vector_42 @ 42 NONAME ; public: virtual void __thiscall CWindowGc::BitBlt(class TPoint const &,class CFbsBitmap const *,class TRect const &) + call_vector_43 @ 43 NONAME ; public: virtual void __thiscall CWindowGc::BitBlt(class TPoint const &,class CWsBitmap const *) + call_vector_44 @ 44 NONAME ; public: virtual void __thiscall CWindowGc::BitBlt(class TPoint const &,class CWsBitmap const *,class TRect const &) + call_vector_45 @ 45 NONAME ; public: virtual void __thiscall CWindowGc::BitBltMasked(class TPoint const &,class CFbsBitmap const *,class TRect const &,class CFbsBitmap const *,int) + call_vector_46 @ 46 NONAME ; public: virtual void __thiscall CWindowGc::BitBltMasked(class TPoint const &,class CWsBitmap const *,class TRect const &,class CWsBitmap const *,int) + call_vector_47 @ 47 NONAME ; int RBackedUpWindow::BitmapHandle(void) const + call_vector_48 @ 48 NONAME ; public: void __thiscall RWindowGroup::CancelCaptureKey(long) + call_vector_49 @ 49 NONAME ; public: void __thiscall RWindowGroup::CancelCaptureKeyUpAndDowns(long) + call_vector_50 @ 50 NONAME ; public: virtual void __thiscall CWindowGc::CancelClippingRect(void) + call_vector_51 @ 51 NONAME ; public: virtual void __thiscall CWindowGc::CancelClippingRegion(void) + call_vector_52 @ 52 NONAME ; public: void __thiscall RWindowBase::CancelPointerRepeatEventRequest(void) + call_vector_53 @ 53 NONAME ; public: void __thiscall RWindowGroup::CancelTextCursor(void) + call_vector_54 @ 54 NONAME ; public: long __thiscall RWindowGroup::CaptureKey(unsigned int,unsigned int,unsigned int) + call_vector_55 @ 55 NONAME ; public: long __thiscall RWindowGroup::CaptureKeyUpAndDowns(unsigned int,unsigned int,unsigned int) + call_vector_56 @ 56 NONAME ; public: unsigned long __thiscall RWindowTreeNode::Child(void)const + call_vector_57 @ 57 NONAME ; public: void __thiscall RWindowBase::ClaimPointerGrab(int) + call_vector_58 @ 58 NONAME ; public: int __thiscall RWsSession::ClaimSystemPointerCursorList(void) + call_vector_59 @ 59 NONAME ; public: virtual void __thiscall CWindowGc::Clear(class TRect const &) + call_vector_60 @ 60 NONAME ; public: virtual void __thiscall CWindowGc::Clear(void) + call_vector_61 @ 61 NONAME ; public: int __thiscall RWsSession::ClearHotKeys(enum THotKey) + call_vector_62 @ 62 NONAME ; public: void __thiscall RWsSession::ClearSystemPointerCursor(int) + call_vector_63 @ 63 NONAME ; public: virtual void __thiscall RAnim::Close(void) + call_vector_64 @ 64 NONAME ; public: virtual void __thiscall RAnimDll::Close(void) + call_vector_65 @ 65 NONAME ; public: void __thiscall RWindowTreeNode::Close(void) + call_vector_66 @ 66 NONAME ; public: void __thiscall RWsSpriteBase::Close(void) + call_vector_67 @ 67 NONAME ; protected: void __thiscall RAnim::Command(int) + call_vector_68 @ 68 NONAME ; protected: void __thiscall RAnim::Command(int,class TPtrC8 const &) + call_vector_69 @ 69 NONAME ; protected: int __thiscall RAnim::CommandReply(int) + call_vector_70 @ 70 NONAME ; protected: int __thiscall RAnim::CommandReply(int,class TPtrC8 const &) + call_vector_71 @ 71 NONAME ; public: void __thiscall RWsSession::ComputeMode(enum RWsSession::TComputeMode) + call_vector_72 @ 72 NONAME ; public: int __thiscall RWsSession::Connect(void) + call_vector_73 @ 73 NONAME ; public: virtual int __thiscall CWindowGc::Construct(void) + call_vector_74 @ 74 NONAME ; public: int __thiscall CWsScreenDevice::Construct(void) + call_vector_75 @ 75 NONAME ; protected: int __thiscall RAnim::Construct(class RWindowBase const &,int,class TDesC8 const &) + call_vector_76 @ 76 NONAME ; public: int __thiscall RBackedUpWindow::Construct(class RWindowTreeNode const &,enum TDisplayMode,unsigned long) + call_vector_77 @ 77 NONAME ; public: int __thiscall RBlankWindow::Construct(class RWindowTreeNode const &,unsigned long) + call_vector_78 @ 78 NONAME ; public: int __thiscall RWindow::Construct(class RWindowTreeNode const &,unsigned long) + call_vector_79 @ 79 NONAME ; public: int __thiscall RWindowGroup::Construct(unsigned long) + call_vector_80 @ 80 NONAME ; public: int __thiscall RWindowGroup::Construct(unsigned long,int) + call_vector_81 @ 81 NONAME ; public: int __thiscall RWsPointerCursor::Construct(int) + call_vector_82 @ 82 NONAME ; public: int __thiscall RWsSprite::Construct(class RWindowTreeNode &,class TPoint const &,int) + call_vector_83 @ 83 NONAME ; public: virtual void __thiscall CWindowGc::CopyRect(class TPoint const &,class TRect const &) + call_vector_84 @ 84 NONAME ; public: int __thiscall CWsScreenDevice::CopyScreenToBitmap(class CFbsBitmap const *)const + call_vector_85 @ 85 NONAME ; public: int __thiscall CWsScreenDevice::CopyScreenToBitmap(class CFbsBitmap const *,class TRect const &)const + call_vector_86 @ 86 NONAME ; public: int __thiscall CWsBitmap::Create(class TSize const &,enum TDisplayMode) + call_vector_87 @ 87 NONAME ; public: virtual int __thiscall CWsScreenDevice::CreateContext(class CGraphicsContext * &) + call_vector_88 @ 88 NONAME ; public: virtual void __thiscall CWindowGc::Deactivate(void) + call_vector_89 @ 89 NONAME ; public: void __thiscall RWindowGroup::DefaultOwningWindow(void) + call_vector_90 @ 90 NONAME ; public: void __thiscall RAnim::Destroy(void) + call_vector_91 @ 91 NONAME ; public: void __thiscall RAnimDll::Destroy(void) + call_vector_92 @ 92 NONAME ; public: void __thiscall RWindowTreeNode::Destroy(void) + call_vector_93 @ 93 NONAME ; public: virtual class CGraphicsDevice * __thiscall CWindowGc::Device(void)const + call_vector_94 @ 94 NONAME ; public: void __thiscall RWindowTreeNode::DisableGroupChangeEvents(void) + call_vector_95 @ 95 NONAME ; public: void __thiscall RWindowGroup::DisableKeyClick(int) + call_vector_96 @ 96 NONAME ; public: void __thiscall RWindowTreeNode::DisableModifierChangedEvents(void) + call_vector_97 @ 97 NONAME ; public: void __thiscall RWindowTreeNode::DisableOnEvents(void) + call_vector_98 @ 98 NONAME ; public: void __thiscall RWindowTreeNode::DisableErrorMessages(void) + call_vector_99 @ 99 NONAME ; public: void __thiscall RWindowBase::DisablePointerMoveBuffer(void) + call_vector_100 @ 100 NONAME ; public: virtual void __thiscall CWindowGc::DiscardBrushPattern(void) + call_vector_101 @ 101 NONAME ; public: virtual void __thiscall CWindowGc::DiscardFont(void) + call_vector_102 @ 102 NONAME ; public: void __thiscall RWindowBase::DiscardPointerMoveBuffer(void) + call_vector_103 @ 103 NONAME ; public: void __thiscall RWsSession::Close(void) + call_vector_104 @ 104 NONAME ; public: virtual enum TDisplayMode __thiscall CWsScreenDevice::DisplayMode(void)const + call_vector_105 @ 105 NONAME ; public: virtual void __thiscall CWindowGc::DrawArc(class TRect const &,class TPoint const &,class TPoint const &) + call_vector_106 @ 106 NONAME ; public: virtual void __thiscall CWindowGc::DrawBitmap(class TPoint const &,class CFbsBitmap const *) + call_vector_107 @ 107 NONAME ; public: virtual void __thiscall CWindowGc::DrawBitmap(class TRect const &,class CFbsBitmap const *,class TRect const &) + call_vector_108 @ 108 NONAME ; public: virtual void __thiscall CWindowGc::DrawBitmap(class TRect const &,class CFbsBitmap const *) + call_vector_109 @ 109 NONAME ; public: virtual void __thiscall CWindowGc::DrawEllipse(class TRect const &) + call_vector_110 @ 110 NONAME ; public: virtual void __thiscall CWindowGc::DrawLine(class TPoint const &,class TPoint const &) + call_vector_111 @ 111 NONAME ; public: virtual void __thiscall CWindowGc::DrawLineBy(class TPoint const &) + call_vector_112 @ 112 NONAME ; public: virtual void __thiscall CWindowGc::DrawLineTo(class TPoint const &) + call_vector_113 @ 113 NONAME ; public: virtual void __thiscall CWindowGc::DrawPie(class TRect const &,class TPoint const &,class TPoint const &) + call_vector_114 @ 114 NONAME ; public: virtual void __thiscall CWindowGc::DrawPolyLine(class CArrayFix const *) + call_vector_115 @ 115 NONAME ; public: virtual void __thiscall CWindowGc::DrawPolyLine(class TPoint const *,int) + call_vector_116 @ 116 NONAME ; public: virtual int __thiscall CWindowGc::DrawPolygon(class CArrayFix const *,enum CGraphicsContext::TFillRule) + call_vector_117 @ 117 NONAME ; public: virtual int __thiscall CWindowGc::DrawPolygon(class TPoint const *,int,enum CGraphicsContext::TFillRule) + call_vector_118 @ 118 NONAME ; public: virtual void __thiscall CWindowGc::DrawRect(class TRect const &) + call_vector_119 @ 119 NONAME ; public: virtual void __thiscall CWindowGc::DrawRoundRect(class TRect const &,class TSize const &) + call_vector_120 @ 120 NONAME ; public: virtual void __thiscall CWindowGc::DrawText(class TDesC16 const &,class TPoint const &) + call_vector_121 @ 121 NONAME ; public: virtual void __thiscall CWindowGc::DrawText(class TDesC16 const &,class TRect const &,int,enum CGraphicsContext::TTextAlign,int) + call_vector_122 @ 122 NONAME ; public: virtual void __thiscall CWindowGc::DrawTextVertical(class TDesC16 const &,class TPoint const &,int) + call_vector_123 @ 123 NONAME ; public: virtual void __thiscall CWindowGc::DrawTextVertical(class TDesC16 const &,class TRect const &,int,int,enum CGraphicsContext::TTextAlign,int) + call_vector_124 @ 124 NONAME ; public: int __thiscall CWsBitmap::Duplicate(int) + call_vector_125 @ 125 NONAME ; public: void __thiscall RWindowBase::EnableBackup(unsigned int) + call_vector_126 @ 126 NONAME ; public: int __thiscall RWindowTreeNode::EnableGroupChangeEvents(void) + call_vector_127 @ 127 NONAME ; public: int __thiscall RWindowTreeNode::EnableModifierChangedEvents(unsigned int,enum TEventControl) + call_vector_128 @ 128 NONAME ; public: int __thiscall RWindowTreeNode::EnableOnEvents(enum TEventControl) + call_vector_129 @ 129 NONAME ; public: int __thiscall RWindowTreeNode::EnableErrorMessages(enum TEventControl) + call_vector_130 @ 130 NONAME ; public: void __thiscall RWindowBase::EnablePointerMoveBuffer(void) + call_vector_131 @ 131 NONAME ; public: void __thiscall RWindowGroup::EnableReceiptOfFocus(int) + call_vector_132 @ 132 NONAME ; public: void __thiscall RWindow::EndRedraw(void) + call_vector_133 @ 133 NONAME ; public: void __thiscall RWsSession::EventReady(class TRequestStatus *) + call_vector_134 @ 134 NONAME ; public: void __thiscall RWsSession::EventReadyCancel(void) + call_vector_135 @ 135 NONAME ; int RWsSession::FetchMessage(class TUid &, class TPtr8 &, class TWsEvent const &) const + call_vector_136 @ 136 NONAME ; int RWsSession::FindWindowGroupIdentifier(int, class TDesC16 const &, int) const + call_vector_137 @ 137 NONAME ; int RWsSession::FindWindowGroupIdentifier(int, class TThreadId) const + call_vector_138 @ 138 NONAME ; public: void __thiscall RWsSession::Flush(void) + call_vector_139 @ 139 NONAME ; public: virtual int __thiscall CWsScreenDevice::FontHeightInPixels(int,int)const + call_vector_140 @ 140 NONAME ; public: virtual int __thiscall CWsScreenDevice::FontHeightInTwips(int,int)const + call_vector_141 @ 141 NONAME ; public: void __thiscall RWindowBase::FreePointerMoveBuffer(void) + call_vector_142 @ 142 NONAME ; public: void __thiscall RWsSession::FreeSystemPointerCursorList(void) + call_vector_143 @ 143 NONAME ; public: int __thiscall RWindowTreeNode::FullOrdinalPosition(void)const + call_vector_144 @ 144 NONAME ; public: class TRgb __thiscall RWsSession::GetBackgroundColor(void)const + call_vector_145 @ 145 NONAME ; int RWsSession::GetDefaultOwningWindow(void) const + call_vector_146 @ 146 NONAME ; void RWsSession::GetDoubleClickSettings(class TTimeIntervalMicroSeconds32 &, int &) const + call_vector_147 @ 147 NONAME ; void RWsSession::GetEvent(class TWsEvent &) const + call_vector_148 @ 148 NONAME ; int RWsSession::GetFocusWindowGroup(void) const + call_vector_149 @ 149 NONAME ; public: int __thiscall CWsScreenDevice::GetFontById(class CFont * &,class TUid,class TAlgStyle const &) + call_vector_150 @ 150 NONAME ; void RWindow::GetInvalidRegion(class RRegion &) const + call_vector_151 @ 151 NONAME ; void RWsSession::GetKeyboardRepeatRate(class TTimeIntervalMicroSeconds32 &, class TTimeIntervalMicroSeconds32 &) const + call_vector_152 @ 152 NONAME ; public: int __thiscall RWsSession::GetModifierState(void)const + call_vector_153 @ 153 NONAME ; public: virtual int __thiscall CWsScreenDevice::GetNearestFontInPixels(class CFont * &,class TFontSpec const &) + call_vector_154 @ 154 NONAME ; public: virtual int __thiscall CWsScreenDevice::GetNearestFontInTwips(class CFont * &,class TFontSpec const &) + call_vector_155 @ 155 NONAME ; public: virtual int __thiscall CWsScreenDevice::GetPalette(class CPalette * &)const + call_vector_156 @ 156 NONAME ; public: virtual void __thiscall CWsScreenDevice::GetPixel(class TRgb &,class TPoint const &)const + call_vector_157 @ 157 NONAME ; void RWsSession::GetPriorityKey(class TWsPriorityKeyEvent &) const + call_vector_158 @ 158 NONAME ; public: void __thiscall RWsSession::GetRedraw(class TWsRedrawEvent &) + call_vector_159 @ 159 NONAME ; public: virtual void __thiscall CWsScreenDevice::GetScanLine(class TDes8 &,class TPoint const &,int,enum TDisplayMode)const + call_vector_160 @ 160 NONAME ; int RWsSession::GetWindowGroupClientThreadId(int, class TThreadId &) const + call_vector_161 @ 161 NONAME ; int RWsSession::GetWindowGroupHandle(int) const + call_vector_162 @ 162 NONAME ; int RWsSession::GetWindowGroupNameFromIdentifier(int, class TDes16 &) const + call_vector_163 @ 163 NONAME ; int RWsSession::GetWindowGroupOrdinalPriority(int) const + call_vector_164 @ 164 NONAME ; public: int __thiscall RWsSession::HeapCount(void)const + call_vector_165 @ 165 NONAME ; public: void __thiscall RWsSession::HeapSetFail(int,int) + call_vector_166 @ 166 NONAME ; public: virtual int __thiscall CWsScreenDevice::HorizontalPixelsToTwips(int)const + call_vector_167 @ 167 NONAME ; public: virtual int __thiscall CWsScreenDevice::HorizontalTwipsToPixels(int)const + call_vector_168 @ 168 NONAME ; public: int __thiscall RWindowGroup::Identifier(void)const + call_vector_169 @ 169 NONAME ; public: class TPoint __thiscall RWindowBase::InquireOffset(class RWindowTreeNode const &)const + call_vector_170 @ 170 NONAME ; public: void __thiscall CWsBitmap::InternalizeL(class RReadStream &) + call_vector_171 @ 171 NONAME ; public: void __thiscall RWindow::Invalidate(class TRect const &) + call_vector_172 @ 172 NONAME ; public: void __thiscall RWindow::Invalidate(void) + call_vector_173 @ 173 NONAME ; public: int __thiscall CWsBitmap::Load(class TDesC16 const &,long,int) + call_vector_174 @ 174 NONAME ; public: int __thiscall RAnimDll::Load(class TDesC16 const &) + call_vector_175 @ 175 NONAME ; public: void __thiscall RWsSession::LogMessage(class TBuf<128> const &) + call_vector_176 @ 176 NONAME ; public: void __thiscall RBackedUpWindow::MaintainBackup(void) + call_vector_177 @ 177 NONAME ; public: virtual void __thiscall CWindowGc::MapColors(class TRect const &,class TRgb const *,int,int) + call_vector_178 @ 178 NONAME ; public: virtual void __thiscall CWindowGc::MoveBy(class TPoint const &) + call_vector_179 @ 179 NONAME ; public: virtual void __thiscall CWindowGc::MoveTo(class TPoint const &) + call_vector_180 @ 180 NONAME ; public: int __thiscall RWindowGroup::Name(class TDes16 &)const + call_vector_181 @ 181 NONAME ; public: unsigned long __thiscall RWindowTreeNode::NextSibling(void)const + call_vector_182 @ 182 NONAME ; public: virtual int __thiscall CWsScreenDevice::NumTypefaces(void)const + call_vector_183 @ 183 NONAME ; public: int __thiscall RWsSession::NumWindowGroups(int)const + call_vector_184 @ 184 NONAME ; public: int __thiscall RWsSession::NumWindowGroups(void)const + call_vector_185 @ 185 NONAME ; public: int __thiscall RWindowTreeNode::OrdinalPosition(void)const + call_vector_186 @ 186 NONAME ; public: virtual void __thiscall CWsScreenDevice::PaletteAttributes(int &,int &)const + call_vector_187 @ 187 NONAME ; public: unsigned long __thiscall RWindowTreeNode::Parent(void)const + call_vector_188 @ 188 NONAME ; public: void __thiscall RWsSession::PasswordEntered(void) + call_vector_189 @ 189 NONAME ; public: int __thiscall RWindowBase::PasswordWindow(enum TPasswordMode) + call_vector_190 @ 190 NONAME ; public: virtual void __thiscall CWindowGc::Plot(class TPoint const &) + call_vector_191 @ 191 NONAME ; public: void __thiscall RWindowBase::PointerFilter(unsigned long,unsigned long) + call_vector_192 @ 192 NONAME ; public: class TRect __thiscall CWsScreenDevice::PointerRect(void)const + call_vector_193 @ 193 NONAME ; public: class TPoint __thiscall RWindowBase::Position(void)const + call_vector_194 @ 194 NONAME ; public: unsigned long __thiscall RWindowTreeNode::PrevSibling(void)const + call_vector_195 @ 195 NONAME ; public: void __thiscall RWsSession::PriorityKeyReady(class TRequestStatus *) + call_vector_196 @ 196 NONAME ; public: void __thiscall RWsSession::PriorityKeyReadyCancel(void) + call_vector_197 @ 197 NONAME ; public: void __thiscall RWsSession::PurgePointerEvents(void) + call_vector_198 @ 198 NONAME ; int CWsScreenDevice::RectCompare(class TRect const &, class TRect const &) const + call_vector_199 @ 199 NONAME ; public: void __thiscall RWsSession::RedrawReady(class TRequestStatus *) + call_vector_200 @ 200 NONAME ; public: void __thiscall RWsSession::RedrawReadyCancel(void) + call_vector_201 @ 201 NONAME ; public: virtual void __thiscall CWsScreenDevice::ReleaseFont(class CFont *) + call_vector_202 @ 202 NONAME ; public: void __thiscall RWindowBase::RemoveAllKeyRects(void) + call_vector_203 @ 203 NONAME ; public: virtual void __thiscall CWsScreenDevice::RemoveFile(int) + call_vector_204 @ 204 NONAME ; public: void __thiscall RWindowGroup::RemovePriorityKey(unsigned int,unsigned int,unsigned int) + call_vector_205 @ 205 NONAME ; public: void __thiscall RWindowBase::RequestPointerRepeatEvent(class TTimeIntervalMicroSeconds32,class TRect const &) + call_vector_206 @ 206 NONAME ; public: virtual void __thiscall CWindowGc::Reset(void) + call_vector_207 @ 207 NONAME ; public: void __thiscall CWsBitmap::Reset(void) + call_vector_208 @ 208 NONAME ; int RWsSession::ResourceCount(void) const + call_vector_209 @ 209 NONAME ; public: int __thiscall RWsSession::RestoreDefaultHotKey(enum THotKey) + call_vector_210 @ 210 NONAME ; int RWindowBase::RetrievePointerMoveBuffer(class TDes8 &) const + call_vector_211 @ 211 NONAME ; public: void __thiscall RDrawableWindow::Scroll(class TPoint const &) + call_vector_212 @ 212 NONAME ; public: void __thiscall RDrawableWindow::Scroll(class TPoint const &,class TRect const &) + call_vector_213 @ 213 NONAME ; public: void __thiscall RDrawableWindow::Scroll(class TRect const &,class TPoint const &,class TRect const &) + call_vector_214 @ 214 NONAME ; public: void __thiscall RDrawableWindow::Scroll(class TRect const &,class TPoint const &) + call_vector_215 @ 215 NONAME ; public: int __thiscall RWsSession::SendEventToWindowGroup(int,class TWsEvent const &) + call_vector_216 @ 216 NONAME ; public: int __thiscall RWsSession::SendMessageToWindowGroup(int,class TUid,class TDesC8 const &) + call_vector_217 @ 217 NONAME ; public: int __thiscall RWsSession::SetAutoFlush(int) + call_vector_218 @ 218 NONAME ; public: void __thiscall RWindow::SetBackgroundColor(class TRgb) + call_vector_219 @ 219 NONAME ; public: void __thiscall RWindow::SetBackgroundColor(void) + call_vector_220 @ 220 NONAME ; public: void __thiscall RWsSession::SetBackgroundColor(class TRgb) + call_vector_221 @ 221 NONAME ; public: virtual void __thiscall CWindowGc::SetBrushColor(class TRgb const &) + call_vector_222 @ 222 NONAME ; public: virtual void __thiscall CWindowGc::SetBrushOrigin(class TPoint const &) + call_vector_223 @ 223 NONAME ; public: virtual void __thiscall CWindowGc::SetBrushStyle(enum CGraphicsContext::TBrushStyle) + call_vector_224 @ 224 NONAME ; public: virtual void __thiscall CWindowGc::SetCharJustification(int,int) + call_vector_225 @ 225 NONAME ; public: virtual void __thiscall CWindowGc::SetClippingRect(class TRect const &) + call_vector_226 @ 226 NONAME ; public: virtual int __thiscall CWindowGc::SetClippingRegion(class TRegion const &) + call_vector_227 @ 227 NONAME ; public: void __thiscall RBlankWindow::SetColor(class TRgb) + call_vector_228 @ 228 NONAME ; public: int __thiscall RWindowBase::SetCornerType(enum TCornerType,int) + call_vector_229 @ 229 NONAME ; public: void __thiscall RWindowTreeNode::SetCustomPointerCursor(class RWsPointerCursor const &) + call_vector_230 @ 230 NONAME ; public: virtual void __thiscall CWindowGc::SetDitherOrigin(class TPoint const &) + call_vector_231 @ 231 NONAME ; public: int __thiscall RWsSession::SetDoubleClick(class TTimeIntervalMicroSeconds32 const &,int) + call_vector_232 @ 232 NONAME ; public: virtual void __thiscall CWindowGc::SetDrawMode(enum CGraphicsContext::TDrawMode) + call_vector_233 @ 233 NONAME ; public: void __thiscall RBlankWindow::SetExtent(class TPoint const &,class TSize const &) + call_vector_234 @ 234 NONAME ; public: void __thiscall RWindow::SetExtent(class TPoint const &,class TSize const &) + call_vector_235 @ 235 NONAME ; public: int __thiscall RWindowBase::SetExtentErr(class TPoint const &,class TSize const &) + call_vector_236 @ 236 NONAME ; public: int __thiscall RWsSession::SetHotKey(enum THotKey,unsigned int,unsigned int,unsigned int) + call_vector_237 @ 237 NONAME ; public: int __thiscall RWsSession::SetKeyboardRepeatRate(class TTimeIntervalMicroSeconds32 const &,class TTimeIntervalMicroSeconds32 const &) + call_vector_238 @ 238 NONAME ; public: int __thiscall RWsSession::SetModifierState(enum TEventModifier,enum TModifierState) + call_vector_239 @ 239 NONAME ; public: int __thiscall RWindowGroup::SetName(class TDesC16 const &) + call_vector_240 @ 240 NONAME ; public: void __thiscall RWindowTreeNode::SetOrdinalPosition(int) + call_vector_241 @ 241 NONAME ; public: void __thiscall RWindowTreeNode::SetOrdinalPosition(int,int) + call_vector_242 @ 242 NONAME ; public: void __thiscall RWindowGroup::SetOrdinalPriorityAdjust(int) + call_vector_243 @ 243 NONAME ; public: virtual void __thiscall CWindowGc::SetOrigin(class TPoint const &) + call_vector_244 @ 244 NONAME ; public: void __thiscall RWindowGroup::SetOwningWindowGroup(int) + call_vector_245 @ 245 NONAME ; public: virtual void __thiscall CWsScreenDevice::SetPalette(class CPalette *) + call_vector_246 @ 246 NONAME ; public: virtual void __thiscall CWindowGc::SetPenColor(class TRgb const &) + call_vector_247 @ 247 NONAME ; public: virtual void __thiscall CWindowGc::SetPenSize(class TSize const &) + call_vector_248 @ 248 NONAME ; public: virtual void __thiscall CWindowGc::SetPenStyle(enum CGraphicsContext::TPenStyle) + call_vector_249 @ 249 NONAME ; public: void __thiscall RWindowBase::SetPointerCapture(int) + call_vector_250 @ 250 NONAME ; public: int __thiscall RWindowTreeNode::SetPointerCursor(int) + call_vector_251 @ 251 NONAME ; public: void __thiscall RWindowBase::SetPointerGrab(int) + call_vector_252 @ 252 NONAME ; public: void __thiscall RWindowBase::SetPosition(class TPoint const &) + call_vector_253 @ 253 NONAME ; public: void __thiscall RWsSprite::SetPosition(class TPoint const &) + call_vector_254 @ 254 NONAME ; public: int __thiscall RWindowBase::SetRequiredDisplayMode(enum TDisplayMode) + call_vector_255 @ 255 NONAME ; public: void __thiscall RWindowBase::SetShadowDisabled(int) + call_vector_256 @ 256 NONAME ; public: void __thiscall RWindowBase::SetShadowHeight(int) + call_vector_257 @ 257 NONAME ; public: void __thiscall RWsSession::SetShadowVector(class TPoint const &) + call_vector_258 @ 258 NONAME ; public: int __thiscall RWindowBase::SetShape(class TRegion const &) + call_vector_259 @ 259 NONAME ; public: void __thiscall RBlankWindow::SetSize(class TSize const &) + call_vector_260 @ 260 NONAME ; public: void __thiscall RWindow::SetSize(class TSize const &) + call_vector_261 @ 261 NONAME ; public: int __thiscall RWindowBase::SetSizeErr(class TSize const &) + call_vector_262 @ 262 NONAME ; public: virtual void __thiscall CWindowGc::SetStrikethroughStyle(enum TFontStrikethrough) + call_vector_263 @ 263 NONAME ; public: int __thiscall RWsSession::SetSystemPointerCursor(class RWsPointerCursor const &,int) + call_vector_264 @ 264 NONAME ; public: void __thiscall RWindowGroup::SetTextCursor(class RWindowBase &,class TPoint const &,struct TTextCursor const &) + call_vector_265 @ 265 NONAME ; public: void __thiscall RWindowGroup::SetTextCursor(class RWindowBase &,class TPoint const &,struct TTextCursor const &,class TRect const &) + call_vector_266 @ 266 NONAME ; public: virtual void __thiscall CWindowGc::SetUnderlineStyle(enum TFontUnderline) + call_vector_267 @ 267 NONAME ; public: void __thiscall RWindowBase::SetVisible(int) + call_vector_268 @ 268 NONAME ; public: int __thiscall RWsSession::SetWindowGroupOrdinalPosition(int,int) + call_vector_269 @ 269 NONAME ; public: virtual void __thiscall CWindowGc::SetWordJustification(int,int) + call_vector_270 @ 270 NONAME ; public: class TPoint __thiscall RWsSession::ShadowVector(void)const + call_vector_271 @ 271 NONAME ; public: void __thiscall RWsSession::SimulateRawEvent(class TRawEvent) + call_vector_272 @ 272 NONAME ; public: class TSize __thiscall RWindowBase::Size(void)const + call_vector_273 @ 273 NONAME ; public: virtual class TSize __thiscall CWsScreenDevice::SizeInPixels(void)const + call_vector_274 @ 274 NONAME ; public: virtual class TSize __thiscall CWsScreenDevice::SizeInTwips(void)const + call_vector_275 @ 275 NONAME ; public: void __thiscall RWsSession::SystemInfo(int &,struct RWsSession::SSystemInfo &) + call_vector_276 @ 276 NONAME ; public: void __thiscall RWsSession::TestWrite(int,int,void const *,int) + call_vector_277 @ 277 NONAME ; public: void __thiscall RWsSession::TestWriteReply(int,int,void const *,int) + call_vector_278 @ 278 NONAME ; public: void __thiscall RWsSession::TestWriteReplyP(int,int,void const *,int,class TDes8 *) + call_vector_279 @ 279 NONAME ; public: virtual void __thiscall CWsScreenDevice::TypefaceSupport(class TTypefaceSupport &,int)const + call_vector_280 @ 280 NONAME ; public: void __thiscall RBackedUpWindow::UpdateBackupBitmap(void) + call_vector_281 @ 281 NONAME ; public: int __thiscall RWsSpriteBase::UpdateMember(int,struct TSpriteMember const &) + call_vector_282 @ 282 NONAME ; public: void __thiscall RWsSpriteBase::UpdateMember(int) + call_vector_283 @ 283 NONAME ; public: void __thiscall RBackedUpWindow::UpdateScreen(class TRegion const &) + call_vector_284 @ 284 NONAME ; public: void __thiscall RBackedUpWindow::UpdateScreen(void) + call_vector_285 @ 285 NONAME ; public: virtual void __thiscall CWindowGc::UseBrushPattern(class CFbsBitmap const *) + call_vector_286 @ 286 NONAME ; public: virtual void __thiscall CWindowGc::UseFont(class CFont const *) + call_vector_287 @ 287 NONAME ; class TVersion RWsSession::Version(void) const + call_vector_288 @ 288 NONAME ; public: virtual int __thiscall CWsScreenDevice::VerticalPixelsToTwips(int)const + call_vector_289 @ 289 NONAME ; public: virtual int __thiscall CWsScreenDevice::VerticalTwipsToPixels(int)const + call_vector_290 @ 290 NONAME ; int RWsSession::WindowGroupList(int, class CArrayFixFlat *) const + call_vector_291 @ 291 NONAME ; int RWsSession::WindowGroupList(class CArrayFixFlat *) const + call_vector_292 @ 292 NONAME ; public: int __thiscall RWsSession::RequestOffEvents(int,class RWindowTreeNode *) + call_vector_293 @ 293 NONAME ; public: void __thiscall RWindowTreeNode::__DbgTestInvariant(void)const + call_vector_294 @ 294 NONAME ; public: void __thiscall RWindowGroup::DisableScreenChangeEvents(void) + call_vector_295 @ 295 NONAME ; public: int __thiscall RWindowGroup::EnableScreenChangeEvents(void) + call_vector_296 @ 296 NONAME ; public: void __thiscall RWindowBase::FadeBehind(int) + call_vector_297 @ 297 NONAME ; public: void __thiscall CWsScreenDevice::GetDefaultScreenSizeAndRotation(struct TPixelsAndRotation &)const + call_vector_298 @ 298 NONAME ; public: void __thiscall CWsScreenDevice::GetDefaultScreenSizeAndRotation(struct TPixelsTwipsAndRotation &)const + call_vector_299 @ 299 NONAME ; enum TDisplayMode RWindowBase::DisplayMode(void) const + call_vector_300 @ 300 NONAME ; public: enum TDisplayMode __thiscall RWsSession::GetDefModeMaxNumColors(int &,int &)const + call_vector_301 @ 301 NONAME ; public: void __thiscall CWsScreenDevice::GetScreenModeSizeAndRotation(int,struct TPixelsAndRotation &)const + call_vector_302 @ 302 NONAME ; public: void __thiscall CWsScreenDevice::GetScreenModeSizeAndRotation(int,struct TPixelsTwipsAndRotation &)const + call_vector_303 @ 303 NONAME ; public: int __thiscall CWsScreenDevice::NumScreenModes(void)const + call_vector_304 @ 304 NONAME ; public: enum TScreenModeEnforcement __thiscall CWsScreenDevice::ScreenModeEnforcement(void)const + call_vector_305 @ 305 NONAME ; public: virtual void __thiscall CWindowGc::SetFaded(int) + call_vector_306 @ 306 NONAME ; public: void __thiscall RWindowTreeNode::SetFaded(int,enum RWindowTreeNode::TFadeControl) + call_vector_307 @ 307 NONAME ; public: void __thiscall RWindowTreeNode::SetNonFading(int) + call_vector_308 @ 308 NONAME ; public: void __thiscall CWsScreenDevice::SetScreenMode(int) + call_vector_309 @ 309 NONAME ; public: void __thiscall CWsScreenDevice::SetScreenModeEnforcement(enum TScreenModeEnforcement)const + call_vector_310 @ 310 NONAME ; public: void __thiscall CWsScreenDevice::SetScreenSizeAndRotation(struct TPixelsAndRotation const &) + call_vector_311 @ 311 NONAME ; public: void __thiscall CWsScreenDevice::SetScreenSizeAndRotation(struct TPixelsTwipsAndRotation const &) + call_vector_312 @ 312 NONAME ; public: void __thiscall RWindowGroup::SimulatePointerEvent(class TRawEvent) + call_vector_313 @ 313 NONAME ; public: int __thiscall RWsSession::GetColorModeList(class CArrayFixFlat *)const + call_vector_314 @ 314 NONAME ; int RWindowBase::IsFaded(void) const + call_vector_315 @ 315 NONAME ; int RWindowBase::IsNonFading(void) const + call_vector_316 @ 316 NONAME ; protected: int __thiscall RAnim::Construct(class RWsSprite const &,int,class TDesC8 const &) + call_vector_317 @ 317 NONAME ; public: int __thiscall CWsScreenDevice::GetRotationsList(int,class CArrayFixFlat *)const + call_vector_318 @ 318 NONAME ; public: int __thiscall RWindowTreeNode::OrdinalPriority(void)const + call_vector_319 @ 319 NONAME ; public: int __thiscall RWsSession::SendEventToAllWindowGroups(class TWsEvent const &) + call_vector_320 @ 320 NONAME ; public: int __thiscall RWsSession::SendEventToAllWindowGroups(int,class TWsEvent const &) + call_vector_321 @ 321 NONAME ; public: void __thiscall CWsScreenDevice::SetCurrentRotations(int,enum CFbsBitGc::TGraphicsOrientation)const + call_vector_322 @ 322 NONAME ; public: void __thiscall RWsSession::SimulateKeyEvent(struct TKeyEvent) + call_vector_323 @ 323 NONAME ; public: void __thiscall RWsSession::SetRemoveKeyCode(int) + call_vector_324 @ 324 NONAME ; public: void __thiscall RWsSession::ClearDefaultSystemPointerCursor(void) + call_vector_325 @ 325 NONAME ; public: void __thiscall RWindowTreeNode::ClearPointerCursor(void) + call_vector_326 @ 326 NONAME ; public: class TRect __thiscall RWsSession::PointerCursorArea(int)const + call_vector_327 @ 327 NONAME ; public: class TRect __thiscall RWsSession::PointerCursorArea(void)const + call_vector_328 @ 328 NONAME ; public: enum TPointerCursorMode __thiscall RWsSession::PointerCursorMode(void)const + call_vector_329 @ 329 NONAME ; public: class TPoint __thiscall RWsSession::PointerCursorPosition(void)const + call_vector_330 @ 330 NONAME ; public: void __thiscall RWsSession::SetDefaultSystemPointerCursor(int) + call_vector_331 @ 331 NONAME ; public: void __thiscall RWsSession::SetPointerCursorArea(class TRect const &) + call_vector_332 @ 332 NONAME ; public: void __thiscall RWsSession::SetPointerCursorArea(int,class TRect const &) + call_vector_333 @ 333 NONAME ; public: void __thiscall RWsSession::SetPointerCursorMode(enum TPointerCursorMode) + call_vector_334 @ 334 NONAME ; public: int __thiscall RWsSession::SetPointerCursorPosition(class TPoint const &) + call_vector_335 @ 335 NONAME ; void RWsSession::SimulateXyInputType(int) + call_vector_336 @ 336 NONAME ; public: int __thiscall RWindowBase::MoveToGroup(int) + call_vector_337 @ 337 NONAME ; public: int __thiscall RWsSession::SendMessageToAllWindowGroups(int,class TUid,class TDesC8 const &) + call_vector_338 @ 338 NONAME ; public: int __thiscall RWsSession::SendMessageToAllWindowGroups(class TUid,class TDesC8 const &) + call_vector_339 @ 339 NONAME ; public: void __thiscall RWindowTreeNode::DisableFocusChangeEvents(void) + call_vector_340 @ 340 NONAME ; public: int __thiscall RWindowTreeNode::EnableFocusChangeEvents(void) + call_vector_341 @ 341 NONAME ; public: void __thiscall RWsSession::SetDefaultFadingParameters(unsigned char,unsigned char) + call_vector_342 @ 342 NONAME ; public: void __thiscall RWindowTreeNode::SetFaded(int,enum RWindowTreeNode::TFadeControl,unsigned char,unsigned char) + call_vector_343 @ 343 NONAME ; public: virtual void __thiscall CWindowGc::SetFadingParameters(unsigned char,unsigned char) + call_vector_344 @ 344 NONAME ; public: void __thiscall RWsSession::PrepareForSwitchOff(void) + call_vector_345 @ 345 NONAME ; public: int __thiscall CWsScreenDevice::SetCustomPalette(class CPalette const *) + call_vector_346 @ 346 NONAME ; public: __thiscall RDirectScreenAccess::RDirectScreenAccess(class RWsSession &) + call_vector_347 @ 347 NONAME ; public: __thiscall RDirectScreenAccess::RDirectScreenAccess(void) + call_vector_348 @ 348 NONAME ; public: void __thiscall RDirectScreenAccess::Cancel(void) + call_vector_349 @ 349 NONAME ; public: void __thiscall RDirectScreenAccess::Close(void) + call_vector_350 @ 350 NONAME ; public: void __thiscall RDirectScreenAccess::Completed(void) + call_vector_351 @ 351 NONAME ; public: int __thiscall RDirectScreenAccess::Construct(void) + call_vector_352 @ 352 NONAME ; public: static class CDirectScreenAccess * __cdecl CDirectScreenAccess::NewL(class RWsSession &,class CWsScreenDevice &,class RWindowBase &,class MDirectScreenAccess &) + call_vector_353 @ 353 NONAME ; public: int __thiscall RDirectScreenAccess::Request(class RRegion * &,class TRequestStatus &,class RWindowBase const &) + call_vector_354 @ 354 NONAME ; public: void __thiscall CDirectScreenAccess::StartL(void) + call_vector_355 @ 355 NONAME ; public: void __thiscall RWsSession::SetBufferSizeL(int) + call_vector_356 @ 356 NONAME ; public: int __thiscall RWsSession::SetSystemFaded(int) + call_vector_357 @ 357 NONAME ; public: int __thiscall RWsSession::SetSystemFaded(int,unsigned char,unsigned char) + call_vector_358 @ 358 NONAME ; public: void __thiscall RWindowTreeNode::DisableGroupListChangeEvents(void) + call_vector_359 @ 359 NONAME ; public: int __thiscall RWindowTreeNode::EnableGroupListChangeEvents(void) + call_vector_360 @ 360 NONAME ; public: int __thiscall RSoundPlugIn::Construct(class TUid) + call_vector_361 @ 361 NONAME ; public: void __thiscall RSoundPlugIn::Destroy(void) + call_vector_362 @ 362 NONAME ; int RSoundPlugIn::IsLoaded(int &) const + call_vector_363 @ 363 NONAME ; public: int __thiscall RSoundPlugIn::Load(class TDesC16 const &) + call_vector_364 @ 364 NONAME ; public: int __thiscall RSoundPlugIn::Unload(void) + call_vector_365 @ 365 NONAME ; public: int __thiscall CWsScreenDevice::CurrentScreenMode(void)const + call_vector_366 @ 366 NONAME ; public: void __thiscall RWindowGroup::CancelCaptureLongKey(long) + call_vector_367 @ 367 NONAME ; public: long __thiscall RWindowGroup::CaptureLongKey(unsigned int,unsigned int,unsigned int,unsigned int,int,unsigned int) + call_vector_368 @ 368 NONAME ; public: long __thiscall RWindowGroup::CaptureLongKey(class TTimeIntervalMicroSeconds32,unsigned int,unsigned int,unsigned int,unsigned int,int,unsigned int) + call_vector_369 @ 369 NONAME ; public: int __thiscall RWsSession::SendEventToOneWindowGroupsPerClient(class TWsEvent const &) + call_vector_370 @ 370 NONAME ; int RSoundPlugIn::KeyClickEnabled(void) const + call_vector_371 @ 371 NONAME ; int RSoundPlugIn::PenClickEnabled(void) const + call_vector_372 @ 372 NONAME ; public: void __thiscall RSoundPlugIn::SetKeyClick(int) + call_vector_373 @ 373 NONAME ; public: void __thiscall RSoundPlugIn::SetPenClick(int) + call_vector_374 @ 374 NONAME ; public: long __thiscall RWindowGroup::CaptureKey(unsigned int,unsigned int,unsigned int,int) + call_vector_375 @ 375 NONAME ; public: long __thiscall RWindowGroup::CaptureKeyUpAndDowns(unsigned int,unsigned int,unsigned int,int) + call_vector_376 @ 376 NONAME ; public: void __thiscall RWsSession::LogCommand(enum RWsSession::TLoggingCommand) + call_vector_377 @ 377 NONAME ; public: __thiscall RSoundPlugIn::RSoundPlugIn(class RWsSession &) + call_vector_378 @ 378 NONAME ; public: __thiscall RSoundPlugIn::RSoundPlugIn(void) + call_vector_379 @ 379 NONAME ; public: void __thiscall RSoundPlugIn::Close(void) + call_vector_380 @ 380 NONAME ; public: int __thiscall RSoundPlugIn::CommandReply(int,class TPtrC8 const &) + call_vector_381 @ 381 NONAME ; public: int __thiscall RWsSession::SetCustomTextCursor(int,class TArray const &,unsigned int,enum RWsSession::TCustomTextCursorAlignment) + call_vector_382 @ 382 NONAME ; public: void __thiscall RWindow::HandleTransparencyUpdate(void) + call_vector_383 @ 383 NONAME ; public: int __thiscall RWindow::SetTransparencyBitmap(class CFbsBitmap const &) + call_vector_384 @ 384 NONAME ; public: int __thiscall RWindow::SetTransparencyFactor(class TRgb const &) + call_vector_385 @ 385 NONAME ; public: void __thiscall RWindow::SetNonTransparent(void) + call_vector_386 @ 386 NONAME ; public: int __thiscall RWsSession::TestWriteReplyByProvidingRemoteReadAccess(int,int,class TDesC8 const &,class TDesC16 const &) + call_vector_387 @ 387 NONAME ; public: int __thiscall RWsSession::TestWriteReplyByProvidingRemoteReadAccess(int,int,class TDesC8 const &,class TDesC8 const &) + call_vector_388 @ 388 NONAME ; int RAnim::CommandReply(int, class TDesC8 const &, class TIpcArgs const &) + call_vector_389 @ 389 NONAME ; int RAnim::Construct(class RWindowBase const &, int, class TDesC8 const &, class TIpcArgs const &) + call_vector_390 @ 390 NONAME ; int RAnim::Construct(class RWsSprite const &, int, class TDesC8 const &, class TIpcArgs const &) + call_vector_391 @ 391 NONAME ; void RAnim::AsyncCommandReply(class TRequestStatus &, int, class TIpcArgs const &) + call_vector_392 @ 392 NONAME ; public: class TPoint __thiscall RWindowBase::AbsPosition(void)const + call_vector_393 @ 393 NONAME ; public: int __thiscall CWsScreenDevice::RectCompare(class TRect const &,class TRect const &,unsigned int)const + call_vector_394 @ 394 NONAME ; public: class TPoint __thiscall CWsScreenDevice::GetDefaultScreenModeOrigin(void)const + call_vector_395 @ 395 NONAME ; public: class TPoint __thiscall CWsScreenDevice::GetScreenModeOrigin(int)const + call_vector_396 @ 396 NONAME ; void RWindow::EnableRedrawStore(int) + call_vector_397 @ 397 NONAME ; void CWindowGc::AlphaBlendBitmaps(class TPoint const &, class CFbsBitmap const *, class TRect const &, class CFbsBitmap const *, class TPoint const &) + call_vector_398 @ 398 NONAME ; void CWindowGc::AlphaBlendBitmaps(class TPoint const &, class CWsBitmap const *, class TRect const &, class CWsBitmap const *, class TPoint const &) + call_vector_399 @ 399 NONAME ; void CWindowGc::SetOpaque(int) + call_vector_400 @ 400 NONAME ; public: class TSizeMode __thiscall CWsScreenDevice::GetCurrentScreenModeAttributes(void)const + call_vector_401 @ 401 NONAME ; public: class TPoint __thiscall CWsScreenDevice::GetCurrentScreenModeScaledOrigin(void)const + call_vector_402 @ 402 NONAME ; public: class TSize __thiscall CWsScreenDevice::GetCurrentScreenModeScale(void)const + call_vector_403 @ 403 NONAME ; public: class TPoint __thiscall CWsScreenDevice::GetScreenModeScaledOrigin(int)const + call_vector_404 @ 404 NONAME ; public: class TSize __thiscall CWsScreenDevice::GetScreenModeScale(int)const + call_vector_405 @ 405 NONAME ; public: void __thiscall CWsScreenDevice::SetAppScreenMode(int) + call_vector_406 @ 406 NONAME ; public: void __thiscall CWsScreenDevice::SetCurrentScreenModeAttributes(class TSizeMode const &) + call_vector_407 @ 407 NONAME ; void CWindowGc::DrawBitmapMasked(class TRect const &, class CFbsBitmap const *, class TRect const &, class CFbsBitmap const *, int) + call_vector_408 @ 408 NONAME ; int CWsScreenDevice::Construct(int) + call_vector_409 @ 409 NONAME ; int CWsScreenDevice::GetScreenNumber(void) const + call_vector_410 @ 410 NONAME ; int RWsSession::GetFocusScreen(void) const + call_vector_411 @ 411 NONAME ; int RWsSession::SetFocusScreen(int) + call_vector_412 @ 412 NONAME ; public: int __thiscall RWindowGroup::ConstructChildApp(int,unsigned long) + call_vector_413 @ 413 NONAME ; public: int __thiscall RWindowGroup::ConstructChildApp(int,unsigned long,int) + call_vector_414 @ 414 NONAME ; int RWsSession::WindowGroupList(int, class RArray *) const + call_vector_415 @ 415 NONAME ; int RWsSession::WindowGroupList(class RArray *) const + call_vector_416 @ 416 NONAME ; public: void __thiscall RWindowGroup::AllowProcessToCreateChildWindowGroups(class TUid) + call_vector_417 @ 417 NONAME ; public: int __thiscall RWindow::SetTransparencyWsBitmap(class CWsBitmap const &) + call_vector_418 @ 418 NONAME ; int CWsScreenDevice::GetScreenSizeModeList(class RArray *) const + call_vector_419 @ 419 NONAME ; int CWsScreenDevice::GetNearestFontToDesignHeightInPixels(class CFont * &, class TFontSpec const &) + call_vector_420 @ 420 NONAME ; int CWsScreenDevice::GetNearestFontToDesignHeightInTwips(class CFont * &, class TFontSpec const &) + call_vector_421 @ 421 NONAME ; int CWsScreenDevice::GetNearestFontToMaxHeightInPixels(class CFont * &, class TFontSpec const &, int) + call_vector_422 @ 422 NONAME ; int CWsScreenDevice::GetNearestFontToMaxHeightInTwips(class CFont * &, class TFontSpec const &, int) + call_vector_423 @ 423 NONAME ; void RWindowTreeNode::DisableVisibilityChangeEvents(void) + call_vector_424 @ 424 NONAME ; int RWindowTreeNode::EnableVisibilityChangeEvents(void) + call_vector_425 @ 425 NONAME ; int RWindow::SetTransparencyAlphaChannel(void) + call_vector_426 @ 426 NONAME ; void RBlankWindow::SetColor(void) + call_vector_427 @ 427 NONAME ; int RWsSession::SetClientCursorMode(enum TPointerCursorMode) + call_vector_428 @ 428 NONAME ; class TRect RDrawableWindow::GetDrawRect(void) const + call_vector_429 @ 429 NONAME + call_vector_430 @ 430 NONAME + call_vector_431 @ 431 NONAME ; void CWindowGc::Reserved_CWindowGc_3(void) + call_vector_432 @ 432 NONAME ; void CWindowGc::Reserved_CWindowGc_4(void) + call_vector_433 @ 433 NONAME ; void CWindowGc::Reserved_CWindowGc_5(void) + call_vector_434 @ 434 NONAME ; void CWindowGc::Reserved_CBitmapContext_1(void) + call_vector_435 @ 435 NONAME ; void CWindowGc::Reserved_CBitmapContext_2(void) + call_vector_436 @ 436 NONAME ; void CWindowGc::Reserved_CBitmapContext_3(void) + call_vector_437 @ 437 NONAME ; int CWindowGc::APIExtension(class TUid, int*&, int *) + call_vector_438 @ 438 NONAME ; void CWindowGc::Reserved_CGraphicsContext_2(void) + call_vector_439 @ 439 NONAME ; void CWindowGc::DrawBitmapMasked(class TRect const &, class CWsBitmap const *, class TRect const &, class CWsBitmap const *, int) + call_vector_440 @ 440 NONAME ; int RWsSession::Connect(class RFs &) + call_vector_441 @ 441 NONAME ; enum TDisplayMode CWsScreenDevice::GetScreenModeDisplayMode(int const &) const + call_vector_442 @ 442 NONAME ; public: void __thiscall RWsSession::ClearAllRedrawStores(void) + call_vector_443 @ 443 NONAME ; int RWindowTreeNode::WindowGroupId(void) const + call_vector_444 @ 444 NONAME ; int RWindowBase::GetPointerCapturePriority(void) const + call_vector_445 @ 445 NONAME ; void RWindowBase::SetPointerCapturePriority(int) + call_vector_446 @ 446 NONAME ; int RWindow::SetTransparentRegion(class TRegion const &) + call_vector_447 @ 447 NONAME ; int RWindow::SetTransparencyPolicy(enum TWsTransparencyPolicy) + call_vector_448 @ 448 NONAME ; int RWindow::IsRedrawStoreEnabled(void) const + call_vector_449 @ 449 NONAME ; int CWsScreenDevice::SetBackLight(int) + call_vector_450 @ 450 NONAME ; int RWindowGroup::SetOrdinalPositionErr(int, int) + call_vector_451 @ 451 NONAME ; int RWindowGroup::ClearChildGroup(void) + call_vector_452 @ 452 NONAME ; int RWindowGroup::SetChildGroup(int) + call_vector_453 @ 453 NONAME ; class TUid TWsGraphicId::Uid(void) const + call_vector_454 @ 454 NONAME ; CWsGraphic::CWsGraphic(void) + call_vector_455 @ 455 NONAME ; RWsGraphicMsgBuf::RWsGraphicMsgBuf(void) + call_vector_456 @ 456 NONAME ; TWsGraphicMsgFixedBase::TWsGraphicMsgFixedBase(class TUid, int) + call_vector_457 @ 457 NONAME ; CWsGraphic::~CWsGraphic(void) + call_vector_458 @ 458 NONAME ; int RWsGraphicMsgBuf::Append(class TWsGraphicMsgFixedBase const &) + call_vector_459 @ 459 NONAME ; int RWsGraphicMsgBuf::Append(class TUid, class TDesC16 const &) + call_vector_460 @ 460 NONAME ; int RWsGraphicMsgBuf::Append(class TUid, class TDesC8 const &) + call_vector_461 @ 461 NONAME ; int RWsGraphicMsgBuf::Append(class TUid, int, class TPtr8 &) + call_vector_462 @ 462 NONAME ; void CWsGraphic::BaseConstructL(class TWsGraphicId const &, class TUid, class TDesC8 const &) + call_vector_463 @ 463 NONAME ; void CWsGraphic::BaseConstructL(class TUid, class TUid, class TDesC8 const &) + call_vector_464 @ 464 NONAME ; void CWsGraphic::BaseConstructL(class TUid, class TDesC8 const &) + call_vector_465 @ 465 NONAME ; int CWsGraphic::CWsGraphic_Reserved1(void) + call_vector_466 @ 466 NONAME ; int CWsGraphic::CWsGraphic_Reserved2(void) + call_vector_467 @ 467 NONAME ; int CWsGraphic::CWsGraphic_Reserved3(void) + call_vector_468 @ 468 NONAME ; int TWsGraphicId::Compare(class TWsGraphicId const &) const + call_vector_469 @ 469 NONAME ; int RWsGraphicMsgBuf::Count(void) const + call_vector_470 @ 470 NONAME ; class TPtrC8 RWsGraphicMsgBuf::Data(int) const + call_vector_471 @ 471 NONAME ; void CWsGraphic::Destroy(void) + call_vector_472 @ 472 NONAME ; void RWsGraphicMsgBuf::GetFixedMsg(class TWsGraphicMsgFixedBase &, int) const + call_vector_473 @ 473 NONAME ; class TWsGraphicId const & CWsGraphic::Id(void) const + call_vector_474 @ 474 NONAME ; int CWsGraphic::IsActive(void) const + call_vector_475 @ 475 NONAME ; int TWsGraphicId::IsId(void) const + call_vector_476 @ 476 NONAME ; void CWsGraphic::OnClientClose(void) + call_vector_477 @ 477 NONAME ; class TDesC8 const & RWsGraphicMsgBuf::Pckg(void) const + call_vector_478 @ 478 NONAME ; class TPtrC8 TWsGraphicMsgFixedBase::Pckg(void) const + call_vector_479 @ 479 NONAME ; void RWsGraphicMsgBuf::Remove(int) + call_vector_480 @ 480 NONAME ; void CWsGraphic::SendMessage(class TDesC8 const &) const + call_vector_481 @ 481 NONAME ; void TWsGraphicId::Set(int) + call_vector_482 @ 482 NONAME ; void TWsGraphicId::Set(class TUid) + call_vector_483 @ 483 NONAME ; int CWsGraphic::Share(class TSecureId) + call_vector_484 @ 484 NONAME ; int CWsGraphic::ShareGlobally(void) + call_vector_485 @ 485 NONAME ; int TWsGraphicMsgFixedBase::Size(void) const + call_vector_486 @ 486 NONAME ; class TUid RWsGraphicMsgBuf::TypeId(int) const + call_vector_487 @ 487 NONAME ; class TUid TWsGraphicMsgFixedBase::TypeId(void) const + call_vector_488 @ 488 NONAME ; int CWsGraphic::UnShare(class TSecureId) + call_vector_489 @ 489 NONAME ; int CWsGraphic::UnShareGlobally(void) + call_vector_490 @ 490 NONAME ; class TPtr8 RWsGraphicMsgBuf::Data(int) + call_vector_491 @ 491 NONAME ; TWsGraphicId::TWsGraphicId(class TWsGraphicId const &) + call_vector_492 @ 492 NONAME ; TWsGraphicId::TWsGraphicId(int) + call_vector_493 @ 493 NONAME ; int CWsGraphic::Flush(void) const + call_vector_494 @ 494 NONAME ; int RWindowGroup::Construct(unsigned long, int, class CWsScreenDevice *) + call_vector_495 @ 495 NONAME ; int RWindowGroup::Construct(unsigned long, class CWsScreenDevice *) + call_vector_496 @ 496 NONAME ; int RWsSession::GetColorModeList(int, class CArrayFixFlat *) const + call_vector_497 @ 497 NONAME ; enum TDisplayMode RWsSession::GetDefModeMaxNumColors(int, int &, int &) const + call_vector_498 @ 498 NONAME ; int RWsSession::GetDefaultOwningWindow(int) const + call_vector_499 @ 499 NONAME ; int RWsSession::GetFocusWindowGroup(int) const + call_vector_500 @ 500 NONAME ; int RWsSession::NumWindowGroups(int, int) const + call_vector_501 @ 501 NONAME ; int RWsSession::NumberOfScreens(void) const + call_vector_502 @ 502 NONAME ; int RWsSession::WindowGroupList(class CArrayFixFlat *, int, int) const + call_vector_503 @ 503 NONAME ; TWsGraphicId::TWsGraphicId(class TUid) + call_vector_504 @ 504 NONAME ; public: void __thiscall RWsSession::SetMaxBufferSizeL(int) + call_vector_505 @ 505 NONAME ; void RWindow::EnableOSB(int) + call_vector_506 @ 506 NONAME ; int TWsGraphicId::Id(void) const + call_vector_507 @ 507 NONAME ; int TWsGraphicId::IsUid(void) const + call_vector_508 @ 508 NONAME ; void CWsGraphic::SetGraphicExtension(class MWsObjectProvider *) + call_vector_509 @ 509 NONAME ; int CWsGraphic::SendSynchronMessage(class TDesC8 const &) const + call_vector_510 @ 510 NONAME ; int RWsSession::DebugInfo(int, class TDes8 &, int) const + call_vector_511 @ 511 NONAME ; int RWsSession::DebugInfo(int, int) const + call_vector_512 @ 512 NONAME ; unsigned long RWindowTreeNode::ClientHandle(void) const + call_vector_513 @ 513 NONAME ; int RWindowBase::SetBackgroundSurface(class TSurfaceId const &) + call_vector_514 @ 514 NONAME + call_vector_515 @ 515 NONAME ; class TRgb RWindowBase::KeyColor(void) const + call_vector_516 @ 516 NONAME + call_vector_517 @ 517 NONAME + call_vector_518 @ 518 NONAME + call_vector_519 @ 519 NONAME + call_vector_520 @ 520 NONAME + call_vector_521 @ 521 NONAME ; int RWindowBase::GetBackgroundSurface(class TSurfaceConfiguration &) const + call_vector_522 @ 522 NONAME + call_vector_523 @ 523 NONAME ; int RWsSession::PreferredSurfaceConfigurationSize(void) const + call_vector_524 @ 524 NONAME ; int RWsSession::RegisterSurface(int, class TSurfaceId const &) + call_vector_525 @ 525 NONAME + call_vector_526 @ 526 NONAME ; void RWindowBase::RemoveBackgroundSurface(int) + call_vector_527 @ 527 NONAME + call_vector_528 @ 528 NONAME ; int RWindowBase::SetBackgroundSurface(class TSurfaceConfiguration const &, int) + call_vector_529 @ 529 NONAME ; void RWsSession::UnregisterSurface(int, class TSurfaceId const &) + call_vector_530 @ 530 NONAME ; void RWindow::ClearRedrawStore(void) + call_vector_531 @ 531 NONAME ; int RWsSession::Finish(void) + call_vector_532 @ 532 NONAME ; void RWsSession::SyncMsgBuf(void) + call_vector_533 @ 533 NONAME ; class RWsSession & CWsGraphic::Session(void) + call_vector_534 @ 534 NONAME ; int RWindowTreeNode::ScreenNumber(void) const + call_vector_535 @ 535 NONAME ; void TWsEvent::SetPointerNumber(unsigned char) + call_vector_536 @ 536 NONAME ; int TAdvancedPointerEvent::DoGetPointerNumber(void) const + call_vector_537 @ 537 NONAME ; int RWindowBase::ClaimPointerGrab(unsigned char, int) + call_vector_538 @ 538 NONAME ; int RWindowBase::RequestPointerRepeatEvent(class TTimeIntervalMicroSeconds32, class TRect const &, unsigned char) + call_vector_539 @ 539 NONAME ; int RWsSession::GetExitHighPressureThreshold(void) const + call_vector_540 @ 540 NONAME ; int RWsSession::SetCloseProximityThresholds(int, int) + call_vector_541 @ 541 NONAME ; int RWsSession::SetHighPressureThresholds(int, int) + call_vector_542 @ 542 NONAME ; int RWindowBase::CancelPointerRepeatEventRequest(unsigned char) + call_vector_543 @ 543 NONAME ; void TWsEvent::InitAdvancedPointerEvent(enum TPointerEvent::TType, unsigned int, class TPoint3D const &, unsigned char) + call_vector_544 @ 544 NONAME ; int RWsSession::GetExitCloseProximityThreshold(void) const + call_vector_545 @ 545 NONAME ; void RWindowBase::EnableAdvancedPointers(void) + call_vector_546 @ 546 NONAME ; void TWsEvent::SetPointerZ(int) + call_vector_547 @ 547 NONAME ; int TAdvancedPointerEvent::DoGetProximityAndPressure(void) const + call_vector_548 @ 548 NONAME ; int TAdvancedPointerEvent::DoGetProximity(void) const + call_vector_549 @ 549 NONAME ; int TAdvancedPointerEvent::DoGetPressure(void) const + call_vector_550 @ 550 NONAME ; void RWindowGroup::SimulateAdvancedPointerEvent(class TRawEvent) + call_vector_551 @ 551 NONAME ; int RWsSession::GetEnterHighPressureThreshold(void) const + call_vector_552 @ 552 NONAME ; int RWsSession::GetEnterCloseProximityThreshold(void) const + call_vector_553 @ 553 NONAME ; class TAdvancedPointerEvent & TAdvancedPointerEvent::operator=(class TAdvancedPointerEvent const &) + call_vector_554 @ 554 NONAME ; TAdvancedPointerEvent::TAdvancedPointerEvent(class TAdvancedPointerEvent const &) + call_vector_555 @ 555 NONAME ; RWsDrawableSource::RWsDrawableSource(void) + call_vector_556 @ 556 NONAME ; void RWsDrawableSource::Close(void) + call_vector_557 @ 557 NONAME ; int RWsDrawableSource::Create(class RSgDrawable const &) + call_vector_558 @ 558 NONAME ; class TSgDrawableId const & RWsDrawableSource::DrawableId(void) const + call_vector_559 @ 559 NONAME ; void CWindowGc::DrawResource(class TPoint const &, class RWsDrawableSource const &, enum CWindowGc::TGraphicsRotation) + call_vector_560 @ 560 NONAME ; void CWindowGc::DrawResource(class TRect const &, class RWsDrawableSource const &, enum CWindowGc::TGraphicsRotation) + call_vector_561 @ 561 NONAME ; void CWindowGc::DrawResource(class TRect const &, class RWsDrawableSource const &, class TRect const &, enum CWindowGc::TGraphicsRotation) + call_vector_562 @ 562 NONAME ; void CWindowGc::DrawResource(class TRect const &, class RWsDrawableSource const &, class TDesC8 const &) + call_vector_563 @ 563 NONAME ; int RDirectScreenAccess::Construct(int) + call_vector_564 @ 564 NONAME ; class CDirectScreenAccess * CDirectScreenAccess::NewL(class RWsSession &, class CWsScreenDevice &, class RWindowBase &, class MDirectScreenAccess &, int) + call_vector_565 @ 565 NONAME ; int RWsDrawableSource::Create(class RSgDrawable const &, int) + call_vector_566 @ 566 NONAME ; RWsDrawableSource::RWsDrawableSource(class RWsSession &) + call_vector_567 @ 567 NONAME ; int RWsDrawableSource::ScreenNumber(void) const + call_vector_568 @ 568 NONAME ; void * CWsScreenDevice::GetInterface(unsigned int) + call_vector_569 @ 569 NONAME ; int CWsScreenDevice::IsCurrentModeDynamic(void) const + call_vector_570 @ 570 NONAME ; int CWsScreenDevice::IsModeDynamic(int) const + call_vector_571 @ 571 NONAME ; void const * CWindowGc::Interface(class TUid) const + call_vector_572 @ 572 NONAME ; void * CWindowGc::Interface(class TUid) + call_vector_573 @ 573 NONAME ; class RWsSession * RWindowTreeNode::Session(void) const + call_vector_574 @ 574 NONAME ; void RWsSession::HeapSetBurstFail(int, int, int) + call_vector_575 @ 575 NONAME ; void RWsSession::EnableWindowSizeCacheL(void) + call_vector_576 @ 576 NONAME ; void RWindowBase::SetSurfaceTransparency(int) + call_vector_577 @ 577 NONAME ; class TSize RWindowBase::SizeForEgl(void) const call_vector_578 @ 578 NONAME ; int RWindowBase::FixNativeOrientation(void) diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/group/BLD.INF --- a/windowing/windowserver/group/BLD.INF Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/group/BLD.INF Tue Apr 20 16:24:43 2010 +0100 @@ -19,6 +19,8 @@ @file */ +#include + PRJ_PLATFORMS DEFAULT diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/group/Click.MMP --- a/windowing/windowserver/group/Click.MMP Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/group/Click.MMP Tue Apr 20 16:24:43 2010 +0100 @@ -24,7 +24,7 @@ #endif USERINCLUDE ../inc -OS_LAYER_SYSTEMINCLUDE_SYMBIAN +OS_LAYER_SYSTEMINCLUDE LIBRARY euser.lib LIBRARY ws32.lib diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/group/bld.inf --- a/windowing/windowserver/test/t_integ/group/bld.inf Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/group/bld.inf Tue Apr 20 16:24:43 2010 +0100 @@ -15,6 +15,8 @@ // @test // +#include + PRJ_TESTEXPORTS ../rom/t_wservinteg.iby /epoc32/rom/include/t_wservinteg.iby diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/group/t_app1.mmp --- a/windowing/windowserver/test/t_integ/group/t_app1.mmp Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/group/t_app1.mmp Tue Apr 20 16:24:43 2010 +0100 @@ -36,9 +36,10 @@ SOURCE t_app1view.cpp USERINCLUDE ../inc -APP_LAYER_SYSTEMINCLUDE_SYMBIAN -MW_LAYER_SYSTEMINCLUDE_SYMBIAN -OS_LAYER_SYSTEMINCLUDE_SYMBIAN + +APP_LAYER_SYSTEMINCLUDE +MW_LAYER_SYSTEMINCLUDE +OS_LAYER_SYSTEMINCLUDE SOURCEPATH ../resource START RESOURCE t_app1.rss @@ -55,7 +56,7 @@ LIBRARY apparc.lib LIBRARY bitgdi.lib -LIBRARY cinidata.lib +LIBRARY iniparser.lib LIBRARY cone.lib LIBRARY eikcore.lib LIBRARY euser.lib diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/group/t_dsaapp.mmp --- a/windowing/windowserver/test/t_integ/group/t_dsaapp.mmp Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/group/t_dsaapp.mmp Tue Apr 20 16:24:43 2010 +0100 @@ -36,9 +36,9 @@ SOURCE t_dsaappview.cpp USERINCLUDE ../inc -APP_LAYER_SYSTEMINCLUDE_SYMBIAN -MW_LAYER_SYSTEMINCLUDE_SYMBIAN -OS_LAYER_SYSTEMINCLUDE_SYMBIAN +APP_LAYER_SYSTEMINCLUDE +MW_LAYER_SYSTEMINCLUDE +OS_LAYER_SYSTEMINCLUDE SOURCEPATH ../resource START RESOURCE t_dsaapp.rss @@ -54,7 +54,7 @@ LIBRARY apparc.lib LIBRARY bitgdi.lib -LIBRARY cinidata.lib +LIBRARY iniparser.lib LIBRARY cone.lib LIBRARY efsrv.lib LIBRARY eikcore.lib diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/group/t_fpsapp.mmp --- a/windowing/windowserver/test/t_integ/group/t_fpsapp.mmp Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/group/t_fpsapp.mmp Tue Apr 20 16:24:43 2010 +0100 @@ -36,9 +36,9 @@ SOURCE t_fpsappview.cpp USERINCLUDE ../inc -APP_LAYER_SYSTEMINCLUDE_SYMBIAN -MW_LAYER_SYSTEMINCLUDE_SYMBIAN -OS_LAYER_SYSTEMINCLUDE_SYMBIAN +APP_LAYER_SYSTEMINCLUDE +MW_LAYER_SYSTEMINCLUDE +OS_LAYER_SYSTEMINCLUDE // Application exe specific resource which is localised to the application @@ -63,7 +63,7 @@ LIBRARY gdi.lib LIBRARY ws32.lib LIBRARY estor.lib -LIBRARY cinidata.lib +LIBRARY iniparser.lib LIBRARY t_winutils.lib LIBRARY efsrv.lib LIBRARY t_pseudoappengine.lib diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/group/t_inidata.mmp --- a/windowing/windowserver/test/t_integ/group/t_inidata.mmp Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/group/t_inidata.mmp Tue Apr 20 16:24:43 2010 +0100 @@ -44,6 +44,6 @@ LIBRARY ws32.lib LIBRARY bitgdi.lib LIBRARY hal.lib -LIBRARY cinidata.lib +LIBRARY iniparser.lib SMPSAFE diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/group/t_perfdata.mmp --- a/windowing/windowserver/test/t_integ/group/t_perfdata.mmp Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/group/t_perfdata.mmp Tue Apr 20 16:24:43 2010 +0100 @@ -38,7 +38,7 @@ LIBRARY euser.lib LIBRARY hal.lib -LIBRARY cinidata.lib +LIBRARY iniparser.lib LIBRARY efsrv.lib LIBRARY estor.lib diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/group/t_pseudoapp.mmp --- a/windowing/windowserver/test/t_integ/group/t_pseudoapp.mmp Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/group/t_pseudoapp.mmp Tue Apr 20 16:24:43 2010 +0100 @@ -36,9 +36,9 @@ SOURCE t_pseudoappview.cpp USERINCLUDE ../inc -APP_LAYER_SYSTEMINCLUDE_SYMBIAN -MW_LAYER_SYSTEMINCLUDE_SYMBIAN -OS_LAYER_SYSTEMINCLUDE_SYMBIAN +APP_LAYER_SYSTEMINCLUDE +MW_LAYER_SYSTEMINCLUDE +OS_LAYER_SYSTEMINCLUDE OS_LAYER_LIBC_SYSTEMINCLUDE // Application exe specific resource which is localised to the application @@ -63,7 +63,7 @@ LIBRARY gdi.lib LIBRARY ws32.lib LIBRARY estor.lib -LIBRARY cinidata.lib +LIBRARY iniparser.lib LIBRARY t_winutils.lib LIBRARY efsrv.lib LIBRARY t_pseudoappengine.lib diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/group/t_pseudoapp1.mmp --- a/windowing/windowserver/test/t_integ/group/t_pseudoapp1.mmp Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/group/t_pseudoapp1.mmp Tue Apr 20 16:24:43 2010 +0100 @@ -38,9 +38,9 @@ SOURCE t_pseudoappview.cpp USERINCLUDE ../inc -APP_LAYER_SYSTEMINCLUDE_SYMBIAN -MW_LAYER_SYSTEMINCLUDE_SYMBIAN -OS_LAYER_SYSTEMINCLUDE_SYMBIAN +APP_LAYER_SYSTEMINCLUDE +MW_LAYER_SYSTEMINCLUDE +OS_LAYER_SYSTEMINCLUDE // Application exe specific resource which is localised to the application @@ -65,7 +65,7 @@ LIBRARY gdi.lib LIBRARY ws32.lib LIBRARY estor.lib -LIBRARY cinidata.lib +LIBRARY iniparser.lib LIBRARY t_winutils.lib LIBRARY efsrv.lib LIBRARY t_pseudoappengine.lib diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/group/t_pseudoappengine.mmp --- a/windowing/windowserver/test/t_integ/group/t_pseudoappengine.mmp Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/group/t_pseudoappengine.mmp Tue Apr 20 16:24:43 2010 +0100 @@ -43,15 +43,15 @@ SOURCE t_pseudoappshared.cpp USERINCLUDE ../inc -APP_LAYER_SYSTEMINCLUDE_SYMBIAN -MW_LAYER_SYSTEMINCLUDE_SYMBIAN -OS_LAYER_SYSTEMINCLUDE_SYMBIAN +APP_LAYER_SYSTEMINCLUDE +MW_LAYER_SYSTEMINCLUDE +OS_LAYER_SYSTEMINCLUDE OS_LAYER_LIBC_SYSTEMINCLUDE LIBRARY euser.lib LIBRARY fbscli.lib LIBRARY ws32.lib -LIBRARY cinidata.lib +LIBRARY iniparser.lib LIBRARY bitgdi.lib LIBRARY surfacemanager.lib LIBRARY surfaceupdateclient.lib diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/group/t_pseudoapppopupwindow.mmp --- a/windowing/windowserver/test/t_integ/group/t_pseudoapppopupwindow.mmp Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/group/t_pseudoapppopupwindow.mmp Tue Apr 20 16:24:43 2010 +0100 @@ -33,13 +33,13 @@ SOURCE t_pseudoapputils.cpp USERINCLUDE ../inc -APP_LAYER_SYSTEMINCLUDE_SYMBIAN -MW_LAYER_SYSTEMINCLUDE_SYMBIAN -OS_LAYER_SYSTEMINCLUDE_SYMBIAN +APP_LAYER_SYSTEMINCLUDE +MW_LAYER_SYSTEMINCLUDE +OS_LAYER_SYSTEMINCLUDE LIBRARY euser.lib LIBRARY ws32.lib -LIBRARY cinidata.lib +LIBRARY iniparser.lib LIBRARY fbscli.lib LIBRARY gdi.lib LIBRARY t_winutils.lib diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/group/t_simloadapp1.mmp --- a/windowing/windowserver/test/t_integ/group/t_simloadapp1.mmp Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/group/t_simloadapp1.mmp Tue Apr 20 16:24:43 2010 +0100 @@ -33,9 +33,9 @@ USERINCLUDE ../inc SOURCE t_simloadapp1.cpp -APP_LAYER_SYSTEMINCLUDE_SYMBIAN -MW_LAYER_SYSTEMINCLUDE_SYMBIAN -OS_LAYER_SYSTEMINCLUDE_SYMBIAN +APP_LAYER_SYSTEMINCLUDE +MW_LAYER_SYSTEMINCLUDE +OS_LAYER_SYSTEMINCLUDE LIBRARY euser.lib LIBRARY t_simloadutils.lib diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/group/t_simloadapp2.mmp --- a/windowing/windowserver/test/t_integ/group/t_simloadapp2.mmp Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/group/t_simloadapp2.mmp Tue Apr 20 16:24:43 2010 +0100 @@ -33,9 +33,9 @@ USERINCLUDE ../inc SOURCE t_simloadapp2.cpp -APP_LAYER_SYSTEMINCLUDE_SYMBIAN -MW_LAYER_SYSTEMINCLUDE_SYMBIAN -OS_LAYER_SYSTEMINCLUDE_SYMBIAN +APP_LAYER_SYSTEMINCLUDE +MW_LAYER_SYSTEMINCLUDE +OS_LAYER_SYSTEMINCLUDE LIBRARY euser.lib LIBRARY t_simloadutils.lib diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/group/t_simloadapp3.mmp --- a/windowing/windowserver/test/t_integ/group/t_simloadapp3.mmp Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/group/t_simloadapp3.mmp Tue Apr 20 16:24:43 2010 +0100 @@ -33,9 +33,9 @@ USERINCLUDE ../inc SOURCE t_simloadapp3.cpp -APP_LAYER_SYSTEMINCLUDE_SYMBIAN -MW_LAYER_SYSTEMINCLUDE_SYMBIAN -OS_LAYER_SYSTEMINCLUDE_SYMBIAN +APP_LAYER_SYSTEMINCLUDE +MW_LAYER_SYSTEMINCLUDE +OS_LAYER_SYSTEMINCLUDE LIBRARY euser.lib LIBRARY t_simloadutils.lib diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/group/t_simloadutils.mmp --- a/windowing/windowserver/test/t_integ/group/t_simloadutils.mmp Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/group/t_simloadutils.mmp Tue Apr 20 16:24:43 2010 +0100 @@ -34,12 +34,12 @@ USERINCLUDE ../inc SOURCE t_simloadutils.cpp -APP_LAYER_SYSTEMINCLUDE_SYMBIAN -MW_LAYER_SYSTEMINCLUDE_SYMBIAN -OS_LAYER_SYSTEMINCLUDE_SYMBIAN +APP_LAYER_SYSTEMINCLUDE +MW_LAYER_SYSTEMINCLUDE +OS_LAYER_SYSTEMINCLUDE LIBRARY euser.lib -LIBRARY cinidata.lib +LIBRARY iniparser.lib LIBRARY t_inidata.lib diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/group/t_winutils.mmp --- a/windowing/windowserver/test/t_integ/group/t_winutils.mmp Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/group/t_winutils.mmp Tue Apr 20 16:24:43 2010 +0100 @@ -40,7 +40,7 @@ LIBRARY bitgdi.lib LIBRARY fbscli.lib LIBRARY hal.lib -LIBRARY cinidata.lib +LIBRARY iniparser.lib LIBRARY ws32.lib SMPSAFE diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/group/t_wservintegserver.mmp --- a/windowing/windowserver/test/t_integ/group/t_wservintegserver.mmp Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/group/t_wservintegserver.mmp Tue Apr 20 16:24:43 2010 +0100 @@ -48,7 +48,7 @@ LIBRARY efsrv.lib LIBRARY bafl.lib LIBRARY estor.lib -LIBRARY cinidata.lib +LIBRARY iniparser.lib LIBRARY surfacemanager.lib LIBRARY surfaceupdateclient.lib LIBRARY ws32.lib diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/resource/t_app1.rss --- a/windowing/windowserver/test/t_integ/resource/t_app1.rss Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/resource/t_app1.rss Tue Apr 20 16:24:43 2010 +0100 @@ -22,8 +22,8 @@ NAME SMPL -#include -#include +#include +#include #include #include "t_app1.hrh" diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/resource/t_dsaapp.rss --- a/windowing/windowserver/test/t_integ/resource/t_dsaapp.rss Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/resource/t_dsaapp.rss Tue Apr 20 16:24:43 2010 +0100 @@ -22,8 +22,8 @@ NAME SMPL -#include -#include +#include +#include #include #include "t_dsaapp.hrh" diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/resource/t_fpsapp.rss --- a/windowing/windowserver/test/t_integ/resource/t_fpsapp.rss Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/resource/t_fpsapp.rss Tue Apr 20 16:24:43 2010 +0100 @@ -22,8 +22,8 @@ NAME SMPL -#include -#include +#include +#include #include #include "t_fpsapp.hrh" diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/resource/t_pseudoapp.rss --- a/windowing/windowserver/test/t_integ/resource/t_pseudoapp.rss Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/resource/t_pseudoapp.rss Tue Apr 20 16:24:43 2010 +0100 @@ -22,8 +22,8 @@ NAME SMPL -#include -#include +#include +#include #include #include "t_pseudoapp.hrh" diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/resource/t_pseudoapp1.rss --- a/windowing/windowserver/test/t_integ/resource/t_pseudoapp1.rss Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/resource/t_pseudoapp1.rss Tue Apr 20 16:24:43 2010 +0100 @@ -22,8 +22,8 @@ NAME SMPL -#include -#include +#include +#include #include #include "t_pseudoapp.hrh" diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/src/t_app1ui.cpp --- a/windowing/windowserver/test/t_integ/src/t_app1ui.cpp Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/src/t_app1ui.cpp Tue Apr 20 16:24:43 2010 +0100 @@ -21,7 +21,7 @@ #include #include -#include +#include #include #include "t_app1ui.h" #include "t_app1view.h" diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/src/t_app1view.cpp --- a/windowing/windowserver/test/t_integ/src/t_app1view.cpp Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/src/t_app1view.cpp Tue Apr 20 16:24:43 2010 +0100 @@ -20,7 +20,7 @@ */ #include -#include +#include #include #include "t_app1view.h" #include "t_app1eng.h" diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/test/t_integ/src/t_pseudoappui.cpp --- a/windowing/windowserver/test/t_integ/src/t_pseudoappui.cpp Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/test/t_integ/src/t_pseudoappui.cpp Tue Apr 20 16:24:43 2010 +0100 @@ -21,7 +21,7 @@ #include #include -#include +#include #include #include "t_pseudoappeng.h" diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/wins_switching/remotegc_stubs.h --- a/windowing/windowserver/wins_switching/remotegc_stubs.h Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/wins_switching/remotegc_stubs.h Tue Apr 20 16:24:43 2010 +0100 @@ -1,176 +1,162 @@ -// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). -// All rights reserved. -// This component and the accompanying materials are made available -// under the terms of "Eclipse Public License v1.0" -// which accompanies this distribution, and is available -// at the URL "http://www.eclipse.org/legal/epl-v10.html". -// -// Initial Contributors: -// Nokia Corporation - initial contribution. -// -// Contributors: -// -// Description: -// Generated from "../BWINS/remotegcu.def" file size: 2452 -// -// - -extern "C" { -void common_dispatch(); - -__declspec(dllexport) -__declspec(naked) -void call_vector_1 () - { - // ; CCommandBuffer::~CCommandBuffer(void) - _asm mov eax, 1 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_2 () - { - // ; CRemoteGc::~CRemoteGc(void) - _asm mov eax, 2 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_3 () - { - // ; void CRemoteGc::ExternalizeL(class RWsGraphicMsgBuf &, int) - _asm mov eax, 3 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_4 () - { - // ; void CCommandBuffer::InternalizeL(class TDesC8 const &) - _asm mov eax, 4 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_5 () - { - // ; class CCommandBuffer * CCommandBuffer::NewL(void) - _asm mov eax, 5 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_6 () - { - // ; class CRemoteGc * CRemoteGc::NewL(class CWsScreenDevice *) - _asm mov eax, 6 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_7 () - { - // ; int CCommandBuffer::Play(class TPoint const &, class TRect const &, class MWsGraphicResolver const &, class CBitmapContext &) - _asm mov eax, 7 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_8 () - { - // ; void CRemoteGc::ResetCommandBuffer(void) - _asm mov eax, 8 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_9 () - { - // ; void CRemoteGc::SetCommandBufferObserver(class MCommandBufferObserver *) - _asm mov eax, 9 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_10 () - { - // ; void CRemoteGc::BeginDraw(class TRect const &) - _asm mov eax, 10 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_11 () - { - // ; void CRemoteGc::EndDraw(void) - _asm mov eax, 11 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_12 () - { - // ; void CCommandBuffer::InternalizeAppendL(class TDesC8 const &) - _asm mov eax, 12 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_13 () - { - // ; int CCommandBuffer::Play(class TPoint const &, class TRegion const *, class TRect const &, class MWsGraphicResolver const &, class CBitmapContext &) - _asm mov eax, 13 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_14 () - { - // ; class TRegion const & CCommandBuffer::ClippingRegion(void) const - _asm mov eax, 14 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_15 () - { - // ; int CCommandBuffer::IsIdentical(class CCommandBuffer const &) const - _asm mov eax, 15 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_16 () - { - // ; int CCommandBuffer::Play(class TPoint const &, class TRegion const *, class TRect const &, class RWsSession &, class CWindowGc &) - _asm mov eax, 16 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_17 () - { - // ; int CCommandBuffer::Play(class TPoint const &, class TRegion const *, class TRect const &, class MWsGraphicResolver const &, class MWsGraphicsContext &) - _asm mov eax, 17 - _asm jmp common_dispatch - } - -} -#define MAX_ORDINAL 18 - +// Generated from "../BWINS/remotegcu.def" file size: 2433 +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). + +extern "C" { +void common_dispatch(); + +__declspec(dllexport) +__declspec(naked) +void call_vector_1 () + { + // ; CCommandBuffer::~CCommandBuffer(void) + _asm mov eax, 1 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_2 () + { + // ; CRemoteGc::~CRemoteGc(void) + _asm mov eax, 2 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_3 () + { + // ; void CRemoteGc::ExternalizeL(class RWsGraphicMsgBuf &, int) + _asm mov eax, 3 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_4 () + { + // ; void CCommandBuffer::InternalizeL(class TDesC8 const &) + _asm mov eax, 4 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_5 () + { + // ; class CCommandBuffer * CCommandBuffer::NewL(void) + _asm mov eax, 5 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_6 () + { + // ; class CRemoteGc * CRemoteGc::NewL(class CWsScreenDevice *) + _asm mov eax, 6 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_7 () + { + // ; int CCommandBuffer::Play(class TPoint const &, class TRect const &, class MWsGraphicResolver const &, class CBitmapContext &) + _asm mov eax, 7 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_8 () + { + // ; void CRemoteGc::ResetCommandBuffer(void) + _asm mov eax, 8 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_9 () + { + // ; void CRemoteGc::SetCommandBufferObserver(class MCommandBufferObserver *) + _asm mov eax, 9 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_10 () + { + // ; void CRemoteGc::BeginDraw(class TRect const &) + _asm mov eax, 10 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_11 () + { + // ; void CRemoteGc::EndDraw(void) + _asm mov eax, 11 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_12 () + { + // ; void CCommandBuffer::InternalizeAppendL(class TDesC8 const &) + _asm mov eax, 12 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_13 () + { + // ; int CCommandBuffer::Play(class TPoint const &, class TRegion const *, class TRect const &, class MWsGraphicResolver const &, class CBitmapContext &) + _asm mov eax, 13 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_14 () + { + // ; class TRegion const & CCommandBuffer::ClippingRegion(void) const + _asm mov eax, 14 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_15 () + { + // ; int CCommandBuffer::IsIdentical(class CCommandBuffer const &) const + _asm mov eax, 15 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_16 () + { + // ; int CCommandBuffer::Play(class TPoint const &, class TRegion const *, class TRect const &, class RWsSession &, class CWindowGc &) + _asm mov eax, 16 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_17 () + { + // ; int CCommandBuffer::Play(class TPoint const &, class TRegion const *, class TRect const &, class MWsGraphicResolver const &, class MWsGraphicsContext &) + _asm mov eax, 17 + _asm jmp common_dispatch + } + +} +#define MAX_ORDINAL 18 + diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/wins_switching/ws32_stubs.h --- a/windowing/windowserver/wins_switching/ws32_stubs.h Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/wins_switching/ws32_stubs.h Tue Apr 20 16:24:43 2010 +0100 @@ -1,5226 +1,5211 @@ -/* -* Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). -* All rights reserved. -* This component and the accompanying materials are made available -* under the terms of "Eclipse Public License v1.0" -* which accompanies this distribution, and is available -* at the URL "http://www.eclipse.org/legal/epl-v10.html". -* -* Initial Contributors: -* Nokia Corporation - initial contribution. -* -* Contributors: -* -* Description: -* -*/ - - -extern "C" { -void common_dispatch(); - -__declspec(dllexport) -__declspec(naked) -void call_vector_1 () - { - // ; public: __thiscall CWindowGc::CWindowGc(class CWsScreenDevice *) - _asm mov eax, 1 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_2 () - { - // ; public: __thiscall CWsBitmap::CWsBitmap(class RWsSession &) - _asm mov eax, 2 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_3 () - { - // ; public: __thiscall CWsBitmap::CWsBitmap(void) - _asm mov eax, 3 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_4 () - { - // ; public: __thiscall CWsScreenDevice::CWsScreenDevice(class RWsSession &) - _asm mov eax, 4 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_5 () - { - // ; public: __thiscall CWsScreenDevice::CWsScreenDevice(void) - _asm mov eax, 5 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_6 () - { - // ; protected: __thiscall RAnim::RAnim(class RAnimDll &) - _asm mov eax, 6 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_7 () - { - // ; protected: __thiscall RAnim::RAnim(void) - _asm mov eax, 7 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_8 () - { - // ; public: __thiscall RAnimDll::RAnimDll(class RWsSession &) - _asm mov eax, 8 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_9 () - { - // ; public: __thiscall RAnimDll::RAnimDll(void) - _asm mov eax, 9 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_10 () - { - // ; public: __thiscall RBackedUpWindow::RBackedUpWindow(class RWsSession &) - _asm mov eax, 10 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_11 () - { - // ; public: __thiscall RBackedUpWindow::RBackedUpWindow(void) - _asm mov eax, 11 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_12 () - { - // ; public: __thiscall RBlankWindow::RBlankWindow(class RWsSession &) - _asm mov eax, 12 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_13 () - { - // ; public: __thiscall RBlankWindow::RBlankWindow(void) - _asm mov eax, 13 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_14 () - { - // ; public: __thiscall RWindow::RWindow(class RWsSession &) - _asm mov eax, 14 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_15 () - { - // ; public: __thiscall RWindow::RWindow(void) - _asm mov eax, 15 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_16 () - { - // ; public: __thiscall RWindowGroup::RWindowGroup(class RWsSession &) - _asm mov eax, 16 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_17 () - { - // ; public: __thiscall RWindowGroup::RWindowGroup(void) - _asm mov eax, 17 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_18 () - { - // ; public: __thiscall RWsPointerCursor::RWsPointerCursor(class RWsSession &) - _asm mov eax, 18 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_19 () - { - // ; public: __thiscall RWsPointerCursor::RWsPointerCursor(void) - _asm mov eax, 19 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_20 () - { - // ; public: __thiscall RWsSession::RWsSession(void) - _asm mov eax, 20 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_21 () - { - // ; public: __thiscall RWsSprite::RWsSprite(class RWsSession &) - _asm mov eax, 21 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_22 () - { - // ; public: __thiscall RWsSprite::RWsSprite(void) - _asm mov eax, 22 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_23 () - { - // ; protected: __thiscall RWsSpriteBase::RWsSpriteBase(class RWsSession &) - _asm mov eax, 23 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_24 () - { - // ; protected: __thiscall RWsSpriteBase::RWsSpriteBase(void) - _asm mov eax, 24 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_25 () - { - // ; public: virtual __thiscall CWindowGc::~CWindowGc(void) - _asm mov eax, 25 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_26 () - { - // ; public: virtual __thiscall CWsBitmap::~CWsBitmap(void) - _asm mov eax, 26 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_27 () - { - // ; public: virtual __thiscall CWsScreenDevice::~CWsScreenDevice(void) - _asm mov eax, 27 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_28 () - { - // ; public: virtual __thiscall RAnim::~RAnim(void) - _asm mov eax, 28 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_29 () - { - // ; public: virtual __thiscall RAnimDll::~RAnimDll(void) - _asm mov eax, 29 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_30 () - { - // ; public: virtual void __thiscall CWindowGc::Activate(class RDrawableWindow &) - _asm mov eax, 30 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_31 () - { - // ; public: void __thiscall RWindowBase::Activate(void) - _asm mov eax, 31 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_32 () - { - // ; public: int __thiscall RWsSpriteBase::Activate(void) - _asm mov eax, 32 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_33 () - { - // ; public: virtual int __thiscall CWsScreenDevice::AddFile(class TDesC16 const &,int &) - _asm mov eax, 33 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_34 () - { - // ; public: int __thiscall RWindowBase::AddKeyRect(class TRect const &,int,int) - _asm mov eax, 34 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_35 () - { - // ; public: int __thiscall RWindowGroup::AddPriorityKey(unsigned int,unsigned int,unsigned int) - _asm mov eax, 35 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_36 () - { - // ; public: int __thiscall RWindowBase::AllocPointerMoveBuffer(int,unsigned int) - _asm mov eax, 36 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_37 () - { - // ; public: int __thiscall RWsSpriteBase::AppendMember(struct TSpriteMember const &) - _asm mov eax, 37 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_38 () - { - // ; public: void __thiscall RWindowGroup::AutoForeground(int) - _asm mov eax, 38 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_39 () - { - // ; public: void __thiscall RWindow::BeginRedraw(class TRect const &) - _asm mov eax, 39 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_40 () - { - // ; public: void __thiscall RWindow::BeginRedraw(void) - _asm mov eax, 40 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_41 () - { - // ; public: virtual void __thiscall CWindowGc::BitBlt(class TPoint const &,class CFbsBitmap const *) - _asm mov eax, 41 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_42 () - { - // ; public: virtual void __thiscall CWindowGc::BitBlt(class TPoint const &,class CFbsBitmap const *,class TRect const &) - _asm mov eax, 42 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_43 () - { - // ; public: virtual void __thiscall CWindowGc::BitBlt(class TPoint const &,class CWsBitmap const *) - _asm mov eax, 43 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_44 () - { - // ; public: virtual void __thiscall CWindowGc::BitBlt(class TPoint const &,class CWsBitmap const *,class TRect const &) - _asm mov eax, 44 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_45 () - { - // ; public: virtual void __thiscall CWindowGc::BitBltMasked(class TPoint const &,class CFbsBitmap const *,class TRect const &,class CFbsBitmap const *,int) - _asm mov eax, 45 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_46 () - { - // ; public: virtual void __thiscall CWindowGc::BitBltMasked(class TPoint const &,class CWsBitmap const *,class TRect const &,class CWsBitmap const *,int) - _asm mov eax, 46 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_47 () - { - // ; int RBackedUpWindow::BitmapHandle(void) const - _asm mov eax, 47 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_48 () - { - // ; public: void __thiscall RWindowGroup::CancelCaptureKey(long) - _asm mov eax, 48 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_49 () - { - // ; public: void __thiscall RWindowGroup::CancelCaptureKeyUpAndDowns(long) - _asm mov eax, 49 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_50 () - { - // ; public: virtual void __thiscall CWindowGc::CancelClippingRect(void) - _asm mov eax, 50 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_51 () - { - // ; public: virtual void __thiscall CWindowGc::CancelClippingRegion(void) - _asm mov eax, 51 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_52 () - { - // ; public: void __thiscall RWindowBase::CancelPointerRepeatEventRequest(void) - _asm mov eax, 52 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_53 () - { - // ; public: void __thiscall RWindowGroup::CancelTextCursor(void) - _asm mov eax, 53 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_54 () - { - // ; public: long __thiscall RWindowGroup::CaptureKey(unsigned int,unsigned int,unsigned int) - _asm mov eax, 54 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_55 () - { - // ; public: long __thiscall RWindowGroup::CaptureKeyUpAndDowns(unsigned int,unsigned int,unsigned int) - _asm mov eax, 55 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_56 () - { - // ; public: unsigned long __thiscall RWindowTreeNode::Child(void)const - _asm mov eax, 56 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_57 () - { - // ; public: void __thiscall RWindowBase::ClaimPointerGrab(int) - _asm mov eax, 57 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_58 () - { - // ; public: int __thiscall RWsSession::ClaimSystemPointerCursorList(void) - _asm mov eax, 58 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_59 () - { - // ; public: virtual void __thiscall CWindowGc::Clear(class TRect const &) - _asm mov eax, 59 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_60 () - { - // ; public: virtual void __thiscall CWindowGc::Clear(void) - _asm mov eax, 60 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_61 () - { - // ; public: int __thiscall RWsSession::ClearHotKeys(enum THotKey) - _asm mov eax, 61 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_62 () - { - // ; public: void __thiscall RWsSession::ClearSystemPointerCursor(int) - _asm mov eax, 62 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_63 () - { - // ; public: virtual void __thiscall RAnim::Close(void) - _asm mov eax, 63 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_64 () - { - // ; public: virtual void __thiscall RAnimDll::Close(void) - _asm mov eax, 64 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_65 () - { - // ; public: void __thiscall RWindowTreeNode::Close(void) - _asm mov eax, 65 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_66 () - { - // ; public: void __thiscall RWsSpriteBase::Close(void) - _asm mov eax, 66 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_67 () - { - // ; protected: void __thiscall RAnim::Command(int) - _asm mov eax, 67 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_68 () - { - // ; protected: void __thiscall RAnim::Command(int,class TPtrC8 const &) - _asm mov eax, 68 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_69 () - { - // ; protected: int __thiscall RAnim::CommandReply(int) - _asm mov eax, 69 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_70 () - { - // ; protected: int __thiscall RAnim::CommandReply(int,class TPtrC8 const &) - _asm mov eax, 70 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_71 () - { - // ; public: void __thiscall RWsSession::ComputeMode(enum RWsSession::TComputeMode) - _asm mov eax, 71 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_72 () - { - // ; public: int __thiscall RWsSession::Connect(void) - _asm mov eax, 72 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_73 () - { - // ; public: virtual int __thiscall CWindowGc::Construct(void) - _asm mov eax, 73 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_74 () - { - // ; public: int __thiscall CWsScreenDevice::Construct(void) - _asm mov eax, 74 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_75 () - { - // ; protected: int __thiscall RAnim::Construct(class RWindowBase const &,int,class TDesC8 const &) - _asm mov eax, 75 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_76 () - { - // ; public: int __thiscall RBackedUpWindow::Construct(class RWindowTreeNode const &,enum TDisplayMode,unsigned long) - _asm mov eax, 76 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_77 () - { - // ; public: int __thiscall RBlankWindow::Construct(class RWindowTreeNode const &,unsigned long) - _asm mov eax, 77 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_78 () - { - // ; public: int __thiscall RWindow::Construct(class RWindowTreeNode const &,unsigned long) - _asm mov eax, 78 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_79 () - { - // ; public: int __thiscall RWindowGroup::Construct(unsigned long) - _asm mov eax, 79 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_80 () - { - // ; public: int __thiscall RWindowGroup::Construct(unsigned long,int) - _asm mov eax, 80 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_81 () - { - // ; public: int __thiscall RWsPointerCursor::Construct(int) - _asm mov eax, 81 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_82 () - { - // ; public: int __thiscall RWsSprite::Construct(class RWindowTreeNode &,class TPoint const &,int) - _asm mov eax, 82 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_83 () - { - // ; public: virtual void __thiscall CWindowGc::CopyRect(class TPoint const &,class TRect const &) - _asm mov eax, 83 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_84 () - { - // ; public: int __thiscall CWsScreenDevice::CopyScreenToBitmap(class CFbsBitmap const *)const - _asm mov eax, 84 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_85 () - { - // ; public: int __thiscall CWsScreenDevice::CopyScreenToBitmap(class CFbsBitmap const *,class TRect const &)const - _asm mov eax, 85 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_86 () - { - // ; public: int __thiscall CWsBitmap::Create(class TSize const &,enum TDisplayMode) - _asm mov eax, 86 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_87 () - { - // ; public: virtual int __thiscall CWsScreenDevice::CreateContext(class CGraphicsContext * &) - _asm mov eax, 87 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_88 () - { - // ; public: virtual void __thiscall CWindowGc::Deactivate(void) - _asm mov eax, 88 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_89 () - { - // ; public: void __thiscall RWindowGroup::DefaultOwningWindow(void) - _asm mov eax, 89 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_90 () - { - // ; public: void __thiscall RAnim::Destroy(void) - _asm mov eax, 90 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_91 () - { - // ; public: void __thiscall RAnimDll::Destroy(void) - _asm mov eax, 91 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_92 () - { - // ; public: void __thiscall RWindowTreeNode::Destroy(void) - _asm mov eax, 92 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_93 () - { - // ; public: virtual class CGraphicsDevice * __thiscall CWindowGc::Device(void)const - _asm mov eax, 93 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_94 () - { - // ; public: void __thiscall RWindowTreeNode::DisableGroupChangeEvents(void) - _asm mov eax, 94 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_95 () - { - // ; public: void __thiscall RWindowGroup::DisableKeyClick(int) - _asm mov eax, 95 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_96 () - { - // ; public: void __thiscall RWindowTreeNode::DisableModifierChangedEvents(void) - _asm mov eax, 96 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_97 () - { - // ; public: void __thiscall RWindowTreeNode::DisableOnEvents(void) - _asm mov eax, 97 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_98 () - { - // ; public: void __thiscall RWindowTreeNode::DisableErrorMessages(void) - _asm mov eax, 98 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_99 () - { - // ; public: void __thiscall RWindowBase::DisablePointerMoveBuffer(void) - _asm mov eax, 99 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_100 () - { - // ; public: virtual void __thiscall CWindowGc::DiscardBrushPattern(void) - _asm mov eax, 100 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_101 () - { - // ; public: virtual void __thiscall CWindowGc::DiscardFont(void) - _asm mov eax, 101 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_102 () - { - // ; public: void __thiscall RWindowBase::DiscardPointerMoveBuffer(void) - _asm mov eax, 102 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_103 () - { - // ; public: void __thiscall RWsSession::Close(void) - _asm mov eax, 103 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_104 () - { - // ; public: virtual enum TDisplayMode __thiscall CWsScreenDevice::DisplayMode(void)const - _asm mov eax, 104 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_105 () - { - // ; public: virtual void __thiscall CWindowGc::DrawArc(class TRect const &,class TPoint const &,class TPoint const &) - _asm mov eax, 105 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_106 () - { - // ; public: virtual void __thiscall CWindowGc::DrawBitmap(class TPoint const &,class CFbsBitmap const *) - _asm mov eax, 106 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_107 () - { - // ; public: virtual void __thiscall CWindowGc::DrawBitmap(class TRect const &,class CFbsBitmap const *,class TRect const &) - _asm mov eax, 107 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_108 () - { - // ; public: virtual void __thiscall CWindowGc::DrawBitmap(class TRect const &,class CFbsBitmap const *) - _asm mov eax, 108 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_109 () - { - // ; public: virtual void __thiscall CWindowGc::DrawEllipse(class TRect const &) - _asm mov eax, 109 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_110 () - { - // ; public: virtual void __thiscall CWindowGc::DrawLine(class TPoint const &,class TPoint const &) - _asm mov eax, 110 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_111 () - { - // ; public: virtual void __thiscall CWindowGc::DrawLineBy(class TPoint const &) - _asm mov eax, 111 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_112 () - { - // ; public: virtual void __thiscall CWindowGc::DrawLineTo(class TPoint const &) - _asm mov eax, 112 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_113 () - { - // ; public: virtual void __thiscall CWindowGc::DrawPie(class TRect const &,class TPoint const &,class TPoint const &) - _asm mov eax, 113 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_114 () - { - // ; public: virtual void __thiscall CWindowGc::DrawPolyLine(class CArrayFix const *) - _asm mov eax, 114 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_115 () - { - // ; public: virtual void __thiscall CWindowGc::DrawPolyLine(class TPoint const *,int) - _asm mov eax, 115 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_116 () - { - // ; public: virtual int __thiscall CWindowGc::DrawPolygon(class CArrayFix const *,enum CGraphicsContext::TFillRule) - _asm mov eax, 116 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_117 () - { - // ; public: virtual int __thiscall CWindowGc::DrawPolygon(class TPoint const *,int,enum CGraphicsContext::TFillRule) - _asm mov eax, 117 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_118 () - { - // ; public: virtual void __thiscall CWindowGc::DrawRect(class TRect const &) - _asm mov eax, 118 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_119 () - { - // ; public: virtual void __thiscall CWindowGc::DrawRoundRect(class TRect const &,class TSize const &) - _asm mov eax, 119 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_120 () - { - // ; public: virtual void __thiscall CWindowGc::DrawText(class TDesC16 const &,class TPoint const &) - _asm mov eax, 120 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_121 () - { - // ; public: virtual void __thiscall CWindowGc::DrawText(class TDesC16 const &,class TRect const &,int,enum CGraphicsContext::TTextAlign,int) - _asm mov eax, 121 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_122 () - { - // ; public: virtual void __thiscall CWindowGc::DrawTextVertical(class TDesC16 const &,class TPoint const &,int) - _asm mov eax, 122 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_123 () - { - // ; public: virtual void __thiscall CWindowGc::DrawTextVertical(class TDesC16 const &,class TRect const &,int,int,enum CGraphicsContext::TTextAlign,int) - _asm mov eax, 123 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_124 () - { - // ; public: int __thiscall CWsBitmap::Duplicate(int) - _asm mov eax, 124 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_125 () - { - // ; public: void __thiscall RWindowBase::EnableBackup(unsigned int) - _asm mov eax, 125 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_126 () - { - // ; public: int __thiscall RWindowTreeNode::EnableGroupChangeEvents(void) - _asm mov eax, 126 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_127 () - { - // ; public: int __thiscall RWindowTreeNode::EnableModifierChangedEvents(unsigned int,enum TEventControl) - _asm mov eax, 127 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_128 () - { - // ; public: int __thiscall RWindowTreeNode::EnableOnEvents(enum TEventControl) - _asm mov eax, 128 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_129 () - { - // ; public: int __thiscall RWindowTreeNode::EnableErrorMessages(enum TEventControl) - _asm mov eax, 129 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_130 () - { - // ; public: void __thiscall RWindowBase::EnablePointerMoveBuffer(void) - _asm mov eax, 130 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_131 () - { - // ; public: void __thiscall RWindowGroup::EnableReceiptOfFocus(int) - _asm mov eax, 131 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_132 () - { - // ; public: void __thiscall RWindow::EndRedraw(void) - _asm mov eax, 132 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_133 () - { - // ; public: void __thiscall RWsSession::EventReady(class TRequestStatus *) - _asm mov eax, 133 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_134 () - { - // ; public: void __thiscall RWsSession::EventReadyCancel(void) - _asm mov eax, 134 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_135 () - { - // ; int RWsSession::FetchMessage(class TUid &, class TPtr8 &, class TWsEvent const &) const - _asm mov eax, 135 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_136 () - { - // ; int RWsSession::FindWindowGroupIdentifier(int, class TDesC16 const &, int) const - _asm mov eax, 136 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_137 () - { - // ; int RWsSession::FindWindowGroupIdentifier(int, class TThreadId) const - _asm mov eax, 137 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_138 () - { - // ; public: void __thiscall RWsSession::Flush(void) - _asm mov eax, 138 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_139 () - { - // ; public: virtual int __thiscall CWsScreenDevice::FontHeightInPixels(int,int)const - _asm mov eax, 139 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_140 () - { - // ; public: virtual int __thiscall CWsScreenDevice::FontHeightInTwips(int,int)const - _asm mov eax, 140 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_141 () - { - // ; public: void __thiscall RWindowBase::FreePointerMoveBuffer(void) - _asm mov eax, 141 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_142 () - { - // ; public: void __thiscall RWsSession::FreeSystemPointerCursorList(void) - _asm mov eax, 142 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_143 () - { - // ; public: int __thiscall RWindowTreeNode::FullOrdinalPosition(void)const - _asm mov eax, 143 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_144 () - { - // ; public: class TRgb __thiscall RWsSession::GetBackgroundColor(void)const - _asm mov eax, 144 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_145 () - { - // ; int RWsSession::GetDefaultOwningWindow(void) const - _asm mov eax, 145 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_146 () - { - // ; void RWsSession::GetDoubleClickSettings(class TTimeIntervalMicroSeconds32 &, int &) const - _asm mov eax, 146 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_147 () - { - // ; void RWsSession::GetEvent(class TWsEvent &) const - _asm mov eax, 147 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_148 () - { - // ; int RWsSession::GetFocusWindowGroup(void) const - _asm mov eax, 148 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_149 () - { - // ; public: int __thiscall CWsScreenDevice::GetFontById(class CFont * &,class TUid,class TAlgStyle const &) - _asm mov eax, 149 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_150 () - { - // ; void RWindow::GetInvalidRegion(class RRegion &) const - _asm mov eax, 150 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_151 () - { - // ; void RWsSession::GetKeyboardRepeatRate(class TTimeIntervalMicroSeconds32 &, class TTimeIntervalMicroSeconds32 &) const - _asm mov eax, 151 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_152 () - { - // ; public: int __thiscall RWsSession::GetModifierState(void)const - _asm mov eax, 152 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_153 () - { - // ; public: virtual int __thiscall CWsScreenDevice::GetNearestFontInPixels(class CFont * &,class TFontSpec const &) - _asm mov eax, 153 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_154 () - { - // ; public: virtual int __thiscall CWsScreenDevice::GetNearestFontInTwips(class CFont * &,class TFontSpec const &) - _asm mov eax, 154 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_155 () - { - // ; public: virtual int __thiscall CWsScreenDevice::GetPalette(class CPalette * &)const - _asm mov eax, 155 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_156 () - { - // ; public: virtual void __thiscall CWsScreenDevice::GetPixel(class TRgb &,class TPoint const &)const - _asm mov eax, 156 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_157 () - { - // ; void RWsSession::GetPriorityKey(class TWsPriorityKeyEvent &) const - _asm mov eax, 157 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_158 () - { - // ; public: void __thiscall RWsSession::GetRedraw(class TWsRedrawEvent &) - _asm mov eax, 158 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_159 () - { - // ; public: virtual void __thiscall CWsScreenDevice::GetScanLine(class TDes8 &,class TPoint const &,int,enum TDisplayMode)const - _asm mov eax, 159 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_160 () - { - // ; int RWsSession::GetWindowGroupClientThreadId(int, class TThreadId &) const - _asm mov eax, 160 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_161 () - { - // ; int RWsSession::GetWindowGroupHandle(int) const - _asm mov eax, 161 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_162 () - { - // ; int RWsSession::GetWindowGroupNameFromIdentifier(int, class TDes16 &) const - _asm mov eax, 162 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_163 () - { - // ; int RWsSession::GetWindowGroupOrdinalPriority(int) const - _asm mov eax, 163 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_164 () - { - // ; public: int __thiscall RWsSession::HeapCount(void)const - _asm mov eax, 164 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_165 () - { - // ; public: void __thiscall RWsSession::HeapSetFail(int,int) - _asm mov eax, 165 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_166 () - { - // ; public: virtual int __thiscall CWsScreenDevice::HorizontalPixelsToTwips(int)const - _asm mov eax, 166 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_167 () - { - // ; public: virtual int __thiscall CWsScreenDevice::HorizontalTwipsToPixels(int)const - _asm mov eax, 167 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_168 () - { - // ; public: int __thiscall RWindowGroup::Identifier(void)const - _asm mov eax, 168 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_169 () - { - // ; public: class TPoint __thiscall RWindowBase::InquireOffset(class RWindowTreeNode const &)const - _asm mov eax, 169 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_170 () - { - // ; public: void __thiscall CWsBitmap::InternalizeL(class RReadStream &) - _asm mov eax, 170 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_171 () - { - // ; public: void __thiscall RWindow::Invalidate(class TRect const &) - _asm mov eax, 171 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_172 () - { - // ; public: void __thiscall RWindow::Invalidate(void) - _asm mov eax, 172 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_173 () - { - // ; public: int __thiscall CWsBitmap::Load(class TDesC16 const &,long,int) - _asm mov eax, 173 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_174 () - { - // ; public: int __thiscall RAnimDll::Load(class TDesC16 const &) - _asm mov eax, 174 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_175 () - { - // ; public: void __thiscall RWsSession::LogMessage(class TBuf<128> const &) - _asm mov eax, 175 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_176 () - { - // ; public: void __thiscall RBackedUpWindow::MaintainBackup(void) - _asm mov eax, 176 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_177 () - { - // ; public: virtual void __thiscall CWindowGc::MapColors(class TRect const &,class TRgb const *,int,int) - _asm mov eax, 177 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_178 () - { - // ; public: virtual void __thiscall CWindowGc::MoveBy(class TPoint const &) - _asm mov eax, 178 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_179 () - { - // ; public: virtual void __thiscall CWindowGc::MoveTo(class TPoint const &) - _asm mov eax, 179 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_180 () - { - // ; public: int __thiscall RWindowGroup::Name(class TDes16 &)const - _asm mov eax, 180 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_181 () - { - // ; public: unsigned long __thiscall RWindowTreeNode::NextSibling(void)const - _asm mov eax, 181 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_182 () - { - // ; public: virtual int __thiscall CWsScreenDevice::NumTypefaces(void)const - _asm mov eax, 182 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_183 () - { - // ; public: int __thiscall RWsSession::NumWindowGroups(int)const - _asm mov eax, 183 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_184 () - { - // ; public: int __thiscall RWsSession::NumWindowGroups(void)const - _asm mov eax, 184 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_185 () - { - // ; public: int __thiscall RWindowTreeNode::OrdinalPosition(void)const - _asm mov eax, 185 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_186 () - { - // ; public: virtual void __thiscall CWsScreenDevice::PaletteAttributes(int &,int &)const - _asm mov eax, 186 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_187 () - { - // ; public: unsigned long __thiscall RWindowTreeNode::Parent(void)const - _asm mov eax, 187 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_188 () - { - // ; public: void __thiscall RWsSession::PasswordEntered(void) - _asm mov eax, 188 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_189 () - { - // ; public: int __thiscall RWindowBase::PasswordWindow(enum TPasswordMode) - _asm mov eax, 189 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_190 () - { - // ; public: virtual void __thiscall CWindowGc::Plot(class TPoint const &) - _asm mov eax, 190 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_191 () - { - // ; public: void __thiscall RWindowBase::PointerFilter(unsigned long,unsigned long) - _asm mov eax, 191 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_192 () - { - // ; public: class TRect __thiscall CWsScreenDevice::PointerRect(void)const - _asm mov eax, 192 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_193 () - { - // ; public: class TPoint __thiscall RWindowBase::Position(void)const - _asm mov eax, 193 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_194 () - { - // ; public: unsigned long __thiscall RWindowTreeNode::PrevSibling(void)const - _asm mov eax, 194 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_195 () - { - // ; public: void __thiscall RWsSession::PriorityKeyReady(class TRequestStatus *) - _asm mov eax, 195 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_196 () - { - // ; public: void __thiscall RWsSession::PriorityKeyReadyCancel(void) - _asm mov eax, 196 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_197 () - { - // ; public: void __thiscall RWsSession::PurgePointerEvents(void) - _asm mov eax, 197 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_198 () - { - // ; int CWsScreenDevice::RectCompare(class TRect const &, class TRect const &) const - _asm mov eax, 198 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_199 () - { - // ; public: void __thiscall RWsSession::RedrawReady(class TRequestStatus *) - _asm mov eax, 199 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_200 () - { - // ; public: void __thiscall RWsSession::RedrawReadyCancel(void) - _asm mov eax, 200 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_201 () - { - // ; public: virtual void __thiscall CWsScreenDevice::ReleaseFont(class CFont *) - _asm mov eax, 201 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_202 () - { - // ; public: void __thiscall RWindowBase::RemoveAllKeyRects(void) - _asm mov eax, 202 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_203 () - { - // ; public: virtual void __thiscall CWsScreenDevice::RemoveFile(int) - _asm mov eax, 203 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_204 () - { - // ; public: void __thiscall RWindowGroup::RemovePriorityKey(unsigned int,unsigned int,unsigned int) - _asm mov eax, 204 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_205 () - { - // ; public: void __thiscall RWindowBase::RequestPointerRepeatEvent(class TTimeIntervalMicroSeconds32,class TRect const &) - _asm mov eax, 205 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_206 () - { - // ; public: virtual void __thiscall CWindowGc::Reset(void) - _asm mov eax, 206 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_207 () - { - // ; public: void __thiscall CWsBitmap::Reset(void) - _asm mov eax, 207 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_208 () - { - // ; int RWsSession::ResourceCount(void) const - _asm mov eax, 208 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_209 () - { - // ; public: int __thiscall RWsSession::RestoreDefaultHotKey(enum THotKey) - _asm mov eax, 209 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_210 () - { - // ; int RWindowBase::RetrievePointerMoveBuffer(class TDes8 &) const - _asm mov eax, 210 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_211 () - { - // ; public: void __thiscall RDrawableWindow::Scroll(class TPoint const &) - _asm mov eax, 211 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_212 () - { - // ; public: void __thiscall RDrawableWindow::Scroll(class TPoint const &,class TRect const &) - _asm mov eax, 212 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_213 () - { - // ; public: void __thiscall RDrawableWindow::Scroll(class TRect const &,class TPoint const &,class TRect const &) - _asm mov eax, 213 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_214 () - { - // ; public: void __thiscall RDrawableWindow::Scroll(class TRect const &,class TPoint const &) - _asm mov eax, 214 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_215 () - { - // ; public: int __thiscall RWsSession::SendEventToWindowGroup(int,class TWsEvent const &) - _asm mov eax, 215 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_216 () - { - // ; public: int __thiscall RWsSession::SendMessageToWindowGroup(int,class TUid,class TDesC8 const &) - _asm mov eax, 216 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_217 () - { - // ; public: int __thiscall RWsSession::SetAutoFlush(int) - _asm mov eax, 217 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_218 () - { - // ; public: void __thiscall RWindow::SetBackgroundColor(class TRgb) - _asm mov eax, 218 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_219 () - { - // ; public: void __thiscall RWindow::SetBackgroundColor(void) - _asm mov eax, 219 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_220 () - { - // ; public: void __thiscall RWsSession::SetBackgroundColor(class TRgb) - _asm mov eax, 220 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_221 () - { - // ; public: virtual void __thiscall CWindowGc::SetBrushColor(class TRgb const &) - _asm mov eax, 221 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_222 () - { - // ; public: virtual void __thiscall CWindowGc::SetBrushOrigin(class TPoint const &) - _asm mov eax, 222 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_223 () - { - // ; public: virtual void __thiscall CWindowGc::SetBrushStyle(enum CGraphicsContext::TBrushStyle) - _asm mov eax, 223 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_224 () - { - // ; public: virtual void __thiscall CWindowGc::SetCharJustification(int,int) - _asm mov eax, 224 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_225 () - { - // ; public: virtual void __thiscall CWindowGc::SetClippingRect(class TRect const &) - _asm mov eax, 225 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_226 () - { - // ; public: virtual int __thiscall CWindowGc::SetClippingRegion(class TRegion const &) - _asm mov eax, 226 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_227 () - { - // ; public: void __thiscall RBlankWindow::SetColor(class TRgb) - _asm mov eax, 227 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_228 () - { - // ; public: int __thiscall RWindowBase::SetCornerType(enum TCornerType,int) - _asm mov eax, 228 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_229 () - { - // ; public: void __thiscall RWindowTreeNode::SetCustomPointerCursor(class RWsPointerCursor const &) - _asm mov eax, 229 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_230 () - { - // ; public: virtual void __thiscall CWindowGc::SetDitherOrigin(class TPoint const &) - _asm mov eax, 230 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_231 () - { - // ; public: int __thiscall RWsSession::SetDoubleClick(class TTimeIntervalMicroSeconds32 const &,int) - _asm mov eax, 231 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_232 () - { - // ; public: virtual void __thiscall CWindowGc::SetDrawMode(enum CGraphicsContext::TDrawMode) - _asm mov eax, 232 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_233 () - { - // ; public: void __thiscall RBlankWindow::SetExtent(class TPoint const &,class TSize const &) - _asm mov eax, 233 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_234 () - { - // ; public: void __thiscall RWindow::SetExtent(class TPoint const &,class TSize const &) - _asm mov eax, 234 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_235 () - { - // ; public: int __thiscall RWindowBase::SetExtentErr(class TPoint const &,class TSize const &) - _asm mov eax, 235 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_236 () - { - // ; public: int __thiscall RWsSession::SetHotKey(enum THotKey,unsigned int,unsigned int,unsigned int) - _asm mov eax, 236 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_237 () - { - // ; public: int __thiscall RWsSession::SetKeyboardRepeatRate(class TTimeIntervalMicroSeconds32 const &,class TTimeIntervalMicroSeconds32 const &) - _asm mov eax, 237 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_238 () - { - // ; public: int __thiscall RWsSession::SetModifierState(enum TEventModifier,enum TModifierState) - _asm mov eax, 238 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_239 () - { - // ; public: int __thiscall RWindowGroup::SetName(class TDesC16 const &) - _asm mov eax, 239 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_240 () - { - // ; public: void __thiscall RWindowTreeNode::SetOrdinalPosition(int) - _asm mov eax, 240 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_241 () - { - // ; public: void __thiscall RWindowTreeNode::SetOrdinalPosition(int,int) - _asm mov eax, 241 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_242 () - { - // ; public: void __thiscall RWindowGroup::SetOrdinalPriorityAdjust(int) - _asm mov eax, 242 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_243 () - { - // ; public: virtual void __thiscall CWindowGc::SetOrigin(class TPoint const &) - _asm mov eax, 243 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_244 () - { - // ; public: void __thiscall RWindowGroup::SetOwningWindowGroup(int) - _asm mov eax, 244 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_245 () - { - // ; public: virtual void __thiscall CWsScreenDevice::SetPalette(class CPalette *) - _asm mov eax, 245 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_246 () - { - // ; public: virtual void __thiscall CWindowGc::SetPenColor(class TRgb const &) - _asm mov eax, 246 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_247 () - { - // ; public: virtual void __thiscall CWindowGc::SetPenSize(class TSize const &) - _asm mov eax, 247 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_248 () - { - // ; public: virtual void __thiscall CWindowGc::SetPenStyle(enum CGraphicsContext::TPenStyle) - _asm mov eax, 248 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_249 () - { - // ; public: void __thiscall RWindowBase::SetPointerCapture(int) - _asm mov eax, 249 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_250 () - { - // ; public: int __thiscall RWindowTreeNode::SetPointerCursor(int) - _asm mov eax, 250 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_251 () - { - // ; public: void __thiscall RWindowBase::SetPointerGrab(int) - _asm mov eax, 251 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_252 () - { - // ; public: void __thiscall RWindowBase::SetPosition(class TPoint const &) - _asm mov eax, 252 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_253 () - { - // ; public: void __thiscall RWsSprite::SetPosition(class TPoint const &) - _asm mov eax, 253 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_254 () - { - // ; public: int __thiscall RWindowBase::SetRequiredDisplayMode(enum TDisplayMode) - _asm mov eax, 254 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_255 () - { - // ; public: void __thiscall RWindowBase::SetShadowDisabled(int) - _asm mov eax, 255 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_256 () - { - // ; public: void __thiscall RWindowBase::SetShadowHeight(int) - _asm mov eax, 256 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_257 () - { - // ; public: void __thiscall RWsSession::SetShadowVector(class TPoint const &) - _asm mov eax, 257 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_258 () - { - // ; public: int __thiscall RWindowBase::SetShape(class TRegion const &) - _asm mov eax, 258 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_259 () - { - // ; public: void __thiscall RBlankWindow::SetSize(class TSize const &) - _asm mov eax, 259 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_260 () - { - // ; public: void __thiscall RWindow::SetSize(class TSize const &) - _asm mov eax, 260 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_261 () - { - // ; public: int __thiscall RWindowBase::SetSizeErr(class TSize const &) - _asm mov eax, 261 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_262 () - { - // ; public: virtual void __thiscall CWindowGc::SetStrikethroughStyle(enum TFontStrikethrough) - _asm mov eax, 262 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_263 () - { - // ; public: int __thiscall RWsSession::SetSystemPointerCursor(class RWsPointerCursor const &,int) - _asm mov eax, 263 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_264 () - { - // ; public: void __thiscall RWindowGroup::SetTextCursor(class RWindowBase &,class TPoint const &,struct TTextCursor const &) - _asm mov eax, 264 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_265 () - { - // ; public: void __thiscall RWindowGroup::SetTextCursor(class RWindowBase &,class TPoint const &,struct TTextCursor const &,class TRect const &) - _asm mov eax, 265 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_266 () - { - // ; public: virtual void __thiscall CWindowGc::SetUnderlineStyle(enum TFontUnderline) - _asm mov eax, 266 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_267 () - { - // ; public: void __thiscall RWindowBase::SetVisible(int) - _asm mov eax, 267 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_268 () - { - // ; public: int __thiscall RWsSession::SetWindowGroupOrdinalPosition(int,int) - _asm mov eax, 268 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_269 () - { - // ; public: virtual void __thiscall CWindowGc::SetWordJustification(int,int) - _asm mov eax, 269 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_270 () - { - // ; public: class TPoint __thiscall RWsSession::ShadowVector(void)const - _asm mov eax, 270 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_271 () - { - // ; public: void __thiscall RWsSession::SimulateRawEvent(class TRawEvent) - _asm mov eax, 271 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_272 () - { - // ; public: class TSize __thiscall RWindowBase::Size(void)const - _asm mov eax, 272 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_273 () - { - // ; public: virtual class TSize __thiscall CWsScreenDevice::SizeInPixels(void)const - _asm mov eax, 273 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_274 () - { - // ; public: virtual class TSize __thiscall CWsScreenDevice::SizeInTwips(void)const - _asm mov eax, 274 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_275 () - { - // ; public: void __thiscall RWsSession::SystemInfo(int &,struct RWsSession::SSystemInfo &) - _asm mov eax, 275 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_276 () - { - // ; public: void __thiscall RWsSession::TestWrite(int,int,void const *,int) - _asm mov eax, 276 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_277 () - { - // ; public: void __thiscall RWsSession::TestWriteReply(int,int,void const *,int) - _asm mov eax, 277 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_278 () - { - // ; public: void __thiscall RWsSession::TestWriteReplyP(int,int,void const *,int,class TDes8 *) - _asm mov eax, 278 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_279 () - { - // ; public: virtual void __thiscall CWsScreenDevice::TypefaceSupport(class TTypefaceSupport &,int)const - _asm mov eax, 279 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_280 () - { - // ; public: void __thiscall RBackedUpWindow::UpdateBackupBitmap(void) - _asm mov eax, 280 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_281 () - { - // ; public: int __thiscall RWsSpriteBase::UpdateMember(int,struct TSpriteMember const &) - _asm mov eax, 281 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_282 () - { - // ; public: void __thiscall RWsSpriteBase::UpdateMember(int) - _asm mov eax, 282 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_283 () - { - // ; public: void __thiscall RBackedUpWindow::UpdateScreen(class TRegion const &) - _asm mov eax, 283 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_284 () - { - // ; public: void __thiscall RBackedUpWindow::UpdateScreen(void) - _asm mov eax, 284 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_285 () - { - // ; public: virtual void __thiscall CWindowGc::UseBrushPattern(class CFbsBitmap const *) - _asm mov eax, 285 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_286 () - { - // ; public: virtual void __thiscall CWindowGc::UseFont(class CFont const *) - _asm mov eax, 286 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_287 () - { - // ; class TVersion RWsSession::Version(void) const - _asm mov eax, 287 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_288 () - { - // ; public: virtual int __thiscall CWsScreenDevice::VerticalPixelsToTwips(int)const - _asm mov eax, 288 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_289 () - { - // ; public: virtual int __thiscall CWsScreenDevice::VerticalTwipsToPixels(int)const - _asm mov eax, 289 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_290 () - { - // ; int RWsSession::WindowGroupList(int, class CArrayFixFlat *) const - _asm mov eax, 290 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_291 () - { - // ; int RWsSession::WindowGroupList(class CArrayFixFlat *) const - _asm mov eax, 291 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_292 () - { - // ; public: int __thiscall RWsSession::RequestOffEvents(int,class RWindowTreeNode *) - _asm mov eax, 292 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_293 () - { - // ; public: void __thiscall RWindowTreeNode::__DbgTestInvariant(void)const - _asm mov eax, 293 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_294 () - { - // ; public: void __thiscall RWindowGroup::DisableScreenChangeEvents(void) - _asm mov eax, 294 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_295 () - { - // ; public: int __thiscall RWindowGroup::EnableScreenChangeEvents(void) - _asm mov eax, 295 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_296 () - { - // ; public: void __thiscall RWindowBase::FadeBehind(int) - _asm mov eax, 296 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_297 () - { - // ; public: void __thiscall CWsScreenDevice::GetDefaultScreenSizeAndRotation(struct TPixelsAndRotation &)const - _asm mov eax, 297 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_298 () - { - // ; public: void __thiscall CWsScreenDevice::GetDefaultScreenSizeAndRotation(struct TPixelsTwipsAndRotation &)const - _asm mov eax, 298 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_299 () - { - // ; enum TDisplayMode RWindowBase::DisplayMode(void) const - _asm mov eax, 299 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_300 () - { - // ; public: enum TDisplayMode __thiscall RWsSession::GetDefModeMaxNumColors(int &,int &)const - _asm mov eax, 300 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_301 () - { - // ; public: void __thiscall CWsScreenDevice::GetScreenModeSizeAndRotation(int,struct TPixelsAndRotation &)const - _asm mov eax, 301 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_302 () - { - // ; public: void __thiscall CWsScreenDevice::GetScreenModeSizeAndRotation(int,struct TPixelsTwipsAndRotation &)const - _asm mov eax, 302 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_303 () - { - // ; public: int __thiscall CWsScreenDevice::NumScreenModes(void)const - _asm mov eax, 303 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_304 () - { - // ; public: enum TScreenModeEnforcement __thiscall CWsScreenDevice::ScreenModeEnforcement(void)const - _asm mov eax, 304 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_305 () - { - // ; public: virtual void __thiscall CWindowGc::SetFaded(int) - _asm mov eax, 305 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_306 () - { - // ; public: void __thiscall RWindowTreeNode::SetFaded(int,enum RWindowTreeNode::TFadeControl) - _asm mov eax, 306 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_307 () - { - // ; public: void __thiscall RWindowTreeNode::SetNonFading(int) - _asm mov eax, 307 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_308 () - { - // ; public: void __thiscall CWsScreenDevice::SetScreenMode(int) - _asm mov eax, 308 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_309 () - { - // ; public: void __thiscall CWsScreenDevice::SetScreenModeEnforcement(enum TScreenModeEnforcement)const - _asm mov eax, 309 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_310 () - { - // ; public: void __thiscall CWsScreenDevice::SetScreenSizeAndRotation(struct TPixelsAndRotation const &) - _asm mov eax, 310 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_311 () - { - // ; public: void __thiscall CWsScreenDevice::SetScreenSizeAndRotation(struct TPixelsTwipsAndRotation const &) - _asm mov eax, 311 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_312 () - { - // ; public: void __thiscall RWindowGroup::SimulatePointerEvent(class TRawEvent) - _asm mov eax, 312 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_313 () - { - // ; public: int __thiscall RWsSession::GetColorModeList(class CArrayFixFlat *)const - _asm mov eax, 313 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_314 () - { - // ; int RWindowBase::IsFaded(void) const - _asm mov eax, 314 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_315 () - { - // ; int RWindowBase::IsNonFading(void) const - _asm mov eax, 315 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_316 () - { - // ; protected: int __thiscall RAnim::Construct(class RWsSprite const &,int,class TDesC8 const &) - _asm mov eax, 316 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_317 () - { - // ; public: int __thiscall CWsScreenDevice::GetRotationsList(int,class CArrayFixFlat *)const - _asm mov eax, 317 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_318 () - { - // ; public: int __thiscall RWindowTreeNode::OrdinalPriority(void)const - _asm mov eax, 318 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_319 () - { - // ; public: int __thiscall RWsSession::SendEventToAllWindowGroups(class TWsEvent const &) - _asm mov eax, 319 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_320 () - { - // ; public: int __thiscall RWsSession::SendEventToAllWindowGroups(int,class TWsEvent const &) - _asm mov eax, 320 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_321 () - { - // ; public: void __thiscall CWsScreenDevice::SetCurrentRotations(int,enum CFbsBitGc::TGraphicsOrientation)const - _asm mov eax, 321 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_322 () - { - // ; public: void __thiscall RWsSession::SimulateKeyEvent(struct TKeyEvent) - _asm mov eax, 322 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_323 () - { - // ; public: void __thiscall RWsSession::SetRemoveKeyCode(int) - _asm mov eax, 323 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_324 () - { - // ; public: void __thiscall RWsSession::ClearDefaultSystemPointerCursor(void) - _asm mov eax, 324 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_325 () - { - // ; public: void __thiscall RWindowTreeNode::ClearPointerCursor(void) - _asm mov eax, 325 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_326 () - { - // ; public: class TRect __thiscall RWsSession::PointerCursorArea(int)const - _asm mov eax, 326 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_327 () - { - // ; public: class TRect __thiscall RWsSession::PointerCursorArea(void)const - _asm mov eax, 327 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_328 () - { - // ; public: enum TPointerCursorMode __thiscall RWsSession::PointerCursorMode(void)const - _asm mov eax, 328 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_329 () - { - // ; public: class TPoint __thiscall RWsSession::PointerCursorPosition(void)const - _asm mov eax, 329 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_330 () - { - // ; public: void __thiscall RWsSession::SetDefaultSystemPointerCursor(int) - _asm mov eax, 330 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_331 () - { - // ; public: void __thiscall RWsSession::SetPointerCursorArea(class TRect const &) - _asm mov eax, 331 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_332 () - { - // ; public: void __thiscall RWsSession::SetPointerCursorArea(int,class TRect const &) - _asm mov eax, 332 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_333 () - { - // ; public: void __thiscall RWsSession::SetPointerCursorMode(enum TPointerCursorMode) - _asm mov eax, 333 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_334 () - { - // ; public: int __thiscall RWsSession::SetPointerCursorPosition(class TPoint const &) - _asm mov eax, 334 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_335 () - { - // ; public: void __thiscall RWsSession::SimulateXyInputType(enum TXYInputType) - _asm mov eax, 335 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_336 () - { - // ; public: int __thiscall RWindowBase::MoveToGroup(int) - _asm mov eax, 336 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_337 () - { - // ; public: int __thiscall RWsSession::SendMessageToAllWindowGroups(int,class TUid,class TDesC8 const &) - _asm mov eax, 337 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_338 () - { - // ; public: int __thiscall RWsSession::SendMessageToAllWindowGroups(class TUid,class TDesC8 const &) - _asm mov eax, 338 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_339 () - { - // ; public: void __thiscall RWindowTreeNode::DisableFocusChangeEvents(void) - _asm mov eax, 339 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_340 () - { - // ; public: int __thiscall RWindowTreeNode::EnableFocusChangeEvents(void) - _asm mov eax, 340 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_341 () - { - // ; public: void __thiscall RWsSession::SetDefaultFadingParameters(unsigned char,unsigned char) - _asm mov eax, 341 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_342 () - { - // ; public: void __thiscall RWindowTreeNode::SetFaded(int,enum RWindowTreeNode::TFadeControl,unsigned char,unsigned char) - _asm mov eax, 342 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_343 () - { - // ; public: virtual void __thiscall CWindowGc::SetFadingParameters(unsigned char,unsigned char) - _asm mov eax, 343 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_344 () - { - // ; public: void __thiscall RWsSession::PrepareForSwitchOff(void) - _asm mov eax, 344 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_345 () - { - // ; public: int __thiscall CWsScreenDevice::SetCustomPalette(class CPalette const *) - _asm mov eax, 345 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_346 () - { - // ; public: __thiscall RDirectScreenAccess::RDirectScreenAccess(class RWsSession &) - _asm mov eax, 346 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_347 () - { - // ; public: __thiscall RDirectScreenAccess::RDirectScreenAccess(void) - _asm mov eax, 347 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_348 () - { - // ; public: void __thiscall RDirectScreenAccess::Cancel(void) - _asm mov eax, 348 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_349 () - { - // ; public: void __thiscall RDirectScreenAccess::Close(void) - _asm mov eax, 349 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_350 () - { - // ; public: void __thiscall RDirectScreenAccess::Completed(void) - _asm mov eax, 350 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_351 () - { - // ; public: int __thiscall RDirectScreenAccess::Construct(void) - _asm mov eax, 351 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_352 () - { - // ; public: static class CDirectScreenAccess * __cdecl CDirectScreenAccess::NewL(class RWsSession &,class CWsScreenDevice &,class RWindowBase &,class MDirectScreenAccess &) - _asm mov eax, 352 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_353 () - { - // ; public: int __thiscall RDirectScreenAccess::Request(class RRegion * &,class TRequestStatus &,class RWindowBase const &) - _asm mov eax, 353 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_354 () - { - // ; public: void __thiscall CDirectScreenAccess::StartL(void) - _asm mov eax, 354 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_355 () - { - // ; public: void __thiscall RWsSession::SetBufferSizeL(int) - _asm mov eax, 355 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_356 () - { - // ; public: int __thiscall RWsSession::SetSystemFaded(int) - _asm mov eax, 356 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_357 () - { - // ; public: int __thiscall RWsSession::SetSystemFaded(int,unsigned char,unsigned char) - _asm mov eax, 357 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_358 () - { - // ; public: void __thiscall RWindowTreeNode::DisableGroupListChangeEvents(void) - _asm mov eax, 358 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_359 () - { - // ; public: int __thiscall RWindowTreeNode::EnableGroupListChangeEvents(void) - _asm mov eax, 359 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_360 () - { - // ; public: int __thiscall RSoundPlugIn::Construct(class TUid) - _asm mov eax, 360 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_361 () - { - // ; public: void __thiscall RSoundPlugIn::Destroy(void) - _asm mov eax, 361 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_362 () - { - // ; int RSoundPlugIn::IsLoaded(int &) const - _asm mov eax, 362 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_363 () - { - // ; public: int __thiscall RSoundPlugIn::Load(class TDesC16 const &) - _asm mov eax, 363 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_364 () - { - // ; public: int __thiscall RSoundPlugIn::Unload(void) - _asm mov eax, 364 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_365 () - { - // ; public: int __thiscall CWsScreenDevice::CurrentScreenMode(void)const - _asm mov eax, 365 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_366 () - { - // ; public: void __thiscall RWindowGroup::CancelCaptureLongKey(long) - _asm mov eax, 366 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_367 () - { - // ; public: long __thiscall RWindowGroup::CaptureLongKey(unsigned int,unsigned int,unsigned int,unsigned int,int,unsigned int) - _asm mov eax, 367 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_368 () - { - // ; public: long __thiscall RWindowGroup::CaptureLongKey(class TTimeIntervalMicroSeconds32,unsigned int,unsigned int,unsigned int,unsigned int,int,unsigned int) - _asm mov eax, 368 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_369 () - { - // ; public: int __thiscall RWsSession::SendEventToOneWindowGroupsPerClient(class TWsEvent const &) - _asm mov eax, 369 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_370 () - { - // ; int RSoundPlugIn::KeyClickEnabled(void) const - _asm mov eax, 370 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_371 () - { - // ; int RSoundPlugIn::PenClickEnabled(void) const - _asm mov eax, 371 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_372 () - { - // ; public: void __thiscall RSoundPlugIn::SetKeyClick(int) - _asm mov eax, 372 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_373 () - { - // ; public: void __thiscall RSoundPlugIn::SetPenClick(int) - _asm mov eax, 373 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_374 () - { - // ; public: long __thiscall RWindowGroup::CaptureKey(unsigned int,unsigned int,unsigned int,int) - _asm mov eax, 374 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_375 () - { - // ; public: long __thiscall RWindowGroup::CaptureKeyUpAndDowns(unsigned int,unsigned int,unsigned int,int) - _asm mov eax, 375 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_376 () - { - // ; public: void __thiscall RWsSession::LogCommand(enum RWsSession::TLoggingCommand) - _asm mov eax, 376 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_377 () - { - // ; public: __thiscall RSoundPlugIn::RSoundPlugIn(class RWsSession &) - _asm mov eax, 377 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_378 () - { - // ; public: __thiscall RSoundPlugIn::RSoundPlugIn(void) - _asm mov eax, 378 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_379 () - { - // ; public: void __thiscall RSoundPlugIn::Close(void) - _asm mov eax, 379 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_380 () - { - // ; public: int __thiscall RSoundPlugIn::CommandReply(int,class TPtrC8 const &) - _asm mov eax, 380 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_381 () - { - // ; public: int __thiscall RWsSession::SetCustomTextCursor(int,class TArray const &,unsigned int,enum RWsSession::TCustomTextCursorAlignment) - _asm mov eax, 381 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_382 () - { - // ; public: void __thiscall RWindow::HandleTransparencyUpdate(void) - _asm mov eax, 382 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_383 () - { - // ; public: int __thiscall RWindow::SetTransparencyBitmap(class CFbsBitmap const &) - _asm mov eax, 383 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_384 () - { - // ; public: int __thiscall RWindow::SetTransparencyFactor(class TRgb const &) - _asm mov eax, 384 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_385 () - { - // ; public: void __thiscall RWindow::SetNonTransparent(void) - _asm mov eax, 385 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_386 () - { - // ; public: int __thiscall RWsSession::TestWriteReplyByProvidingRemoteReadAccess(int,int,class TDesC8 const &,class TDesC16 const &) - _asm mov eax, 386 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_387 () - { - // ; public: int __thiscall RWsSession::TestWriteReplyByProvidingRemoteReadAccess(int,int,class TDesC8 const &,class TDesC8 const &) - _asm mov eax, 387 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_388 () - { - // ; int RAnim::CommandReply(int, class TDesC8 const &, class TIpcArgs const &) - _asm mov eax, 388 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_389 () - { - // ; int RAnim::Construct(class RWindowBase const &, int, class TDesC8 const &, class TIpcArgs const &) - _asm mov eax, 389 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_390 () - { - // ; int RAnim::Construct(class RWsSprite const &, int, class TDesC8 const &, class TIpcArgs const &) - _asm mov eax, 390 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_391 () - { - // ; void RAnim::AsyncCommandReply(class TRequestStatus &, int, class TIpcArgs const &) - _asm mov eax, 391 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_392 () - { - // ; public: class TPoint __thiscall RWindowBase::AbsPosition(void)const - _asm mov eax, 392 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_393 () - { - // ; public: int __thiscall CWsScreenDevice::RectCompare(class TRect const &,class TRect const &,unsigned int)const - _asm mov eax, 393 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_394 () - { - // ; public: class TPoint __thiscall CWsScreenDevice::GetDefaultScreenModeOrigin(void)const - _asm mov eax, 394 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_395 () - { - // ; public: class TPoint __thiscall CWsScreenDevice::GetScreenModeOrigin(int)const - _asm mov eax, 395 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_396 () - { - // ; void RWindow::EnableRedrawStore(int) - _asm mov eax, 396 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_397 () - { - // ; void CWindowGc::AlphaBlendBitmaps(class TPoint const &, class CFbsBitmap const *, class TRect const &, class CFbsBitmap const *, class TPoint const &) - _asm mov eax, 397 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_398 () - { - // ; void CWindowGc::AlphaBlendBitmaps(class TPoint const &, class CWsBitmap const *, class TRect const &, class CWsBitmap const *, class TPoint const &) - _asm mov eax, 398 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_399 () - { - // ; void CWindowGc::SetOpaque(int) - _asm mov eax, 399 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_400 () - { - // ; public: class TSizeMode __thiscall CWsScreenDevice::GetCurrentScreenModeAttributes(void)const - _asm mov eax, 400 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_401 () - { - // ; public: class TPoint __thiscall CWsScreenDevice::GetCurrentScreenModeScaledOrigin(void)const - _asm mov eax, 401 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_402 () - { - // ; public: class TSize __thiscall CWsScreenDevice::GetCurrentScreenModeScale(void)const - _asm mov eax, 402 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_403 () - { - // ; public: class TPoint __thiscall CWsScreenDevice::GetScreenModeScaledOrigin(int)const - _asm mov eax, 403 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_404 () - { - // ; public: class TSize __thiscall CWsScreenDevice::GetScreenModeScale(int)const - _asm mov eax, 404 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_405 () - { - // ; public: void __thiscall CWsScreenDevice::SetAppScreenMode(int) - _asm mov eax, 405 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_406 () - { - // ; public: void __thiscall CWsScreenDevice::SetCurrentScreenModeAttributes(class TSizeMode const &) - _asm mov eax, 406 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_407 () - { - // ; void CWindowGc::DrawBitmapMasked(class TRect const &, class CFbsBitmap const *, class TRect const &, class CFbsBitmap const *, int) - _asm mov eax, 407 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_408 () - { - // ; int CWsScreenDevice::Construct(int) - _asm mov eax, 408 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_409 () - { - // ; int CWsScreenDevice::GetScreenNumber(void) const - _asm mov eax, 409 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_410 () - { - // ; int RWsSession::GetFocusScreen(void) const - _asm mov eax, 410 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_411 () - { - // ; int RWsSession::SetFocusScreen(int) - _asm mov eax, 411 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_412 () - { - // ; public: int __thiscall RWindowGroup::ConstructChildApp(int,unsigned long) - _asm mov eax, 412 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_413 () - { - // ; public: int __thiscall RWindowGroup::ConstructChildApp(int,unsigned long,int) - _asm mov eax, 413 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_414 () - { - // ; int RWsSession::WindowGroupList(int, class RArray *) const - _asm mov eax, 414 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_415 () - { - // ; int RWsSession::WindowGroupList(class RArray *) const - _asm mov eax, 415 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_416 () - { - // ; public: void __thiscall RWindowGroup::AllowProcessToCreateChildWindowGroups(class TUid) - _asm mov eax, 416 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_417 () - { - // ; public: int __thiscall RWindow::SetTransparencyWsBitmap(class CWsBitmap const &) - _asm mov eax, 417 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_418 () - { - // ; int CWsScreenDevice::GetScreenSizeModeList(class RArray *) const - _asm mov eax, 418 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_419 () - { - // ; int CWsScreenDevice::GetNearestFontToDesignHeightInPixels(class CFont * &, class TFontSpec const &) - _asm mov eax, 419 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_420 () - { - // ; int CWsScreenDevice::GetNearestFontToDesignHeightInTwips(class CFont * &, class TFontSpec const &) - _asm mov eax, 420 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_421 () - { - // ; int CWsScreenDevice::GetNearestFontToMaxHeightInPixels(class CFont * &, class TFontSpec const &, int) - _asm mov eax, 421 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_422 () - { - // ; int CWsScreenDevice::GetNearestFontToMaxHeightInTwips(class CFont * &, class TFontSpec const &, int) - _asm mov eax, 422 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_423 () - { - // ; void RWindowTreeNode::DisableVisibilityChangeEvents(void) - _asm mov eax, 423 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_424 () - { - // ; int RWindowTreeNode::EnableVisibilityChangeEvents(void) - _asm mov eax, 424 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_425 () - { - // ; int RWindow::SetTransparencyAlphaChannel(void) - _asm mov eax, 425 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_426 () - { - // ; void RBlankWindow::SetColor(void) - _asm mov eax, 426 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_427 () - { - // ; int RWsSession::SetClientCursorMode(enum TPointerCursorMode) - _asm mov eax, 427 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_428 () - { - // ; class TRect RDrawableWindow::GetDrawRect(void) const - _asm mov eax, 428 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_429 () - { - // (noname) - _asm mov eax, 429 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_430 () - { - // (noname) - _asm mov eax, 430 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_431 () - { - // ; void CWindowGc::Reserved_CWindowGc_3(void) - _asm mov eax, 431 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_432 () - { - // ; void CWindowGc::Reserved_CWindowGc_4(void) - _asm mov eax, 432 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_433 () - { - // ; void CWindowGc::Reserved_CWindowGc_5(void) - _asm mov eax, 433 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_434 () - { - // ; void CWindowGc::Reserved_CBitmapContext_1(void) - _asm mov eax, 434 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_435 () - { - // ; void CWindowGc::Reserved_CBitmapContext_2(void) - _asm mov eax, 435 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_436 () - { - // ; void CWindowGc::Reserved_CBitmapContext_3(void) - _asm mov eax, 436 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_437 () - { - // ; int CWindowGc::APIExtension(class TUid, int*&, int *) - _asm mov eax, 437 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_438 () - { - // ; void CWindowGc::Reserved_CGraphicsContext_2(void) - _asm mov eax, 438 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_439 () - { - // ; void CWindowGc::DrawBitmapMasked(class TRect const &, class CWsBitmap const *, class TRect const &, class CWsBitmap const *, int) - _asm mov eax, 439 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_440 () - { - // ; int RWsSession::Connect(class RFs &) - _asm mov eax, 440 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_441 () - { - // ; enum TDisplayMode CWsScreenDevice::GetScreenModeDisplayMode(int const &) const - _asm mov eax, 441 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_442 () - { - // ; public: void __thiscall RWsSession::ClearAllRedrawStores(void) - _asm mov eax, 442 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_443 () - { - // ; int RWindowTreeNode::WindowGroupId(void) const - _asm mov eax, 443 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_444 () - { - // ; int RWindowBase::GetPointerCapturePriority(void) const - _asm mov eax, 444 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_445 () - { - // ; void RWindowBase::SetPointerCapturePriority(int) - _asm mov eax, 445 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_446 () - { - // ; int RWindow::SetTransparentRegion(class TRegion const &) - _asm mov eax, 446 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_447 () - { - // ; int RWindow::SetTransparencyPolicy(enum TWsTransparencyPolicy) - _asm mov eax, 447 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_448 () - { - // ; int RWindow::IsRedrawStoreEnabled(void) const - _asm mov eax, 448 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_449 () - { - // ; int CWsScreenDevice::SetBackLight(int) - _asm mov eax, 449 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_450 () - { - // ; int RWindowGroup::SetOrdinalPositionErr(int, int) - _asm mov eax, 450 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_451 () - { - // ; int RWindowGroup::ClearChildGroup(void) - _asm mov eax, 451 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_452 () - { - // ; int RWindowGroup::SetChildGroup(int) - _asm mov eax, 452 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_453 () - { - // ; class TUid TWsGraphicId::Uid(void) const - _asm mov eax, 453 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_454 () - { - // ; CWsGraphic::CWsGraphic(void) - _asm mov eax, 454 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_455 () - { - // ; RWsGraphicMsgBuf::RWsGraphicMsgBuf(void) - _asm mov eax, 455 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_456 () - { - // ; TWsGraphicMsgFixedBase::TWsGraphicMsgFixedBase(class TUid, int) - _asm mov eax, 456 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_457 () - { - // ; CWsGraphic::~CWsGraphic(void) - _asm mov eax, 457 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_458 () - { - // ; int RWsGraphicMsgBuf::Append(class TWsGraphicMsgFixedBase const &) - _asm mov eax, 458 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_459 () - { - // ; int RWsGraphicMsgBuf::Append(class TUid, class TDesC16 const &) - _asm mov eax, 459 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_460 () - { - // ; int RWsGraphicMsgBuf::Append(class TUid, class TDesC8 const &) - _asm mov eax, 460 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_461 () - { - // ; int RWsGraphicMsgBuf::Append(class TUid, int, class TPtr8 &) - _asm mov eax, 461 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_462 () - { - // ; void CWsGraphic::BaseConstructL(class TWsGraphicId const &, class TUid, class TDesC8 const &) - _asm mov eax, 462 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_463 () - { - // ; void CWsGraphic::BaseConstructL(class TUid, class TUid, class TDesC8 const &) - _asm mov eax, 463 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_464 () - { - // ; void CWsGraphic::BaseConstructL(class TUid, class TDesC8 const &) - _asm mov eax, 464 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_465 () - { - // ; int CWsGraphic::CWsGraphic_Reserved1(void) - _asm mov eax, 465 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_466 () - { - // ; int CWsGraphic::CWsGraphic_Reserved2(void) - _asm mov eax, 466 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_467 () - { - // ; int CWsGraphic::CWsGraphic_Reserved3(void) - _asm mov eax, 467 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_468 () - { - // ; int TWsGraphicId::Compare(class TWsGraphicId const &) const - _asm mov eax, 468 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_469 () - { - // ; int RWsGraphicMsgBuf::Count(void) const - _asm mov eax, 469 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_470 () - { - // ; class TPtrC8 RWsGraphicMsgBuf::Data(int) const - _asm mov eax, 470 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_471 () - { - // ; void CWsGraphic::Destroy(void) - _asm mov eax, 471 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_472 () - { - // ; void RWsGraphicMsgBuf::GetFixedMsg(class TWsGraphicMsgFixedBase &, int) const - _asm mov eax, 472 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_473 () - { - // ; class TWsGraphicId const & CWsGraphic::Id(void) const - _asm mov eax, 473 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_474 () - { - // ; int CWsGraphic::IsActive(void) const - _asm mov eax, 474 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_475 () - { - // ; int TWsGraphicId::IsId(void) const - _asm mov eax, 475 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_476 () - { - // ; void CWsGraphic::OnClientClose(void) - _asm mov eax, 476 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_477 () - { - // ; class TDesC8 const & RWsGraphicMsgBuf::Pckg(void) const - _asm mov eax, 477 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_478 () - { - // ; class TPtrC8 TWsGraphicMsgFixedBase::Pckg(void) const - _asm mov eax, 478 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_479 () - { - // ; void RWsGraphicMsgBuf::Remove(int) - _asm mov eax, 479 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_480 () - { - // ; void CWsGraphic::SendMessage(class TDesC8 const &) const - _asm mov eax, 480 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_481 () - { - // ; void TWsGraphicId::Set(int) - _asm mov eax, 481 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_482 () - { - // ; void TWsGraphicId::Set(class TUid) - _asm mov eax, 482 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_483 () - { - // ; int CWsGraphic::Share(class TSecureId) - _asm mov eax, 483 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_484 () - { - // ; int CWsGraphic::ShareGlobally(void) - _asm mov eax, 484 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_485 () - { - // ; int TWsGraphicMsgFixedBase::Size(void) const - _asm mov eax, 485 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_486 () - { - // ; class TUid RWsGraphicMsgBuf::TypeId(int) const - _asm mov eax, 486 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_487 () - { - // ; class TUid TWsGraphicMsgFixedBase::TypeId(void) const - _asm mov eax, 487 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_488 () - { - // ; int CWsGraphic::UnShare(class TSecureId) - _asm mov eax, 488 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_489 () - { - // ; int CWsGraphic::UnShareGlobally(void) - _asm mov eax, 489 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_490 () - { - // ; class TPtr8 RWsGraphicMsgBuf::Data(int) - _asm mov eax, 490 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_491 () - { - // ; TWsGraphicId::TWsGraphicId(class TWsGraphicId const &) - _asm mov eax, 491 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_492 () - { - // ; TWsGraphicId::TWsGraphicId(int) - _asm mov eax, 492 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_493 () - { - // ; int CWsGraphic::Flush(void) const - _asm mov eax, 493 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_494 () - { - // ; int RWindowGroup::Construct(unsigned long, int, class CWsScreenDevice *) - _asm mov eax, 494 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_495 () - { - // ; int RWindowGroup::Construct(unsigned long, class CWsScreenDevice *) - _asm mov eax, 495 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_496 () - { - // ; int RWsSession::GetColorModeList(int, class CArrayFixFlat *) const - _asm mov eax, 496 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_497 () - { - // ; enum TDisplayMode RWsSession::GetDefModeMaxNumColors(int, int &, int &) const - _asm mov eax, 497 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_498 () - { - // ; int RWsSession::GetDefaultOwningWindow(int) const - _asm mov eax, 498 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_499 () - { - // ; int RWsSession::GetFocusWindowGroup(int) const - _asm mov eax, 499 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_500 () - { - // ; int RWsSession::NumWindowGroups(int, int) const - _asm mov eax, 500 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_501 () - { - // ; int RWsSession::NumberOfScreens(void) const - _asm mov eax, 501 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_502 () - { - // ; int RWsSession::WindowGroupList(class CArrayFixFlat *, int, int) const - _asm mov eax, 502 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_503 () - { - // ; TWsGraphicId::TWsGraphicId(class TUid) - _asm mov eax, 503 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_504 () - { - // ; public: void __thiscall RWsSession::SetMaxBufferSizeL(int) - _asm mov eax, 504 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_505 () - { - // ; void RWindow::EnableOSB(int) - _asm mov eax, 505 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_506 () - { - // ; int TWsGraphicId::Id(void) const - _asm mov eax, 506 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_507 () - { - // ; int TWsGraphicId::IsUid(void) const - _asm mov eax, 507 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_508 () - { - // ; void CWsGraphic::SetGraphicExtension(class MWsObjectProvider *) - _asm mov eax, 508 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_509 () - { - // ; int CWsGraphic::SendSynchronMessage(class TDesC8 const &) const - _asm mov eax, 509 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_510 () - { - // ; int RWsSession::DebugInfo(int, class TDes8 &, int) const - _asm mov eax, 510 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_511 () - { - // ; int RWsSession::DebugInfo(int, int) const - _asm mov eax, 511 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_512 () - { - // ; unsigned long RWindowTreeNode::ClientHandle(void) const - _asm mov eax, 512 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_513 () - { - // ; int RWindowBase::SetBackgroundSurface(class TSurfaceId const &) - _asm mov eax, 513 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_514 () - { - // (noname) - _asm mov eax, 514 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_515 () - { - // ; class TRgb RWindowBase::KeyColor(void) const - _asm mov eax, 515 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_516 () - { - // (noname) - _asm mov eax, 516 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_517 () - { - // (noname) - _asm mov eax, 517 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_518 () - { - // (noname) - _asm mov eax, 518 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_519 () - { - // (noname) - _asm mov eax, 519 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_520 () - { - // (noname) - _asm mov eax, 520 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_521 () - { - // ; int RWindowBase::GetBackgroundSurface(class TSurfaceConfiguration &) const - _asm mov eax, 521 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_522 () - { - // (noname) - _asm mov eax, 522 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_523 () - { - // ; int RWsSession::PreferredSurfaceConfigurationSize(void) const - _asm mov eax, 523 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_524 () - { - // ; int RWsSession::RegisterSurface(int, class TSurfaceId const &) - _asm mov eax, 524 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_525 () - { - // (noname) - _asm mov eax, 525 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_526 () - { - // ; void RWindowBase::RemoveBackgroundSurface(int) - _asm mov eax, 526 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_527 () - { - // (noname) - _asm mov eax, 527 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_528 () - { - // ; int RWindowBase::SetBackgroundSurface(class TSurfaceConfiguration const &, int) - _asm mov eax, 528 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_529 () - { - // ; void RWsSession::UnregisterSurface(int, class TSurfaceId const &) - _asm mov eax, 529 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_530 () - { - // ; void RWindow::ClearRedrawStore(void) - _asm mov eax, 530 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_531 () - { - // ; int RWsSession::Finish(void) - _asm mov eax, 531 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_532 () - { - // ; void RWsSession::SyncMsgBuf(void) - _asm mov eax, 532 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_533 () - { - // ; class RWsSession & CWsGraphic::Session(void) - _asm mov eax, 533 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_534 () - { - // ; int RWindowTreeNode::ScreenNumber(void) const - _asm mov eax, 534 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_535 () - { - // ; void TWsEvent::SetPointerNumber(unsigned char) - _asm mov eax, 535 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_536 () - { - // ; int TAdvancedPointerEvent::DoGetPointerNumber(void) const - _asm mov eax, 536 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_537 () - { - // ; int RWindowBase::ClaimPointerGrab(unsigned char, int) - _asm mov eax, 537 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_538 () - { - // ; int RWindowBase::RequestPointerRepeatEvent(class TTimeIntervalMicroSeconds32, class TRect const &, unsigned char) - _asm mov eax, 538 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_539 () - { - // ; int RWsSession::GetExitHighPressureThreshold(void) const - _asm mov eax, 539 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_540 () - { - // ; int RWsSession::SetCloseProximityThresholds(int, int) - _asm mov eax, 540 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_541 () - { - // ; int RWsSession::SetHighPressureThresholds(int, int) - _asm mov eax, 541 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_542 () - { - // ; int RWindowBase::CancelPointerRepeatEventRequest(unsigned char) - _asm mov eax, 542 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_543 () - { - // ; void TWsEvent::InitAdvancedPointerEvent(enum TPointerEvent::TType, unsigned int, class TPoint3D const &, unsigned char) - _asm mov eax, 543 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_544 () - { - // ; int RWsSession::GetExitCloseProximityThreshold(void) const - _asm mov eax, 544 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_545 () - { - // ; void RWindowBase::EnableAdvancedPointers(void) - _asm mov eax, 545 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_546 () - { - // ; void TWsEvent::SetPointerZ(int) - _asm mov eax, 546 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_547 () - { - // ; int TAdvancedPointerEvent::DoGetProximityAndPressure(void) const - _asm mov eax, 547 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_548 () - { - // ; int TAdvancedPointerEvent::DoGetProximity(void) const - _asm mov eax, 548 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_549 () - { - // ; int TAdvancedPointerEvent::DoGetPressure(void) const - _asm mov eax, 549 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_550 () - { - // ; void RWindowGroup::SimulateAdvancedPointerEvent(class TRawEvent) - _asm mov eax, 550 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_551 () - { - // ; int RWsSession::GetEnterHighPressureThreshold(void) const - _asm mov eax, 551 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_552 () - { - // ; int RWsSession::GetEnterCloseProximityThreshold(void) const - _asm mov eax, 552 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_553 () - { - // ; class TAdvancedPointerEvent & TAdvancedPointerEvent::operator=(class TAdvancedPointerEvent const &) - _asm mov eax, 553 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_554 () - { - // ; TAdvancedPointerEvent::TAdvancedPointerEvent(class TAdvancedPointerEvent const &) - _asm mov eax, 554 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_555 () - { - // ; RWsDrawableSource::RWsDrawableSource(void) - _asm mov eax, 555 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_556 () - { - // ; void RWsDrawableSource::Close(void) - _asm mov eax, 556 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_557 () - { - // ; int RWsDrawableSource::Create(class RSgDrawable const &) - _asm mov eax, 557 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_558 () - { - // ; class TSgDrawableId const & RWsDrawableSource::DrawableId(void) const - _asm mov eax, 558 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_559 () - { - // ; void CWindowGc::DrawResource(class TPoint const &, class RWsDrawableSource const &, enum CWindowGc::TGraphicsRotation) - _asm mov eax, 559 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_560 () - { - // ; void CWindowGc::DrawResource(class TRect const &, class RWsDrawableSource const &, enum CWindowGc::TGraphicsRotation) - _asm mov eax, 560 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_561 () - { - // ; void CWindowGc::DrawResource(class TRect const &, class RWsDrawableSource const &, class TRect const &, enum CWindowGc::TGraphicsRotation) - _asm mov eax, 561 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_562 () - { - // ; void CWindowGc::DrawResource(class TRect const &, class RWsDrawableSource const &, class TDesC8 const &) - _asm mov eax, 562 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_563 () - { - // ; int RDirectScreenAccess::Construct(int) - _asm mov eax, 563 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_564 () - { - // ; class CDirectScreenAccess * CDirectScreenAccess::NewL(class RWsSession &, class CWsScreenDevice &, class RWindowBase &, class MDirectScreenAccess &, int) - _asm mov eax, 564 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_565 () - { - // ; int RWsDrawableSource::Create(class RSgDrawable const &, int) - _asm mov eax, 565 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_566 () - { - // ; RWsDrawableSource::RWsDrawableSource(class RWsSession &) - _asm mov eax, 566 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_567 () - { - // ; int RWsDrawableSource::ScreenNumber(void) const - _asm mov eax, 567 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_568 () - { - // ; void * CWsScreenDevice::GetInterface(unsigned int) - _asm mov eax, 568 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_569 () - { - // ; int CWsScreenDevice::IsCurrentModeDynamic(void) const - _asm mov eax, 569 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_570 () - { - // ; int CWsScreenDevice::IsModeDynamic(int) const - _asm mov eax, 570 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_571 () - { - // ; void const * CWindowGc::Interface(class TUid) const - _asm mov eax, 571 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_572 () - { - // ; void * CWindowGc::Interface(class TUid) - _asm mov eax, 572 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_573 () - { - // ; class RWsSession * RWindowTreeNode::Session(void) const - _asm mov eax, 573 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_574 () - { - // ; void RWsSession::HeapSetBurstFail(int, int, int) - _asm mov eax, 574 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_575 () - { - // ; void RWsSession::EnableWindowSizeCacheL(void) - _asm mov eax, 575 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_576 () - { - // ; void RWindowBase::SetSurfaceTransparency(int) - _asm mov eax, 576 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_577 () - { - // ; class TSize RWindowBase::SizeForEgl(void) const - _asm mov eax, 577 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_578 () - { - // ; int RWindowBase::FixNativeOrientation(void) - _asm mov eax, 578 - _asm jmp common_dispatch - } - -} -#define MAX_ORDINAL 579 - +-- ws32_stubs.h +++ ws32_stubs.h +@@ -1,5207 +1,5193 @@ +/* +* Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* +*/ + + +extern "C" { +void common_dispatch(); + +__declspec(dllexport) +__declspec(naked) +void call_vector_1 () + { + // ; public: __thiscall CWindowGc::CWindowGc(class CWsScreenDevice *) + _asm mov eax, 1 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_2 () + { + // ; public: __thiscall CWsBitmap::CWsBitmap(class RWsSession &) + _asm mov eax, 2 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_3 () + { + // ; public: __thiscall CWsBitmap::CWsBitmap(void) + _asm mov eax, 3 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_4 () + { + // ; public: __thiscall CWsScreenDevice::CWsScreenDevice(class RWsSession &) + _asm mov eax, 4 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_5 () + { + // ; public: __thiscall CWsScreenDevice::CWsScreenDevice(void) + _asm mov eax, 5 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_6 () + { + // ; protected: __thiscall RAnim::RAnim(class RAnimDll &) + _asm mov eax, 6 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_7 () + { + // ; protected: __thiscall RAnim::RAnim(void) + _asm mov eax, 7 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_8 () + { + // ; public: __thiscall RAnimDll::RAnimDll(class RWsSession &) + _asm mov eax, 8 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_9 () + { + // ; public: __thiscall RAnimDll::RAnimDll(void) + _asm mov eax, 9 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_10 () + { + // ; public: __thiscall RBackedUpWindow::RBackedUpWindow(class RWsSession &) + _asm mov eax, 10 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_11 () + { + // ; public: __thiscall RBackedUpWindow::RBackedUpWindow(void) + _asm mov eax, 11 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_12 () + { + // ; public: __thiscall RBlankWindow::RBlankWindow(class RWsSession &) + _asm mov eax, 12 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_13 () + { + // ; public: __thiscall RBlankWindow::RBlankWindow(void) + _asm mov eax, 13 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_14 () + { + // ; public: __thiscall RWindow::RWindow(class RWsSession &) + _asm mov eax, 14 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_15 () + { + // ; public: __thiscall RWindow::RWindow(void) + _asm mov eax, 15 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_16 () + { + // ; public: __thiscall RWindowGroup::RWindowGroup(class RWsSession &) + _asm mov eax, 16 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_17 () + { + // ; public: __thiscall RWindowGroup::RWindowGroup(void) + _asm mov eax, 17 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_18 () + { + // ; public: __thiscall RWsPointerCursor::RWsPointerCursor(class RWsSession &) + _asm mov eax, 18 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_19 () + { + // ; public: __thiscall RWsPointerCursor::RWsPointerCursor(void) + _asm mov eax, 19 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_20 () + { + // ; public: __thiscall RWsSession::RWsSession(void) + _asm mov eax, 20 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_21 () + { + // ; public: __thiscall RWsSprite::RWsSprite(class RWsSession &) + _asm mov eax, 21 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_22 () + { + // ; public: __thiscall RWsSprite::RWsSprite(void) + _asm mov eax, 22 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_23 () + { + // ; protected: __thiscall RWsSpriteBase::RWsSpriteBase(class RWsSession &) + _asm mov eax, 23 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_24 () + { + // ; protected: __thiscall RWsSpriteBase::RWsSpriteBase(void) + _asm mov eax, 24 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_25 () + { + // ; public: virtual __thiscall CWindowGc::~CWindowGc(void) + _asm mov eax, 25 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_26 () + { + // ; public: virtual __thiscall CWsBitmap::~CWsBitmap(void) + _asm mov eax, 26 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_27 () + { + // ; public: virtual __thiscall CWsScreenDevice::~CWsScreenDevice(void) + _asm mov eax, 27 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_28 () + { + // ; public: virtual __thiscall RAnim::~RAnim(void) + _asm mov eax, 28 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_29 () + { + // ; public: virtual __thiscall RAnimDll::~RAnimDll(void) + _asm mov eax, 29 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_30 () + { + // ; public: virtual void __thiscall CWindowGc::Activate(class RDrawableWindow &) + _asm mov eax, 30 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_31 () + { + // ; public: void __thiscall RWindowBase::Activate(void) + _asm mov eax, 31 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_32 () + { + // ; public: int __thiscall RWsSpriteBase::Activate(void) + _asm mov eax, 32 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_33 () + { + // ; public: virtual int __thiscall CWsScreenDevice::AddFile(class TDesC16 const &,int &) + _asm mov eax, 33 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_34 () + { + // ; public: int __thiscall RWindowBase::AddKeyRect(class TRect const &,int,int) + _asm mov eax, 34 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_35 () + { + // ; public: int __thiscall RWindowGroup::AddPriorityKey(unsigned int,unsigned int,unsigned int) + _asm mov eax, 35 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_36 () + { + // ; public: int __thiscall RWindowBase::AllocPointerMoveBuffer(int,unsigned int) + _asm mov eax, 36 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_37 () + { + // ; public: int __thiscall RWsSpriteBase::AppendMember(struct TSpriteMember const &) + _asm mov eax, 37 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_38 () + { + // ; public: void __thiscall RWindowGroup::AutoForeground(int) + _asm mov eax, 38 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_39 () + { + // ; public: void __thiscall RWindow::BeginRedraw(class TRect const &) + _asm mov eax, 39 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_40 () + { + // ; public: void __thiscall RWindow::BeginRedraw(void) + _asm mov eax, 40 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_41 () + { + // ; public: virtual void __thiscall CWindowGc::BitBlt(class TPoint const &,class CFbsBitmap const *) + _asm mov eax, 41 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_42 () + { + // ; public: virtual void __thiscall CWindowGc::BitBlt(class TPoint const &,class CFbsBitmap const *,class TRect const &) + _asm mov eax, 42 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_43 () + { + // ; public: virtual void __thiscall CWindowGc::BitBlt(class TPoint const &,class CWsBitmap const *) + _asm mov eax, 43 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_44 () + { + // ; public: virtual void __thiscall CWindowGc::BitBlt(class TPoint const &,class CWsBitmap const *,class TRect const &) + _asm mov eax, 44 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_45 () + { + // ; public: virtual void __thiscall CWindowGc::BitBltMasked(class TPoint const &,class CFbsBitmap const *,class TRect const &,class CFbsBitmap const *,int) + _asm mov eax, 45 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_46 () + { + // ; public: virtual void __thiscall CWindowGc::BitBltMasked(class TPoint const &,class CWsBitmap const *,class TRect const &,class CWsBitmap const *,int) + _asm mov eax, 46 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_47 () + { + // ; int RBackedUpWindow::BitmapHandle(void) const + _asm mov eax, 47 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_48 () + { + // ; public: void __thiscall RWindowGroup::CancelCaptureKey(long) + _asm mov eax, 48 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_49 () + { + // ; public: void __thiscall RWindowGroup::CancelCaptureKeyUpAndDowns(long) + _asm mov eax, 49 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_50 () + { + // ; public: virtual void __thiscall CWindowGc::CancelClippingRect(void) + _asm mov eax, 50 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_51 () + { + // ; public: virtual void __thiscall CWindowGc::CancelClippingRegion(void) + _asm mov eax, 51 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_52 () + { + // ; public: void __thiscall RWindowBase::CancelPointerRepeatEventRequest(void) + _asm mov eax, 52 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_53 () + { + // ; public: void __thiscall RWindowGroup::CancelTextCursor(void) + _asm mov eax, 53 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_54 () + { + // ; public: long __thiscall RWindowGroup::CaptureKey(unsigned int,unsigned int,unsigned int) + _asm mov eax, 54 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_55 () + { + // ; public: long __thiscall RWindowGroup::CaptureKeyUpAndDowns(unsigned int,unsigned int,unsigned int) + _asm mov eax, 55 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_56 () + { + // ; public: unsigned long __thiscall RWindowTreeNode::Child(void)const + _asm mov eax, 56 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_57 () + { + // ; public: void __thiscall RWindowBase::ClaimPointerGrab(int) + _asm mov eax, 57 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_58 () + { + // ; public: int __thiscall RWsSession::ClaimSystemPointerCursorList(void) + _asm mov eax, 58 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_59 () + { + // ; public: virtual void __thiscall CWindowGc::Clear(class TRect const &) + _asm mov eax, 59 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_60 () + { + // ; public: virtual void __thiscall CWindowGc::Clear(void) + _asm mov eax, 60 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_61 () + { + // ; public: int __thiscall RWsSession::ClearHotKeys(enum THotKey) + _asm mov eax, 61 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_62 () + { + // ; public: void __thiscall RWsSession::ClearSystemPointerCursor(int) + _asm mov eax, 62 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_63 () + { + // ; public: virtual void __thiscall RAnim::Close(void) + _asm mov eax, 63 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_64 () + { + // ; public: virtual void __thiscall RAnimDll::Close(void) + _asm mov eax, 64 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_65 () + { + // ; public: void __thiscall RWindowTreeNode::Close(void) + _asm mov eax, 65 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_66 () + { + // ; public: void __thiscall RWsSpriteBase::Close(void) + _asm mov eax, 66 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_67 () + { + // ; protected: void __thiscall RAnim::Command(int) + _asm mov eax, 67 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_68 () + { + // ; protected: void __thiscall RAnim::Command(int,class TPtrC8 const &) + _asm mov eax, 68 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_69 () + { + // ; protected: int __thiscall RAnim::CommandReply(int) + _asm mov eax, 69 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_70 () + { + // ; protected: int __thiscall RAnim::CommandReply(int,class TPtrC8 const &) + _asm mov eax, 70 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_71 () + { + // ; public: void __thiscall RWsSession::ComputeMode(enum RWsSession::TComputeMode) + _asm mov eax, 71 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_72 () + { + // ; public: int __thiscall RWsSession::Connect(void) + _asm mov eax, 72 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_73 () + { + // ; public: virtual int __thiscall CWindowGc::Construct(void) + _asm mov eax, 73 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_74 () + { + // ; public: int __thiscall CWsScreenDevice::Construct(void) + _asm mov eax, 74 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_75 () + { + // ; protected: int __thiscall RAnim::Construct(class RWindowBase const &,int,class TDesC8 const &) + _asm mov eax, 75 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_76 () + { + // ; public: int __thiscall RBackedUpWindow::Construct(class RWindowTreeNode const &,enum TDisplayMode,unsigned long) + _asm mov eax, 76 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_77 () + { + // ; public: int __thiscall RBlankWindow::Construct(class RWindowTreeNode const &,unsigned long) + _asm mov eax, 77 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_78 () + { + // ; public: int __thiscall RWindow::Construct(class RWindowTreeNode const &,unsigned long) + _asm mov eax, 78 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_79 () + { + // ; public: int __thiscall RWindowGroup::Construct(unsigned long) + _asm mov eax, 79 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_80 () + { + // ; public: int __thiscall RWindowGroup::Construct(unsigned long,int) + _asm mov eax, 80 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_81 () + { + // ; public: int __thiscall RWsPointerCursor::Construct(int) + _asm mov eax, 81 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_82 () + { + // ; public: int __thiscall RWsSprite::Construct(class RWindowTreeNode &,class TPoint const &,int) + _asm mov eax, 82 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_83 () + { + // ; public: virtual void __thiscall CWindowGc::CopyRect(class TPoint const &,class TRect const &) + _asm mov eax, 83 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_84 () + { + // ; public: int __thiscall CWsScreenDevice::CopyScreenToBitmap(class CFbsBitmap const *)const + _asm mov eax, 84 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_85 () + { + // ; public: int __thiscall CWsScreenDevice::CopyScreenToBitmap(class CFbsBitmap const *,class TRect const &)const + _asm mov eax, 85 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_86 () + { + // ; public: int __thiscall CWsBitmap::Create(class TSize const &,enum TDisplayMode) + _asm mov eax, 86 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_87 () + { + // ; public: virtual int __thiscall CWsScreenDevice::CreateContext(class CGraphicsContext * &) + _asm mov eax, 87 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_88 () + { + // ; public: virtual void __thiscall CWindowGc::Deactivate(void) + _asm mov eax, 88 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_89 () + { + // ; public: void __thiscall RWindowGroup::DefaultOwningWindow(void) + _asm mov eax, 89 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_90 () + { + // ; public: void __thiscall RAnim::Destroy(void) + _asm mov eax, 90 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_91 () + { + // ; public: void __thiscall RAnimDll::Destroy(void) + _asm mov eax, 91 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_92 () + { + // ; public: void __thiscall RWindowTreeNode::Destroy(void) + _asm mov eax, 92 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_93 () + { + // ; public: virtual class CGraphicsDevice * __thiscall CWindowGc::Device(void)const + _asm mov eax, 93 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_94 () + { + // ; public: void __thiscall RWindowTreeNode::DisableGroupChangeEvents(void) + _asm mov eax, 94 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_95 () + { + // ; public: void __thiscall RWindowGroup::DisableKeyClick(int) + _asm mov eax, 95 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_96 () + { + // ; public: void __thiscall RWindowTreeNode::DisableModifierChangedEvents(void) + _asm mov eax, 96 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_97 () + { + // ; public: void __thiscall RWindowTreeNode::DisableOnEvents(void) + _asm mov eax, 97 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_98 () + { + // ; public: void __thiscall RWindowTreeNode::DisableErrorMessages(void) + _asm mov eax, 98 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_99 () + { + // ; public: void __thiscall RWindowBase::DisablePointerMoveBuffer(void) + _asm mov eax, 99 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_100 () + { + // ; public: virtual void __thiscall CWindowGc::DiscardBrushPattern(void) + _asm mov eax, 100 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_101 () + { + // ; public: virtual void __thiscall CWindowGc::DiscardFont(void) + _asm mov eax, 101 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_102 () + { + // ; public: void __thiscall RWindowBase::DiscardPointerMoveBuffer(void) + _asm mov eax, 102 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_103 () + { + // ; public: void __thiscall RWsSession::Close(void) + _asm mov eax, 103 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_104 () + { + // ; public: virtual enum TDisplayMode __thiscall CWsScreenDevice::DisplayMode(void)const + _asm mov eax, 104 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_105 () + { + // ; public: virtual void __thiscall CWindowGc::DrawArc(class TRect const &,class TPoint const &,class TPoint const &) + _asm mov eax, 105 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_106 () + { + // ; public: virtual void __thiscall CWindowGc::DrawBitmap(class TPoint const &,class CFbsBitmap const *) + _asm mov eax, 106 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_107 () + { + // ; public: virtual void __thiscall CWindowGc::DrawBitmap(class TRect const &,class CFbsBitmap const *,class TRect const &) + _asm mov eax, 107 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_108 () + { + // ; public: virtual void __thiscall CWindowGc::DrawBitmap(class TRect const &,class CFbsBitmap const *) + _asm mov eax, 108 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_109 () + { + // ; public: virtual void __thiscall CWindowGc::DrawEllipse(class TRect const &) + _asm mov eax, 109 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_110 () + { + // ; public: virtual void __thiscall CWindowGc::DrawLine(class TPoint const &,class TPoint const &) + _asm mov eax, 110 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_111 () + { + // ; public: virtual void __thiscall CWindowGc::DrawLineBy(class TPoint const &) + _asm mov eax, 111 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_112 () + { + // ; public: virtual void __thiscall CWindowGc::DrawLineTo(class TPoint const &) + _asm mov eax, 112 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_113 () + { + // ; public: virtual void __thiscall CWindowGc::DrawPie(class TRect const &,class TPoint const &,class TPoint const &) + _asm mov eax, 113 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_114 () + { + // ; public: virtual void __thiscall CWindowGc::DrawPolyLine(class CArrayFix const *) + _asm mov eax, 114 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_115 () + { + // ; public: virtual void __thiscall CWindowGc::DrawPolyLine(class TPoint const *,int) + _asm mov eax, 115 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_116 () + { + // ; public: virtual int __thiscall CWindowGc::DrawPolygon(class CArrayFix const *,enum CGraphicsContext::TFillRule) + _asm mov eax, 116 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_117 () + { + // ; public: virtual int __thiscall CWindowGc::DrawPolygon(class TPoint const *,int,enum CGraphicsContext::TFillRule) + _asm mov eax, 117 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_118 () + { + // ; public: virtual void __thiscall CWindowGc::DrawRect(class TRect const &) + _asm mov eax, 118 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_119 () + { + // ; public: virtual void __thiscall CWindowGc::DrawRoundRect(class TRect const &,class TSize const &) + _asm mov eax, 119 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_120 () + { + // ; public: virtual void __thiscall CWindowGc::DrawText(class TDesC16 const &,class TPoint const &) + _asm mov eax, 120 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_121 () + { + // ; public: virtual void __thiscall CWindowGc::DrawText(class TDesC16 const &,class TRect const &,int,enum CGraphicsContext::TTextAlign,int) + _asm mov eax, 121 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_122 () + { + // ; public: virtual void __thiscall CWindowGc::DrawTextVertical(class TDesC16 const &,class TPoint const &,int) + _asm mov eax, 122 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_123 () + { + // ; public: virtual void __thiscall CWindowGc::DrawTextVertical(class TDesC16 const &,class TRect const &,int,int,enum CGraphicsContext::TTextAlign,int) + _asm mov eax, 123 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_124 () + { + // ; public: int __thiscall CWsBitmap::Duplicate(int) + _asm mov eax, 124 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_125 () + { + // ; public: void __thiscall RWindowBase::EnableBackup(unsigned int) + _asm mov eax, 125 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_126 () + { + // ; public: int __thiscall RWindowTreeNode::EnableGroupChangeEvents(void) + _asm mov eax, 126 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_127 () + { + // ; public: int __thiscall RWindowTreeNode::EnableModifierChangedEvents(unsigned int,enum TEventControl) + _asm mov eax, 127 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_128 () + { + // ; public: int __thiscall RWindowTreeNode::EnableOnEvents(enum TEventControl) + _asm mov eax, 128 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_129 () + { + // ; public: int __thiscall RWindowTreeNode::EnableErrorMessages(enum TEventControl) + _asm mov eax, 129 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_130 () + { + // ; public: void __thiscall RWindowBase::EnablePointerMoveBuffer(void) + _asm mov eax, 130 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_131 () + { + // ; public: void __thiscall RWindowGroup::EnableReceiptOfFocus(int) + _asm mov eax, 131 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_132 () + { + // ; public: void __thiscall RWindow::EndRedraw(void) + _asm mov eax, 132 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_133 () + { + // ; public: void __thiscall RWsSession::EventReady(class TRequestStatus *) + _asm mov eax, 133 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_134 () + { + // ; public: void __thiscall RWsSession::EventReadyCancel(void) + _asm mov eax, 134 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_135 () + { + // ; int RWsSession::FetchMessage(class TUid &, class TPtr8 &, class TWsEvent const &) const + _asm mov eax, 135 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_136 () + { + // ; int RWsSession::FindWindowGroupIdentifier(int, class TDesC16 const &, int) const + _asm mov eax, 136 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_137 () + { + // ; int RWsSession::FindWindowGroupIdentifier(int, class TThreadId) const + _asm mov eax, 137 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_138 () + { + // ; public: void __thiscall RWsSession::Flush(void) + _asm mov eax, 138 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_139 () + { + // ; public: virtual int __thiscall CWsScreenDevice::FontHeightInPixels(int,int)const + _asm mov eax, 139 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_140 () + { + // ; public: virtual int __thiscall CWsScreenDevice::FontHeightInTwips(int,int)const + _asm mov eax, 140 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_141 () + { + // ; public: void __thiscall RWindowBase::FreePointerMoveBuffer(void) + _asm mov eax, 141 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_142 () + { + // ; public: void __thiscall RWsSession::FreeSystemPointerCursorList(void) + _asm mov eax, 142 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_143 () + { + // ; public: int __thiscall RWindowTreeNode::FullOrdinalPosition(void)const + _asm mov eax, 143 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_144 () + { + // ; public: class TRgb __thiscall RWsSession::GetBackgroundColor(void)const + _asm mov eax, 144 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_145 () + { + // ; int RWsSession::GetDefaultOwningWindow(void) const + _asm mov eax, 145 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_146 () + { + // ; void RWsSession::GetDoubleClickSettings(class TTimeIntervalMicroSeconds32 &, int &) const + _asm mov eax, 146 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_147 () + { + // ; void RWsSession::GetEvent(class TWsEvent &) const + _asm mov eax, 147 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_148 () + { + // ; int RWsSession::GetFocusWindowGroup(void) const + _asm mov eax, 148 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_149 () + { + // ; public: int __thiscall CWsScreenDevice::GetFontById(class CFont * &,class TUid,class TAlgStyle const &) + _asm mov eax, 149 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_150 () + { + // ; void RWindow::GetInvalidRegion(class RRegion &) const + _asm mov eax, 150 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_151 () + { + // ; void RWsSession::GetKeyboardRepeatRate(class TTimeIntervalMicroSeconds32 &, class TTimeIntervalMicroSeconds32 &) const + _asm mov eax, 151 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_152 () + { + // ; public: int __thiscall RWsSession::GetModifierState(void)const + _asm mov eax, 152 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_153 () + { + // ; public: virtual int __thiscall CWsScreenDevice::GetNearestFontInPixels(class CFont * &,class TFontSpec const &) + _asm mov eax, 153 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_154 () + { + // ; public: virtual int __thiscall CWsScreenDevice::GetNearestFontInTwips(class CFont * &,class TFontSpec const &) + _asm mov eax, 154 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_155 () + { + // ; public: virtual int __thiscall CWsScreenDevice::GetPalette(class CPalette * &)const + _asm mov eax, 155 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_156 () + { + // ; public: virtual void __thiscall CWsScreenDevice::GetPixel(class TRgb &,class TPoint const &)const + _asm mov eax, 156 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_157 () + { + // ; void RWsSession::GetPriorityKey(class TWsPriorityKeyEvent &) const + _asm mov eax, 157 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_158 () + { + // ; public: void __thiscall RWsSession::GetRedraw(class TWsRedrawEvent &) + _asm mov eax, 158 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_159 () + { + // ; public: virtual void __thiscall CWsScreenDevice::GetScanLine(class TDes8 &,class TPoint const &,int,enum TDisplayMode)const + _asm mov eax, 159 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_160 () + { + // ; int RWsSession::GetWindowGroupClientThreadId(int, class TThreadId &) const + _asm mov eax, 160 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_161 () + { + // ; int RWsSession::GetWindowGroupHandle(int) const + _asm mov eax, 161 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_162 () + { + // ; int RWsSession::GetWindowGroupNameFromIdentifier(int, class TDes16 &) const + _asm mov eax, 162 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_163 () + { + // ; int RWsSession::GetWindowGroupOrdinalPriority(int) const + _asm mov eax, 163 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_164 () + { + // ; public: int __thiscall RWsSession::HeapCount(void)const + _asm mov eax, 164 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_165 () + { + // ; public: void __thiscall RWsSession::HeapSetFail(int,int) + _asm mov eax, 165 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_166 () + { + // ; public: virtual int __thiscall CWsScreenDevice::HorizontalPixelsToTwips(int)const + _asm mov eax, 166 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_167 () + { + // ; public: virtual int __thiscall CWsScreenDevice::HorizontalTwipsToPixels(int)const + _asm mov eax, 167 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_168 () + { + // ; public: int __thiscall RWindowGroup::Identifier(void)const + _asm mov eax, 168 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_169 () + { + // ; public: class TPoint __thiscall RWindowBase::InquireOffset(class RWindowTreeNode const &)const + _asm mov eax, 169 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_170 () + { + // ; public: void __thiscall CWsBitmap::InternalizeL(class RReadStream &) + _asm mov eax, 170 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_171 () + { + // ; public: void __thiscall RWindow::Invalidate(class TRect const &) + _asm mov eax, 171 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_172 () + { + // ; public: void __thiscall RWindow::Invalidate(void) + _asm mov eax, 172 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_173 () + { + // ; public: int __thiscall CWsBitmap::Load(class TDesC16 const &,long,int) + _asm mov eax, 173 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_174 () + { + // ; public: int __thiscall RAnimDll::Load(class TDesC16 const &) + _asm mov eax, 174 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_175 () + { + // ; public: void __thiscall RWsSession::LogMessage(class TBuf<128> const &) + _asm mov eax, 175 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_176 () + { + // ; public: void __thiscall RBackedUpWindow::MaintainBackup(void) + _asm mov eax, 176 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_177 () + { + // ; public: virtual void __thiscall CWindowGc::MapColors(class TRect const &,class TRgb const *,int,int) + _asm mov eax, 177 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_178 () + { + // ; public: virtual void __thiscall CWindowGc::MoveBy(class TPoint const &) + _asm mov eax, 178 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_179 () + { + // ; public: virtual void __thiscall CWindowGc::MoveTo(class TPoint const &) + _asm mov eax, 179 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_180 () + { + // ; public: int __thiscall RWindowGroup::Name(class TDes16 &)const + _asm mov eax, 180 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_181 () + { + // ; public: unsigned long __thiscall RWindowTreeNode::NextSibling(void)const + _asm mov eax, 181 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_182 () + { + // ; public: virtual int __thiscall CWsScreenDevice::NumTypefaces(void)const + _asm mov eax, 182 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_183 () + { + // ; public: int __thiscall RWsSession::NumWindowGroups(int)const + _asm mov eax, 183 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_184 () + { + // ; public: int __thiscall RWsSession::NumWindowGroups(void)const + _asm mov eax, 184 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_185 () + { + // ; public: int __thiscall RWindowTreeNode::OrdinalPosition(void)const + _asm mov eax, 185 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_186 () + { + // ; public: virtual void __thiscall CWsScreenDevice::PaletteAttributes(int &,int &)const + _asm mov eax, 186 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_187 () + { + // ; public: unsigned long __thiscall RWindowTreeNode::Parent(void)const + _asm mov eax, 187 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_188 () + { + // ; public: void __thiscall RWsSession::PasswordEntered(void) + _asm mov eax, 188 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_189 () + { + // ; public: int __thiscall RWindowBase::PasswordWindow(enum TPasswordMode) + _asm mov eax, 189 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_190 () + { + // ; public: virtual void __thiscall CWindowGc::Plot(class TPoint const &) + _asm mov eax, 190 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_191 () + { + // ; public: void __thiscall RWindowBase::PointerFilter(unsigned long,unsigned long) + _asm mov eax, 191 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_192 () + { + // ; public: class TRect __thiscall CWsScreenDevice::PointerRect(void)const + _asm mov eax, 192 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_193 () + { + // ; public: class TPoint __thiscall RWindowBase::Position(void)const + _asm mov eax, 193 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_194 () + { + // ; public: unsigned long __thiscall RWindowTreeNode::PrevSibling(void)const + _asm mov eax, 194 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_195 () + { + // ; public: void __thiscall RWsSession::PriorityKeyReady(class TRequestStatus *) + _asm mov eax, 195 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_196 () + { + // ; public: void __thiscall RWsSession::PriorityKeyReadyCancel(void) + _asm mov eax, 196 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_197 () + { + // ; public: void __thiscall RWsSession::PurgePointerEvents(void) + _asm mov eax, 197 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_198 () + { + // ; int CWsScreenDevice::RectCompare(class TRect const &, class TRect const &) const + _asm mov eax, 198 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_199 () + { + // ; public: void __thiscall RWsSession::RedrawReady(class TRequestStatus *) + _asm mov eax, 199 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_200 () + { + // ; public: void __thiscall RWsSession::RedrawReadyCancel(void) + _asm mov eax, 200 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_201 () + { + // ; public: virtual void __thiscall CWsScreenDevice::ReleaseFont(class CFont *) + _asm mov eax, 201 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_202 () + { + // ; public: void __thiscall RWindowBase::RemoveAllKeyRects(void) + _asm mov eax, 202 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_203 () + { + // ; public: virtual void __thiscall CWsScreenDevice::RemoveFile(int) + _asm mov eax, 203 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_204 () + { + // ; public: void __thiscall RWindowGroup::RemovePriorityKey(unsigned int,unsigned int,unsigned int) + _asm mov eax, 204 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_205 () + { + // ; public: void __thiscall RWindowBase::RequestPointerRepeatEvent(class TTimeIntervalMicroSeconds32,class TRect const &) + _asm mov eax, 205 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_206 () + { + // ; public: virtual void __thiscall CWindowGc::Reset(void) + _asm mov eax, 206 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_207 () + { + // ; public: void __thiscall CWsBitmap::Reset(void) + _asm mov eax, 207 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_208 () + { + // ; int RWsSession::ResourceCount(void) const + _asm mov eax, 208 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_209 () + { + // ; public: int __thiscall RWsSession::RestoreDefaultHotKey(enum THotKey) + _asm mov eax, 209 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_210 () + { + // ; int RWindowBase::RetrievePointerMoveBuffer(class TDes8 &) const + _asm mov eax, 210 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_211 () + { + // ; public: void __thiscall RDrawableWindow::Scroll(class TPoint const &) + _asm mov eax, 211 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_212 () + { + // ; public: void __thiscall RDrawableWindow::Scroll(class TPoint const &,class TRect const &) + _asm mov eax, 212 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_213 () + { + // ; public: void __thiscall RDrawableWindow::Scroll(class TRect const &,class TPoint const &,class TRect const &) + _asm mov eax, 213 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_214 () + { + // ; public: void __thiscall RDrawableWindow::Scroll(class TRect const &,class TPoint const &) + _asm mov eax, 214 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_215 () + { + // ; public: int __thiscall RWsSession::SendEventToWindowGroup(int,class TWsEvent const &) + _asm mov eax, 215 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_216 () + { + // ; public: int __thiscall RWsSession::SendMessageToWindowGroup(int,class TUid,class TDesC8 const &) + _asm mov eax, 216 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_217 () + { + // ; public: int __thiscall RWsSession::SetAutoFlush(int) + _asm mov eax, 217 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_218 () + { + // ; public: void __thiscall RWindow::SetBackgroundColor(class TRgb) + _asm mov eax, 218 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_219 () + { + // ; public: void __thiscall RWindow::SetBackgroundColor(void) + _asm mov eax, 219 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_220 () + { + // ; public: void __thiscall RWsSession::SetBackgroundColor(class TRgb) + _asm mov eax, 220 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_221 () + { + // ; public: virtual void __thiscall CWindowGc::SetBrushColor(class TRgb const &) + _asm mov eax, 221 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_222 () + { + // ; public: virtual void __thiscall CWindowGc::SetBrushOrigin(class TPoint const &) + _asm mov eax, 222 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_223 () + { + // ; public: virtual void __thiscall CWindowGc::SetBrushStyle(enum CGraphicsContext::TBrushStyle) + _asm mov eax, 223 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_224 () + { + // ; public: virtual void __thiscall CWindowGc::SetCharJustification(int,int) + _asm mov eax, 224 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_225 () + { + // ; public: virtual void __thiscall CWindowGc::SetClippingRect(class TRect const &) + _asm mov eax, 225 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_226 () + { + // ; public: virtual int __thiscall CWindowGc::SetClippingRegion(class TRegion const &) + _asm mov eax, 226 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_227 () + { + // ; public: void __thiscall RBlankWindow::SetColor(class TRgb) + _asm mov eax, 227 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_228 () + { + // ; public: int __thiscall RWindowBase::SetCornerType(enum TCornerType,int) + _asm mov eax, 228 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_229 () + { + // ; public: void __thiscall RWindowTreeNode::SetCustomPointerCursor(class RWsPointerCursor const &) + _asm mov eax, 229 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_230 () + { + // ; public: virtual void __thiscall CWindowGc::SetDitherOrigin(class TPoint const &) + _asm mov eax, 230 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_231 () + { + // ; public: int __thiscall RWsSession::SetDoubleClick(class TTimeIntervalMicroSeconds32 const &,int) + _asm mov eax, 231 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_232 () + { + // ; public: virtual void __thiscall CWindowGc::SetDrawMode(enum CGraphicsContext::TDrawMode) + _asm mov eax, 232 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_233 () + { + // ; public: void __thiscall RBlankWindow::SetExtent(class TPoint const &,class TSize const &) + _asm mov eax, 233 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_234 () + { + // ; public: void __thiscall RWindow::SetExtent(class TPoint const &,class TSize const &) + _asm mov eax, 234 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_235 () + { + // ; public: int __thiscall RWindowBase::SetExtentErr(class TPoint const &,class TSize const &) + _asm mov eax, 235 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_236 () + { + // ; public: int __thiscall RWsSession::SetHotKey(enum THotKey,unsigned int,unsigned int,unsigned int) + _asm mov eax, 236 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_237 () + { + // ; public: int __thiscall RWsSession::SetKeyboardRepeatRate(class TTimeIntervalMicroSeconds32 const &,class TTimeIntervalMicroSeconds32 const &) + _asm mov eax, 237 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_238 () + { + // ; public: int __thiscall RWsSession::SetModifierState(enum TEventModifier,enum TModifierState) + _asm mov eax, 238 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_239 () + { + // ; public: int __thiscall RWindowGroup::SetName(class TDesC16 const &) + _asm mov eax, 239 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_240 () + { + // ; public: void __thiscall RWindowTreeNode::SetOrdinalPosition(int) + _asm mov eax, 240 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_241 () + { + // ; public: void __thiscall RWindowTreeNode::SetOrdinalPosition(int,int) + _asm mov eax, 241 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_242 () + { + // ; public: void __thiscall RWindowGroup::SetOrdinalPriorityAdjust(int) + _asm mov eax, 242 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_243 () + { + // ; public: virtual void __thiscall CWindowGc::SetOrigin(class TPoint const &) + _asm mov eax, 243 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_244 () + { + // ; public: void __thiscall RWindowGroup::SetOwningWindowGroup(int) + _asm mov eax, 244 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_245 () + { + // ; public: virtual void __thiscall CWsScreenDevice::SetPalette(class CPalette *) + _asm mov eax, 245 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_246 () + { + // ; public: virtual void __thiscall CWindowGc::SetPenColor(class TRgb const &) + _asm mov eax, 246 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_247 () + { + // ; public: virtual void __thiscall CWindowGc::SetPenSize(class TSize const &) + _asm mov eax, 247 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_248 () + { + // ; public: virtual void __thiscall CWindowGc::SetPenStyle(enum CGraphicsContext::TPenStyle) + _asm mov eax, 248 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_249 () + { + // ; public: void __thiscall RWindowBase::SetPointerCapture(int) + _asm mov eax, 249 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_250 () + { + // ; public: int __thiscall RWindowTreeNode::SetPointerCursor(int) + _asm mov eax, 250 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_251 () + { + // ; public: void __thiscall RWindowBase::SetPointerGrab(int) + _asm mov eax, 251 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_252 () + { + // ; public: void __thiscall RWindowBase::SetPosition(class TPoint const &) + _asm mov eax, 252 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_253 () + { + // ; public: void __thiscall RWsSprite::SetPosition(class TPoint const &) + _asm mov eax, 253 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_254 () + { + // ; public: int __thiscall RWindowBase::SetRequiredDisplayMode(enum TDisplayMode) + _asm mov eax, 254 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_255 () + { + // ; public: void __thiscall RWindowBase::SetShadowDisabled(int) + _asm mov eax, 255 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_256 () + { + // ; public: void __thiscall RWindowBase::SetShadowHeight(int) + _asm mov eax, 256 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_257 () + { + // ; public: void __thiscall RWsSession::SetShadowVector(class TPoint const &) + _asm mov eax, 257 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_258 () + { + // ; public: int __thiscall RWindowBase::SetShape(class TRegion const &) + _asm mov eax, 258 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_259 () + { + // ; public: void __thiscall RBlankWindow::SetSize(class TSize const &) + _asm mov eax, 259 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_260 () + { + // ; public: void __thiscall RWindow::SetSize(class TSize const &) + _asm mov eax, 260 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_261 () + { + // ; public: int __thiscall RWindowBase::SetSizeErr(class TSize const &) + _asm mov eax, 261 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_262 () + { + // ; public: virtual void __thiscall CWindowGc::SetStrikethroughStyle(enum TFontStrikethrough) + _asm mov eax, 262 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_263 () + { + // ; public: int __thiscall RWsSession::SetSystemPointerCursor(class RWsPointerCursor const &,int) + _asm mov eax, 263 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_264 () + { + // ; public: void __thiscall RWindowGroup::SetTextCursor(class RWindowBase &,class TPoint const &,struct TTextCursor const &) + _asm mov eax, 264 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_265 () + { + // ; public: void __thiscall RWindowGroup::SetTextCursor(class RWindowBase &,class TPoint const &,struct TTextCursor const &,class TRect const &) + _asm mov eax, 265 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_266 () + { + // ; public: virtual void __thiscall CWindowGc::SetUnderlineStyle(enum TFontUnderline) + _asm mov eax, 266 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_267 () + { + // ; public: void __thiscall RWindowBase::SetVisible(int) + _asm mov eax, 267 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_268 () + { + // ; public: int __thiscall RWsSession::SetWindowGroupOrdinalPosition(int,int) + _asm mov eax, 268 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_269 () + { + // ; public: virtual void __thiscall CWindowGc::SetWordJustification(int,int) + _asm mov eax, 269 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_270 () + { + // ; public: class TPoint __thiscall RWsSession::ShadowVector(void)const + _asm mov eax, 270 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_271 () + { + // ; public: void __thiscall RWsSession::SimulateRawEvent(class TRawEvent) + _asm mov eax, 271 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_272 () + { + // ; public: class TSize __thiscall RWindowBase::Size(void)const + _asm mov eax, 272 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_273 () + { + // ; public: virtual class TSize __thiscall CWsScreenDevice::SizeInPixels(void)const + _asm mov eax, 273 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_274 () + { + // ; public: virtual class TSize __thiscall CWsScreenDevice::SizeInTwips(void)const + _asm mov eax, 274 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_275 () + { + // ; public: void __thiscall RWsSession::SystemInfo(int &,struct RWsSession::SSystemInfo &) + _asm mov eax, 275 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_276 () + { + // ; public: void __thiscall RWsSession::TestWrite(int,int,void const *,int) + _asm mov eax, 276 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_277 () + { + // ; public: void __thiscall RWsSession::TestWriteReply(int,int,void const *,int) + _asm mov eax, 277 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_278 () + { + // ; public: void __thiscall RWsSession::TestWriteReplyP(int,int,void const *,int,class TDes8 *) + _asm mov eax, 278 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_279 () + { + // ; public: virtual void __thiscall CWsScreenDevice::TypefaceSupport(class TTypefaceSupport &,int)const + _asm mov eax, 279 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_280 () + { + // ; public: void __thiscall RBackedUpWindow::UpdateBackupBitmap(void) + _asm mov eax, 280 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_281 () + { + // ; public: int __thiscall RWsSpriteBase::UpdateMember(int,struct TSpriteMember const &) + _asm mov eax, 281 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_282 () + { + // ; public: void __thiscall RWsSpriteBase::UpdateMember(int) + _asm mov eax, 282 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_283 () + { + // ; public: void __thiscall RBackedUpWindow::UpdateScreen(class TRegion const &) + _asm mov eax, 283 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_284 () + { + // ; public: void __thiscall RBackedUpWindow::UpdateScreen(void) + _asm mov eax, 284 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_285 () + { + // ; public: virtual void __thiscall CWindowGc::UseBrushPattern(class CFbsBitmap const *) + _asm mov eax, 285 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_286 () + { + // ; public: virtual void __thiscall CWindowGc::UseFont(class CFont const *) + _asm mov eax, 286 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_287 () + { + // ; class TVersion RWsSession::Version(void) const + _asm mov eax, 287 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_288 () + { + // ; public: virtual int __thiscall CWsScreenDevice::VerticalPixelsToTwips(int)const + _asm mov eax, 288 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_289 () + { + // ; public: virtual int __thiscall CWsScreenDevice::VerticalTwipsToPixels(int)const + _asm mov eax, 289 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_290 () + { + // ; int RWsSession::WindowGroupList(int, class CArrayFixFlat *) const + _asm mov eax, 290 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_291 () + { + // ; int RWsSession::WindowGroupList(class CArrayFixFlat *) const + _asm mov eax, 291 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_292 () + { + // ; public: int __thiscall RWsSession::RequestOffEvents(int,class RWindowTreeNode *) + _asm mov eax, 292 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_293 () + { + // ; public: void __thiscall RWindowTreeNode::__DbgTestInvariant(void)const + _asm mov eax, 293 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_294 () + { + // ; public: void __thiscall RWindowGroup::DisableScreenChangeEvents(void) + _asm mov eax, 294 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_295 () + { + // ; public: int __thiscall RWindowGroup::EnableScreenChangeEvents(void) + _asm mov eax, 295 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_296 () + { + // ; public: void __thiscall RWindowBase::FadeBehind(int) + _asm mov eax, 296 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_297 () + { + // ; public: void __thiscall CWsScreenDevice::GetDefaultScreenSizeAndRotation(struct TPixelsAndRotation &)const + _asm mov eax, 297 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_298 () + { + // ; public: void __thiscall CWsScreenDevice::GetDefaultScreenSizeAndRotation(struct TPixelsTwipsAndRotation &)const + _asm mov eax, 298 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_299 () + { + // ; enum TDisplayMode RWindowBase::DisplayMode(void) const + _asm mov eax, 299 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_300 () + { + // ; public: enum TDisplayMode __thiscall RWsSession::GetDefModeMaxNumColors(int &,int &)const + _asm mov eax, 300 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_301 () + { + // ; public: void __thiscall CWsScreenDevice::GetScreenModeSizeAndRotation(int,struct TPixelsAndRotation &)const + _asm mov eax, 301 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_302 () + { + // ; public: void __thiscall CWsScreenDevice::GetScreenModeSizeAndRotation(int,struct TPixelsTwipsAndRotation &)const + _asm mov eax, 302 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_303 () + { + // ; public: int __thiscall CWsScreenDevice::NumScreenModes(void)const + _asm mov eax, 303 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_304 () + { + // ; public: enum TScreenModeEnforcement __thiscall CWsScreenDevice::ScreenModeEnforcement(void)const + _asm mov eax, 304 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_305 () + { + // ; public: virtual void __thiscall CWindowGc::SetFaded(int) + _asm mov eax, 305 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_306 () + { + // ; public: void __thiscall RWindowTreeNode::SetFaded(int,enum RWindowTreeNode::TFadeControl) + _asm mov eax, 306 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_307 () + { + // ; public: void __thiscall RWindowTreeNode::SetNonFading(int) + _asm mov eax, 307 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_308 () + { + // ; public: void __thiscall CWsScreenDevice::SetScreenMode(int) + _asm mov eax, 308 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_309 () + { + // ; public: void __thiscall CWsScreenDevice::SetScreenModeEnforcement(enum TScreenModeEnforcement)const + _asm mov eax, 309 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_310 () + { + // ; public: void __thiscall CWsScreenDevice::SetScreenSizeAndRotation(struct TPixelsAndRotation const &) + _asm mov eax, 310 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_311 () + { + // ; public: void __thiscall CWsScreenDevice::SetScreenSizeAndRotation(struct TPixelsTwipsAndRotation const &) + _asm mov eax, 311 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_312 () + { + // ; public: void __thiscall RWindowGroup::SimulatePointerEvent(class TRawEvent) + _asm mov eax, 312 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_313 () + { + // ; public: int __thiscall RWsSession::GetColorModeList(class CArrayFixFlat *)const + _asm mov eax, 313 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_314 () + { + // ; int RWindowBase::IsFaded(void) const + _asm mov eax, 314 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_315 () + { + // ; int RWindowBase::IsNonFading(void) const + _asm mov eax, 315 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_316 () + { + // ; protected: int __thiscall RAnim::Construct(class RWsSprite const &,int,class TDesC8 const &) + _asm mov eax, 316 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_317 () + { + // ; public: int __thiscall CWsScreenDevice::GetRotationsList(int,class CArrayFixFlat *)const + _asm mov eax, 317 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_318 () + { + // ; public: int __thiscall RWindowTreeNode::OrdinalPriority(void)const + _asm mov eax, 318 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_319 () + { + // ; public: int __thiscall RWsSession::SendEventToAllWindowGroups(class TWsEvent const &) + _asm mov eax, 319 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_320 () + { + // ; public: int __thiscall RWsSession::SendEventToAllWindowGroups(int,class TWsEvent const &) + _asm mov eax, 320 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_321 () + { + // ; public: void __thiscall CWsScreenDevice::SetCurrentRotations(int,enum CFbsBitGc::TGraphicsOrientation)const + _asm mov eax, 321 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_322 () + { + // ; public: void __thiscall RWsSession::SimulateKeyEvent(struct TKeyEvent) + _asm mov eax, 322 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_323 () + { + // ; public: void __thiscall RWsSession::SetRemoveKeyCode(int) + _asm mov eax, 323 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_324 () + { + // ; public: void __thiscall RWsSession::ClearDefaultSystemPointerCursor(void) + _asm mov eax, 324 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_325 () + { + // ; public: void __thiscall RWindowTreeNode::ClearPointerCursor(void) + _asm mov eax, 325 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_326 () + { + // ; public: class TRect __thiscall RWsSession::PointerCursorArea(int)const + _asm mov eax, 326 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_327 () + { + // ; public: class TRect __thiscall RWsSession::PointerCursorArea(void)const + _asm mov eax, 327 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_328 () + { + // ; public: enum TPointerCursorMode __thiscall RWsSession::PointerCursorMode(void)const + _asm mov eax, 328 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_329 () + { + // ; public: class TPoint __thiscall RWsSession::PointerCursorPosition(void)const + _asm mov eax, 329 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_330 () + { + // ; public: void __thiscall RWsSession::SetDefaultSystemPointerCursor(int) + _asm mov eax, 330 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_331 () + { + // ; public: void __thiscall RWsSession::SetPointerCursorArea(class TRect const &) + _asm mov eax, 331 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_332 () + { + // ; public: void __thiscall RWsSession::SetPointerCursorArea(int,class TRect const &) + _asm mov eax, 332 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_333 () + { + // ; public: void __thiscall RWsSession::SetPointerCursorMode(enum TPointerCursorMode) + _asm mov eax, 333 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_334 () + { + // ; public: int __thiscall RWsSession::SetPointerCursorPosition(class TPoint const &) + _asm mov eax, 334 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_335 () + { + // ; void RWsSession::SimulateXyInputType(int) + _asm mov eax, 335 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_336 () + { + // ; public: int __thiscall RWindowBase::MoveToGroup(int) + _asm mov eax, 336 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_337 () + { + // ; public: int __thiscall RWsSession::SendMessageToAllWindowGroups(int,class TUid,class TDesC8 const &) + _asm mov eax, 337 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_338 () + { + // ; public: int __thiscall RWsSession::SendMessageToAllWindowGroups(class TUid,class TDesC8 const &) + _asm mov eax, 338 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_339 () + { + // ; public: void __thiscall RWindowTreeNode::DisableFocusChangeEvents(void) + _asm mov eax, 339 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_340 () + { + // ; public: int __thiscall RWindowTreeNode::EnableFocusChangeEvents(void) + _asm mov eax, 340 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_341 () + { + // ; public: void __thiscall RWsSession::SetDefaultFadingParameters(unsigned char,unsigned char) + _asm mov eax, 341 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_342 () + { + // ; public: void __thiscall RWindowTreeNode::SetFaded(int,enum RWindowTreeNode::TFadeControl,unsigned char,unsigned char) + _asm mov eax, 342 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_343 () + { + // ; public: virtual void __thiscall CWindowGc::SetFadingParameters(unsigned char,unsigned char) + _asm mov eax, 343 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_344 () + { + // ; public: void __thiscall RWsSession::PrepareForSwitchOff(void) + _asm mov eax, 344 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_345 () + { + // ; public: int __thiscall CWsScreenDevice::SetCustomPalette(class CPalette const *) + _asm mov eax, 345 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_346 () + { + // ; public: __thiscall RDirectScreenAccess::RDirectScreenAccess(class RWsSession &) + _asm mov eax, 346 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_347 () + { + // ; public: __thiscall RDirectScreenAccess::RDirectScreenAccess(void) + _asm mov eax, 347 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_348 () + { + // ; public: void __thiscall RDirectScreenAccess::Cancel(void) + _asm mov eax, 348 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_349 () + { + // ; public: void __thiscall RDirectScreenAccess::Close(void) + _asm mov eax, 349 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_350 () + { + // ; public: void __thiscall RDirectScreenAccess::Completed(void) + _asm mov eax, 350 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_351 () + { + // ; public: int __thiscall RDirectScreenAccess::Construct(void) + _asm mov eax, 351 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_352 () + { + // ; public: static class CDirectScreenAccess * __cdecl CDirectScreenAccess::NewL(class RWsSession &,class CWsScreenDevice &,class RWindowBase &,class MDirectScreenAccess &) + _asm mov eax, 352 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_353 () + { + // ; public: int __thiscall RDirectScreenAccess::Request(class RRegion * &,class TRequestStatus &,class RWindowBase const &) + _asm mov eax, 353 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_354 () + { + // ; public: void __thiscall CDirectScreenAccess::StartL(void) + _asm mov eax, 354 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_355 () + { + // ; public: void __thiscall RWsSession::SetBufferSizeL(int) + _asm mov eax, 355 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_356 () + { + // ; public: int __thiscall RWsSession::SetSystemFaded(int) + _asm mov eax, 356 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_357 () + { + // ; public: int __thiscall RWsSession::SetSystemFaded(int,unsigned char,unsigned char) + _asm mov eax, 357 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_358 () + { + // ; public: void __thiscall RWindowTreeNode::DisableGroupListChangeEvents(void) + _asm mov eax, 358 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_359 () + { + // ; public: int __thiscall RWindowTreeNode::EnableGroupListChangeEvents(void) + _asm mov eax, 359 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_360 () + { + // ; public: int __thiscall RSoundPlugIn::Construct(class TUid) + _asm mov eax, 360 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_361 () + { + // ; public: void __thiscall RSoundPlugIn::Destroy(void) + _asm mov eax, 361 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_362 () + { + // ; int RSoundPlugIn::IsLoaded(int &) const + _asm mov eax, 362 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_363 () + { + // ; public: int __thiscall RSoundPlugIn::Load(class TDesC16 const &) + _asm mov eax, 363 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_364 () + { + // ; public: int __thiscall RSoundPlugIn::Unload(void) + _asm mov eax, 364 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_365 () + { + // ; public: int __thiscall CWsScreenDevice::CurrentScreenMode(void)const + _asm mov eax, 365 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_366 () + { + // ; public: void __thiscall RWindowGroup::CancelCaptureLongKey(long) + _asm mov eax, 366 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_367 () + { + // ; public: long __thiscall RWindowGroup::CaptureLongKey(unsigned int,unsigned int,unsigned int,unsigned int,int,unsigned int) + _asm mov eax, 367 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_368 () + { + // ; public: long __thiscall RWindowGroup::CaptureLongKey(class TTimeIntervalMicroSeconds32,unsigned int,unsigned int,unsigned int,unsigned int,int,unsigned int) + _asm mov eax, 368 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_369 () + { + // ; public: int __thiscall RWsSession::SendEventToOneWindowGroupsPerClient(class TWsEvent const &) + _asm mov eax, 369 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_370 () + { + // ; int RSoundPlugIn::KeyClickEnabled(void) const + _asm mov eax, 370 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_371 () + { + // ; int RSoundPlugIn::PenClickEnabled(void) const + _asm mov eax, 371 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_372 () + { + // ; public: void __thiscall RSoundPlugIn::SetKeyClick(int) + _asm mov eax, 372 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_373 () + { + // ; public: void __thiscall RSoundPlugIn::SetPenClick(int) + _asm mov eax, 373 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_374 () + { + // ; public: long __thiscall RWindowGroup::CaptureKey(unsigned int,unsigned int,unsigned int,int) + _asm mov eax, 374 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_375 () + { + // ; public: long __thiscall RWindowGroup::CaptureKeyUpAndDowns(unsigned int,unsigned int,unsigned int,int) + _asm mov eax, 375 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_376 () + { + // ; public: void __thiscall RWsSession::LogCommand(enum RWsSession::TLoggingCommand) + _asm mov eax, 376 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_377 () + { + // ; public: __thiscall RSoundPlugIn::RSoundPlugIn(class RWsSession &) + _asm mov eax, 377 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_378 () + { + // ; public: __thiscall RSoundPlugIn::RSoundPlugIn(void) + _asm mov eax, 378 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_379 () + { + // ; public: void __thiscall RSoundPlugIn::Close(void) + _asm mov eax, 379 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_380 () + { + // ; public: int __thiscall RSoundPlugIn::CommandReply(int,class TPtrC8 const &) + _asm mov eax, 380 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_381 () + { + // ; public: int __thiscall RWsSession::SetCustomTextCursor(int,class TArray const &,unsigned int,enum RWsSession::TCustomTextCursorAlignment) + _asm mov eax, 381 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_382 () + { + // ; public: void __thiscall RWindow::HandleTransparencyUpdate(void) + _asm mov eax, 382 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_383 () + { + // ; public: int __thiscall RWindow::SetTransparencyBitmap(class CFbsBitmap const &) + _asm mov eax, 383 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_384 () + { + // ; public: int __thiscall RWindow::SetTransparencyFactor(class TRgb const &) + _asm mov eax, 384 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_385 () + { + // ; public: void __thiscall RWindow::SetNonTransparent(void) + _asm mov eax, 385 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_386 () + { + // ; public: int __thiscall RWsSession::TestWriteReplyByProvidingRemoteReadAccess(int,int,class TDesC8 const &,class TDesC16 const &) + _asm mov eax, 386 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_387 () + { + // ; public: int __thiscall RWsSession::TestWriteReplyByProvidingRemoteReadAccess(int,int,class TDesC8 const &,class TDesC8 const &) + _asm mov eax, 387 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_388 () + { + // ; int RAnim::CommandReply(int, class TDesC8 const &, class TIpcArgs const &) + _asm mov eax, 388 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_389 () + { + // ; int RAnim::Construct(class RWindowBase const &, int, class TDesC8 const &, class TIpcArgs const &) + _asm mov eax, 389 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_390 () + { + // ; int RAnim::Construct(class RWsSprite const &, int, class TDesC8 const &, class TIpcArgs const &) + _asm mov eax, 390 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_391 () + { + // ; void RAnim::AsyncCommandReply(class TRequestStatus &, int, class TIpcArgs const &) + _asm mov eax, 391 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_392 () + { + // ; public: class TPoint __thiscall RWindowBase::AbsPosition(void)const + _asm mov eax, 392 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_393 () + { + // ; public: int __thiscall CWsScreenDevice::RectCompare(class TRect const &,class TRect const &,unsigned int)const + _asm mov eax, 393 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_394 () + { + // ; public: class TPoint __thiscall CWsScreenDevice::GetDefaultScreenModeOrigin(void)const + _asm mov eax, 394 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_395 () + { + // ; public: class TPoint __thiscall CWsScreenDevice::GetScreenModeOrigin(int)const + _asm mov eax, 395 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_396 () + { + // ; void RWindow::EnableRedrawStore(int) + _asm mov eax, 396 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_397 () + { + // ; void CWindowGc::AlphaBlendBitmaps(class TPoint const &, class CFbsBitmap const *, class TRect const &, class CFbsBitmap const *, class TPoint const &) + _asm mov eax, 397 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_398 () + { + // ; void CWindowGc::AlphaBlendBitmaps(class TPoint const &, class CWsBitmap const *, class TRect const &, class CWsBitmap const *, class TPoint const &) + _asm mov eax, 398 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_399 () + { + // ; void CWindowGc::SetOpaque(int) + _asm mov eax, 399 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_400 () + { + // ; public: class TSizeMode __thiscall CWsScreenDevice::GetCurrentScreenModeAttributes(void)const + _asm mov eax, 400 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_401 () + { + // ; public: class TPoint __thiscall CWsScreenDevice::GetCurrentScreenModeScaledOrigin(void)const + _asm mov eax, 401 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_402 () + { + // ; public: class TSize __thiscall CWsScreenDevice::GetCurrentScreenModeScale(void)const + _asm mov eax, 402 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_403 () + { + // ; public: class TPoint __thiscall CWsScreenDevice::GetScreenModeScaledOrigin(int)const + _asm mov eax, 403 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_404 () + { + // ; public: class TSize __thiscall CWsScreenDevice::GetScreenModeScale(int)const + _asm mov eax, 404 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_405 () + { + // ; public: void __thiscall CWsScreenDevice::SetAppScreenMode(int) + _asm mov eax, 405 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_406 () + { + // ; public: void __thiscall CWsScreenDevice::SetCurrentScreenModeAttributes(class TSizeMode const &) + _asm mov eax, 406 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_407 () + { + // ; void CWindowGc::DrawBitmapMasked(class TRect const &, class CFbsBitmap const *, class TRect const &, class CFbsBitmap const *, int) + _asm mov eax, 407 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_408 () + { + // ; int CWsScreenDevice::Construct(int) + _asm mov eax, 408 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_409 () + { + // ; int CWsScreenDevice::GetScreenNumber(void) const + _asm mov eax, 409 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_410 () + { + // ; int RWsSession::GetFocusScreen(void) const + _asm mov eax, 410 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_411 () + { + // ; int RWsSession::SetFocusScreen(int) + _asm mov eax, 411 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_412 () + { + // ; public: int __thiscall RWindowGroup::ConstructChildApp(int,unsigned long) + _asm mov eax, 412 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_413 () + { + // ; public: int __thiscall RWindowGroup::ConstructChildApp(int,unsigned long,int) + _asm mov eax, 413 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_414 () + { + // ; int RWsSession::WindowGroupList(int, class RArray *) const + _asm mov eax, 414 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_415 () + { + // ; int RWsSession::WindowGroupList(class RArray *) const + _asm mov eax, 415 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_416 () + { + // ; public: void __thiscall RWindowGroup::AllowProcessToCreateChildWindowGroups(class TUid) + _asm mov eax, 416 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_417 () + { + // ; public: int __thiscall RWindow::SetTransparencyWsBitmap(class CWsBitmap const &) + _asm mov eax, 417 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_418 () + { + // ; int CWsScreenDevice::GetScreenSizeModeList(class RArray *) const + _asm mov eax, 418 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_419 () + { + // ; int CWsScreenDevice::GetNearestFontToDesignHeightInPixels(class CFont * &, class TFontSpec const &) + _asm mov eax, 419 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_420 () + { + // ; int CWsScreenDevice::GetNearestFontToDesignHeightInTwips(class CFont * &, class TFontSpec const &) + _asm mov eax, 420 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_421 () + { + // ; int CWsScreenDevice::GetNearestFontToMaxHeightInPixels(class CFont * &, class TFontSpec const &, int) + _asm mov eax, 421 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_422 () + { + // ; int CWsScreenDevice::GetNearestFontToMaxHeightInTwips(class CFont * &, class TFontSpec const &, int) + _asm mov eax, 422 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_423 () + { + // ; void RWindowTreeNode::DisableVisibilityChangeEvents(void) + _asm mov eax, 423 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_424 () + { + // ; int RWindowTreeNode::EnableVisibilityChangeEvents(void) + _asm mov eax, 424 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_425 () + { + // ; int RWindow::SetTransparencyAlphaChannel(void) + _asm mov eax, 425 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_426 () + { + // ; void RBlankWindow::SetColor(void) + _asm mov eax, 426 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_427 () + { + // ; int RWsSession::SetClientCursorMode(enum TPointerCursorMode) + _asm mov eax, 427 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_428 () + { + // ; class TRect RDrawableWindow::GetDrawRect(void) const + _asm mov eax, 428 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_429 () + { + // (noname) + _asm mov eax, 429 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_430 () + { + // (noname) + _asm mov eax, 430 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_431 () + { + // ; void CWindowGc::Reserved_CWindowGc_3(void) + _asm mov eax, 431 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_432 () + { + // ; void CWindowGc::Reserved_CWindowGc_4(void) + _asm mov eax, 432 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_433 () + { + // ; void CWindowGc::Reserved_CWindowGc_5(void) + _asm mov eax, 433 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_434 () + { + // ; void CWindowGc::Reserved_CBitmapContext_1(void) + _asm mov eax, 434 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_435 () + { + // ; void CWindowGc::Reserved_CBitmapContext_2(void) + _asm mov eax, 435 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_436 () + { + // ; void CWindowGc::Reserved_CBitmapContext_3(void) + _asm mov eax, 436 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_437 () + { + // ; int CWindowGc::APIExtension(class TUid, int*&, int *) + _asm mov eax, 437 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_438 () + { + // ; void CWindowGc::Reserved_CGraphicsContext_2(void) + _asm mov eax, 438 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_439 () + { + // ; void CWindowGc::DrawBitmapMasked(class TRect const &, class CWsBitmap const *, class TRect const &, class CWsBitmap const *, int) + _asm mov eax, 439 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_440 () + { + // ; int RWsSession::Connect(class RFs &) + _asm mov eax, 440 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_441 () + { + // ; enum TDisplayMode CWsScreenDevice::GetScreenModeDisplayMode(int const &) const + _asm mov eax, 441 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_442 () + { + // ; public: void __thiscall RWsSession::ClearAllRedrawStores(void) + _asm mov eax, 442 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_443 () + { + // ; int RWindowTreeNode::WindowGroupId(void) const + _asm mov eax, 443 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_444 () + { + // ; int RWindowBase::GetPointerCapturePriority(void) const + _asm mov eax, 444 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_445 () + { + // ; void RWindowBase::SetPointerCapturePriority(int) + _asm mov eax, 445 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_446 () + { + // ; int RWindow::SetTransparentRegion(class TRegion const &) + _asm mov eax, 446 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_447 () + { + // ; int RWindow::SetTransparencyPolicy(enum TWsTransparencyPolicy) + _asm mov eax, 447 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_448 () + { + // ; int RWindow::IsRedrawStoreEnabled(void) const + _asm mov eax, 448 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_449 () + { + // ; int CWsScreenDevice::SetBackLight(int) + _asm mov eax, 449 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_450 () + { + // ; int RWindowGroup::SetOrdinalPositionErr(int, int) + _asm mov eax, 450 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_451 () + { + // ; int RWindowGroup::ClearChildGroup(void) + _asm mov eax, 451 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_452 () + { + // ; int RWindowGroup::SetChildGroup(int) + _asm mov eax, 452 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_453 () + { + // ; class TUid TWsGraphicId::Uid(void) const + _asm mov eax, 453 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_454 () + { + // ; CWsGraphic::CWsGraphic(void) + _asm mov eax, 454 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_455 () + { + // ; RWsGraphicMsgBuf::RWsGraphicMsgBuf(void) + _asm mov eax, 455 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_456 () + { + // ; TWsGraphicMsgFixedBase::TWsGraphicMsgFixedBase(class TUid, int) + _asm mov eax, 456 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_457 () + { + // ; CWsGraphic::~CWsGraphic(void) + _asm mov eax, 457 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_458 () + { + // ; int RWsGraphicMsgBuf::Append(class TWsGraphicMsgFixedBase const &) + _asm mov eax, 458 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_459 () + { + // ; int RWsGraphicMsgBuf::Append(class TUid, class TDesC16 const &) + _asm mov eax, 459 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_460 () + { + // ; int RWsGraphicMsgBuf::Append(class TUid, class TDesC8 const &) + _asm mov eax, 460 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_461 () + { + // ; int RWsGraphicMsgBuf::Append(class TUid, int, class TPtr8 &) + _asm mov eax, 461 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_462 () + { + // ; void CWsGraphic::BaseConstructL(class TWsGraphicId const &, class TUid, class TDesC8 const &) + _asm mov eax, 462 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_463 () + { + // ; void CWsGraphic::BaseConstructL(class TUid, class TUid, class TDesC8 const &) + _asm mov eax, 463 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_464 () + { + // ; void CWsGraphic::BaseConstructL(class TUid, class TDesC8 const &) + _asm mov eax, 464 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_465 () + { + // ; int CWsGraphic::CWsGraphic_Reserved1(void) + _asm mov eax, 465 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_466 () + { + // ; int CWsGraphic::CWsGraphic_Reserved2(void) + _asm mov eax, 466 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_467 () + { + // ; int CWsGraphic::CWsGraphic_Reserved3(void) + _asm mov eax, 467 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_468 () + { + // ; int TWsGraphicId::Compare(class TWsGraphicId const &) const + _asm mov eax, 468 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_469 () + { + // ; int RWsGraphicMsgBuf::Count(void) const + _asm mov eax, 469 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_470 () + { + // ; class TPtrC8 RWsGraphicMsgBuf::Data(int) const + _asm mov eax, 470 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_471 () + { + // ; void CWsGraphic::Destroy(void) + _asm mov eax, 471 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_472 () + { + // ; void RWsGraphicMsgBuf::GetFixedMsg(class TWsGraphicMsgFixedBase &, int) const + _asm mov eax, 472 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_473 () + { + // ; class TWsGraphicId const & CWsGraphic::Id(void) const + _asm mov eax, 473 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_474 () + { + // ; int CWsGraphic::IsActive(void) const + _asm mov eax, 474 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_475 () + { + // ; int TWsGraphicId::IsId(void) const + _asm mov eax, 475 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_476 () + { + // ; void CWsGraphic::OnClientClose(void) + _asm mov eax, 476 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_477 () + { + // ; class TDesC8 const & RWsGraphicMsgBuf::Pckg(void) const + _asm mov eax, 477 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_478 () + { + // ; class TPtrC8 TWsGraphicMsgFixedBase::Pckg(void) const + _asm mov eax, 478 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_479 () + { + // ; void RWsGraphicMsgBuf::Remove(int) + _asm mov eax, 479 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_480 () + { + // ; void CWsGraphic::SendMessage(class TDesC8 const &) const + _asm mov eax, 480 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_481 () + { + // ; void TWsGraphicId::Set(int) + _asm mov eax, 481 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_482 () + { + // ; void TWsGraphicId::Set(class TUid) + _asm mov eax, 482 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_483 () + { + // ; int CWsGraphic::Share(class TSecureId) + _asm mov eax, 483 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_484 () + { + // ; int CWsGraphic::ShareGlobally(void) + _asm mov eax, 484 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_485 () + { + // ; int TWsGraphicMsgFixedBase::Size(void) const + _asm mov eax, 485 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_486 () + { + // ; class TUid RWsGraphicMsgBuf::TypeId(int) const + _asm mov eax, 486 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_487 () + { + // ; class TUid TWsGraphicMsgFixedBase::TypeId(void) const + _asm mov eax, 487 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_488 () + { + // ; int CWsGraphic::UnShare(class TSecureId) + _asm mov eax, 488 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_489 () + { + // ; int CWsGraphic::UnShareGlobally(void) + _asm mov eax, 489 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_490 () + { + // ; class TPtr8 RWsGraphicMsgBuf::Data(int) + _asm mov eax, 490 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_491 () + { + // ; TWsGraphicId::TWsGraphicId(class TWsGraphicId const &) + _asm mov eax, 491 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_492 () + { + // ; TWsGraphicId::TWsGraphicId(int) + _asm mov eax, 492 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_493 () + { + // ; int CWsGraphic::Flush(void) const + _asm mov eax, 493 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_494 () + { + // ; int RWindowGroup::Construct(unsigned long, int, class CWsScreenDevice *) + _asm mov eax, 494 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_495 () + { + // ; int RWindowGroup::Construct(unsigned long, class CWsScreenDevice *) + _asm mov eax, 495 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_496 () + { + // ; int RWsSession::GetColorModeList(int, class CArrayFixFlat *) const + _asm mov eax, 496 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_497 () + { + // ; enum TDisplayMode RWsSession::GetDefModeMaxNumColors(int, int &, int &) const + _asm mov eax, 497 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_498 () + { + // ; int RWsSession::GetDefaultOwningWindow(int) const + _asm mov eax, 498 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_499 () + { + // ; int RWsSession::GetFocusWindowGroup(int) const + _asm mov eax, 499 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_500 () + { + // ; int RWsSession::NumWindowGroups(int, int) const + _asm mov eax, 500 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_501 () + { + // ; int RWsSession::NumberOfScreens(void) const + _asm mov eax, 501 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_502 () + { + // ; int RWsSession::WindowGroupList(class CArrayFixFlat *, int, int) const + _asm mov eax, 502 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_503 () + { + // ; TWsGraphicId::TWsGraphicId(class TUid) + _asm mov eax, 503 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_504 () + { + // ; public: void __thiscall RWsSession::SetMaxBufferSizeL(int) + _asm mov eax, 504 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_505 () + { + // ; void RWindow::EnableOSB(int) + _asm mov eax, 505 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_506 () + { + // ; int TWsGraphicId::Id(void) const + _asm mov eax, 506 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_507 () + { + // ; int TWsGraphicId::IsUid(void) const + _asm mov eax, 507 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_508 () + { + // ; void CWsGraphic::SetGraphicExtension(class MWsObjectProvider *) + _asm mov eax, 508 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_509 () + { + // ; int CWsGraphic::SendSynchronMessage(class TDesC8 const &) const + _asm mov eax, 509 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_510 () + { + // ; int RWsSession::DebugInfo(int, class TDes8 &, int) const + _asm mov eax, 510 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_511 () + { + // ; int RWsSession::DebugInfo(int, int) const + _asm mov eax, 511 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_512 () + { + // ; unsigned long RWindowTreeNode::ClientHandle(void) const + _asm mov eax, 512 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_513 () + { + // ; int RWindowBase::SetBackgroundSurface(class TSurfaceId const &) + _asm mov eax, 513 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_514 () + { + // (noname) + _asm mov eax, 514 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_515 () + { + // ; class TRgb RWindowBase::KeyColor(void) const + _asm mov eax, 515 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_516 () + { + // (noname) + _asm mov eax, 516 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_517 () + { + // (noname) + _asm mov eax, 517 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_518 () + { + // (noname) + _asm mov eax, 518 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_519 () + { + // (noname) + _asm mov eax, 519 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_520 () + { + // (noname) + _asm mov eax, 520 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_521 () + { + // ; int RWindowBase::GetBackgroundSurface(class TSurfaceConfiguration &) const + _asm mov eax, 521 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_522 () + { + // (noname) + _asm mov eax, 522 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_523 () + { + // ; int RWsSession::PreferredSurfaceConfigurationSize(void) const + _asm mov eax, 523 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_524 () + { + // ; int RWsSession::RegisterSurface(int, class TSurfaceId const &) + _asm mov eax, 524 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_525 () + { + // (noname) + _asm mov eax, 525 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_526 () + { + // ; void RWindowBase::RemoveBackgroundSurface(int) + _asm mov eax, 526 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_527 () + { + // (noname) + _asm mov eax, 527 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_528 () + { + // ; int RWindowBase::SetBackgroundSurface(class TSurfaceConfiguration const &, int) + _asm mov eax, 528 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_529 () + { + // ; void RWsSession::UnregisterSurface(int, class TSurfaceId const &) + _asm mov eax, 529 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_530 () + { + // ; void RWindow::ClearRedrawStore(void) + _asm mov eax, 530 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_531 () + { + // ; int RWsSession::Finish(void) + _asm mov eax, 531 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_532 () + { + // ; void RWsSession::SyncMsgBuf(void) + _asm mov eax, 532 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_533 () + { + // ; class RWsSession & CWsGraphic::Session(void) + _asm mov eax, 533 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_534 () + { + // ; int RWindowTreeNode::ScreenNumber(void) const + _asm mov eax, 534 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_535 () + { + // ; void TWsEvent::SetPointerNumber(unsigned char) + _asm mov eax, 535 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_536 () + { + // ; int TAdvancedPointerEvent::DoGetPointerNumber(void) const + _asm mov eax, 536 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_537 () + { + // ; int RWindowBase::ClaimPointerGrab(unsigned char, int) + _asm mov eax, 537 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_538 () + { + // ; int RWindowBase::RequestPointerRepeatEvent(class TTimeIntervalMicroSeconds32, class TRect const &, unsigned char) + _asm mov eax, 538 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_539 () + { + // ; int RWsSession::GetExitHighPressureThreshold(void) const + _asm mov eax, 539 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_540 () + { + // ; int RWsSession::SetCloseProximityThresholds(int, int) + _asm mov eax, 540 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_541 () + { + // ; int RWsSession::SetHighPressureThresholds(int, int) + _asm mov eax, 541 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_542 () + { + // ; int RWindowBase::CancelPointerRepeatEventRequest(unsigned char) + _asm mov eax, 542 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_543 () + { + // ; void TWsEvent::InitAdvancedPointerEvent(enum TPointerEvent::TType, unsigned int, class TPoint3D const &, unsigned char) + _asm mov eax, 543 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_544 () + { + // ; int RWsSession::GetExitCloseProximityThreshold(void) const + _asm mov eax, 544 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_545 () + { + // ; void RWindowBase::EnableAdvancedPointers(void) + _asm mov eax, 545 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_546 () + { + // ; void TWsEvent::SetPointerZ(int) + _asm mov eax, 546 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_547 () + { + // ; int TAdvancedPointerEvent::DoGetProximityAndPressure(void) const + _asm mov eax, 547 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_548 () + { + // ; int TAdvancedPointerEvent::DoGetProximity(void) const + _asm mov eax, 548 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_549 () + { + // ; int TAdvancedPointerEvent::DoGetPressure(void) const + _asm mov eax, 549 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_550 () + { + // ; void RWindowGroup::SimulateAdvancedPointerEvent(class TRawEvent) + _asm mov eax, 550 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_551 () + { + // ; int RWsSession::GetEnterHighPressureThreshold(void) const + _asm mov eax, 551 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_552 () + { + // ; int RWsSession::GetEnterCloseProximityThreshold(void) const + _asm mov eax, 552 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_553 () + { + // ; class TAdvancedPointerEvent & TAdvancedPointerEvent::operator=(class TAdvancedPointerEvent const &) + _asm mov eax, 553 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_554 () + { + // ; TAdvancedPointerEvent::TAdvancedPointerEvent(class TAdvancedPointerEvent const &) + _asm mov eax, 554 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_555 () + { + // ; RWsDrawableSource::RWsDrawableSource(void) + _asm mov eax, 555 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_556 () + { + // ; void RWsDrawableSource::Close(void) + _asm mov eax, 556 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_557 () + { + // ; int RWsDrawableSource::Create(class RSgDrawable const &) + _asm mov eax, 557 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_558 () + { + // ; class TSgDrawableId const & RWsDrawableSource::DrawableId(void) const + _asm mov eax, 558 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_559 () + { + // ; void CWindowGc::DrawResource(class TPoint const &, class RWsDrawableSource const &, enum CWindowGc::TGraphicsRotation) + _asm mov eax, 559 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_560 () + { + // ; void CWindowGc::DrawResource(class TRect const &, class RWsDrawableSource const &, enum CWindowGc::TGraphicsRotation) + _asm mov eax, 560 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_561 () + { + // ; void CWindowGc::DrawResource(class TRect const &, class RWsDrawableSource const &, class TRect const &, enum CWindowGc::TGraphicsRotation) + _asm mov eax, 561 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_562 () + { + // ; void CWindowGc::DrawResource(class TRect const &, class RWsDrawableSource const &, class TDesC8 const &) + _asm mov eax, 562 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_563 () + { + // ; int RDirectScreenAccess::Construct(int) + _asm mov eax, 563 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_564 () + { + // ; class CDirectScreenAccess * CDirectScreenAccess::NewL(class RWsSession &, class CWsScreenDevice &, class RWindowBase &, class MDirectScreenAccess &, int) + _asm mov eax, 564 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_565 () + { + // ; int RWsDrawableSource::Create(class RSgDrawable const &, int) + _asm mov eax, 565 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_566 () + { + // ; RWsDrawableSource::RWsDrawableSource(class RWsSession &) + _asm mov eax, 566 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_567 () + { + // ; int RWsDrawableSource::ScreenNumber(void) const + _asm mov eax, 567 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_568 () + { + // ; void * CWsScreenDevice::GetInterface(unsigned int) + _asm mov eax, 568 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_569 () + { + // ; int CWsScreenDevice::IsCurrentModeDynamic(void) const + _asm mov eax, 569 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_570 () + { + // ; int CWsScreenDevice::IsModeDynamic(int) const + _asm mov eax, 570 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_571 () + { + // ; void const * CWindowGc::Interface(class TUid) const + _asm mov eax, 571 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_572 () + { + // ; void * CWindowGc::Interface(class TUid) + _asm mov eax, 572 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_573 () + { + // ; class RWsSession * RWindowTreeNode::Session(void) const + _asm mov eax, 573 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_574 () + { + // ; void RWsSession::HeapSetBurstFail(int, int, int) + _asm mov eax, 574 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_575 () + { + // ; void RWsSession::EnableWindowSizeCacheL(void) + _asm mov eax, 575 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_576 () + { + // ; void RWindowBase::SetSurfaceTransparency(int) + _asm mov eax, 576 + _asm jmp common_dispatch + } + +} +#define MAX_ORDINAL 577 + diff -r c0155353733c -r 76efc8f9f7b4 windowing/windowserver/wins_switching/wsgraphicdrawer_stubs.h --- a/windowing/windowserver/wins_switching/wsgraphicdrawer_stubs.h Fri Apr 02 11:19:42 2010 +0100 +++ b/windowing/windowserver/wins_switching/wsgraphicdrawer_stubs.h Tue Apr 20 16:24:43 2010 +0100 @@ -1,779 +1,765 @@ -// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). -// All rights reserved. -// This component and the accompanying materials are made available -// under the terms of "Eclipse Public License v1.0" -// which accompanies this distribution, and is available -// at the URL "http://www.eclipse.org/legal/epl-v10.html". -// -// Initial Contributors: -// Nokia Corporation - initial contribution. -// -// Contributors: -// -// Description: -// Generated from "../BWINS/graphicdraweru.def" file size: 11211 -// -// - -extern "C" { -void common_dispatch(); - -__declspec(dllexport) -__declspec(naked) -void call_vector_1 () - { - // ; CWsGraphicDrawer::CWsGraphicDrawer(void) - _asm mov eax, 1 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_2 () - { - // ; TWsGraphicMsgAnimation::TWsGraphicMsgAnimation(void) - _asm mov eax, 2 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_3 () - { - // ; TWsGraphicMsgBufParser::TWsGraphicMsgBufParser(class TDesC8 const &) - _asm mov eax, 3 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_4 () - { - // ; CWsGraphicDrawer::~CWsGraphicDrawer(void) - _asm mov eax, 4 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_5 () - { - // ; void CWsGraphicDrawerArray::AddLC(class CWsGraphicDrawer *) - _asm mov eax, 5 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_6 () - { - // ; void MWsAnimationScheduler::Animate(class MWsScreen &) - _asm mov eax, 6 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_7 () - { - // ; class TTimeIntervalMicroSeconds TWsGraphicMsgAnimation::AnimationTime(class TTime const &, class TTimeIntervalMicroSeconds const &) const - _asm mov eax, 7 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_8 () - { - // ; void CWsGraphicDrawer::BaseConstructL(class MWsGraphicDrawerEnvironment &, struct TGraphicDrawerId const &, class MWsClient &) - _asm mov eax, 8 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_9 () - { - // ; void CWsGraphicDrawerArray::Close(void) - _asm mov eax, 9 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_10 () - { - // ; int TGraphicDrawerId::Compare(struct TGraphicDrawerId const &) const - _asm mov eax, 10 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_11 () - { - // ; int TGraphicDrawerId::Compare(struct TGraphicDrawerId const &, struct TGraphicDrawerId const &) - _asm mov eax, 11 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_12 () - { - // ; int CWsGraphicDrawer::Contains(class TArray const &) const - _asm mov eax, 12 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_13 () - { - // ; int TWsGraphicMsgBufParser::Count(void) const - _asm mov eax, 13 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_14 () - { - // ; class CWsGraphicDrawer * WsGraphicDrawer::CreateLC(class TUid, class MWsGraphicDrawerEnvironment &, struct TGraphicDrawerId const &, class MWsClient &, class TDesC8 const &) - _asm mov eax, 14 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_15 () - { - // ; class TPtrC8 TWsGraphicMsgBufParser::Data(int) const - _asm mov eax, 15 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_16 () - { - // ; void CWsGraphicDrawer::Draw(class MWsGc &, class TRect const &, class TDesC8 const &) const - _asm mov eax, 16 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_17 () - { - // ; class MWsGraphicDrawerEnvironment & CWsGraphicDrawer::Env(void) - _asm mov eax, 17 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_18 () - { - // ; int TWsGraphicMsgBufParser::Find(class TUid, int) const - _asm mov eax, 18 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_19 () - { - // ; int CWsGraphicDrawer::HasAsChild(class TArray const &) const - _asm mov eax, 19 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_20 () - { - // ; struct TGraphicDrawerId const & CWsGraphicDrawer::Id(void) const - _asm mov eax, 20 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_21 () - { - // ; void CWsGraphicDrawer::Invalidate(void) - _asm mov eax, 21 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_22 () - { - // ; int CWsGraphicDrawerArray::IsEmpty(void) const - _asm mov eax, 22 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_23 () - { - // ; int TWsGraphicMsgAnimation::IsPlaying(class TTime const &, class TTimeIntervalMicroSeconds const &) const - _asm mov eax, 23 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_24 () - { - // ; int CWsGraphicDrawer::IsSharedWith(class TSecureId) const - _asm mov eax, 24 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_25 () - { - // ; int TWsGraphicMsgAnimation::Load(class TWsGraphicMsgBufParser const &) - _asm mov eax, 25 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_26 () - { - // ; int TWsGraphicMsgAnimation::Load(class TWsGraphicMsgBufParser const &, int) - _asm mov eax, 26 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_27 () - { - // ; class MWsClient const & CWsGraphicDrawer::Owner(void) const - _asm mov eax, 27 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_28 () - { - // ; void MWsAnimationScheduler::Redraw(class MWsScreen &) - _asm mov eax, 28 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_29 () - { - // ; int MWsAnimationScheduler::RedrawInvalid(class MWsScreen &, class TArray const &) - _asm mov eax, 29 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_30 () - { - // ; int CWsGraphicDrawerArray::Remove(struct TGraphicDrawerId const &) - _asm mov eax, 30 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_31 () - { - // ; int CWsGraphicDrawerArray::RemoveAll(class MWsClient const &) - _asm mov eax, 31 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_32 () - { - // ; int CWsGraphicDrawerArray::RemoveAndDestroy(struct TGraphicDrawerId const &) - _asm mov eax, 32 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_33 () - { - // ; int CWsGraphicDrawerArray::RemoveAndDestroyAll(class MWsClient const &) - _asm mov eax, 33 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_34 () - { - // ; void CWsGraphicDrawerArray::ResetAndDestroy(void) - _asm mov eax, 34 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_35 () - { - // ; class CWsGraphicDrawer const * CWsGraphicDrawerArray::ResolveGraphic(struct TGraphicDrawerId const &) const - _asm mov eax, 35 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_36 () - { - // ; void * MWsObjectProvider::ResolveObjectInterface(unsigned int) - _asm mov eax, 36 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_37 () - { - // ; int CWsGraphicDrawer::SendMessage(class TDesC8 const &) - _asm mov eax, 37 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_38 () - { - // ; int CWsGraphicDrawer::Share(class TSecureId) - _asm mov eax, 38 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_39 () - { - // ; int CWsGraphicDrawer::ShareGlobally(void) - _asm mov eax, 39 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_40 () - { - // ; int CWsGraphicDrawerArray::SwapLC(class CWsGraphicDrawer *) - _asm mov eax, 40 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_41 () - { - // ; class TUid TWsGraphicMsgBufParser::Uid(int) const - _asm mov eax, 41 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_42 () - { - // ; int CWsGraphicDrawer::UnShare(class TSecureId) - _asm mov eax, 42 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_43 () - { - // ; int CWsGraphicDrawer::UnShareGlobally(void) - _asm mov eax, 43 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_44 () - { - // ; int TWsGraphicMsgBufParser::Verify(void) const - _asm mov eax, 44 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_45 () - { - // ; class MWsGraphicDrawerEnvironment const & CWsGraphicDrawer::Env(void) const - _asm mov eax, 45 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_46 () - { - // ; void CWsGraphicDrawer::HandleEvent(struct TWservCrEvent const &) - _asm mov eax, 46 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_47 () - { - // ; int CWsGraphicDrawer::HasEventHandler(void) const - _asm mov eax, 47 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_48 () - { - // ; void CWsGraphicDrawer::SetEventHandler(class MWsEventHandler *) - _asm mov eax, 48 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_49 () - { - // ; TWservCrEvent::TWservCrEvent(unsigned long) - _asm mov eax, 49 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_50 () - { - // ; TWservCrEvent::TWservCrEvent(unsigned long, unsigned long) - _asm mov eax, 50 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_51 () - { - // ; TWservCrEvent::TWservCrEvent(unsigned long, unsigned long, void *) - _asm mov eax, 51 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_52 () - { - // ; int TWservCrEvent::SizeMode(void) const - _asm mov eax, 52 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_53 () - { - // ; unsigned long TWservCrEvent::Type(void) const - _asm mov eax, 53 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_54 () - { - // ; class RRegion const * TWservCrEvent::VisibleRegion(void) const - _asm mov eax, 54 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_55 () - { - // ; int TWservCrEvent::ScreenNumber(void) const - _asm mov eax, 55 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_56 () - { - // ; int TWsGraphicMsgBufParser::LoadFixed(class TUid, void *, int, int) const - _asm mov eax, 56 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_57 () - { - // ; int CWsGraphicDrawer::SendMessage(class CWsMessageData &) - _asm mov eax, 57 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_58 () - { - // ; class TRegion const * TWservCrEvent::DrawingRegion(void) const - _asm mov eax, 58 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_59 () - { - // ; int TWservCrEvent::WindowGroupIdentifier(void) const - _asm mov eax, 59 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_60 () - { - // ; int CWsGraphicDrawerArray::Add(class CWsGraphicDrawer *) - _asm mov eax, 60 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_61 () - { - // ; class CWsGraphicDrawerArray::XRollBackBase * CWsGraphicDrawerArray::AddTLC(class CWsGraphicDrawer *) - _asm mov eax, 61 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_62 () - { - // ; void CWsGraphicDrawerArray::CommitP(class CWsGraphicDrawerArray::XRollBackBase *) - _asm mov eax, 62 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_63 () - { - // ; class CWsGraphicDrawerArray::XRollBackBase * CWsGraphicDrawerArray::RemoveTLC(struct TGraphicDrawerId const &) - _asm mov eax, 63 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_64 () - { - // ; int CWsGraphicDrawerArray::Swap(class CWsGraphicDrawer *) - _asm mov eax, 64 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_65 () - { - // ; class CWsGraphicDrawerArray::XRollBackBase * CWsGraphicDrawerArray::SwapTLC(class CWsGraphicDrawer *) - _asm mov eax, 65 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_66 () - { - // ; enum CFbsBitGc::TGraphicsOrientation TWservCrEvent::Orientation(void) const - _asm mov eax, 66 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_67 () - { - // ; void WsGraphicDrawer::FinalClose(void) - _asm mov eax, 67 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_68 () - { - // ; int TWservCrEvent::WasVisible(void) const - _asm mov eax, 68 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_69 () - { - // ; TWservCrEvent::TWservCrEvent(unsigned long, unsigned long, void *, class MWsWindow *) - _asm mov eax, 69 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_70 () - { - // ; class MWsWindow * TWservCrEvent::Window(void) const - _asm mov eax, 70 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_71 () - { - // ; CWsPlugin::CWsPlugin(void) - _asm mov eax, 71 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_72 () - { - // ; CWsRenderStage::CWsRenderStage(void) - _asm mov eax, 72 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_73 () - { - // ; CWsPlugin::~CWsPlugin(void) - _asm mov eax, 73 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_74 () - { - // ; CWsRenderStage::~CWsRenderStage(void) - _asm mov eax, 74 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_75 () - { - // ; void CWsPlugin::BaseConstructL(class MWsGraphicDrawerEnvironment &) - _asm mov eax, 75 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_76 () - { - // ; void CWsRenderStage::BaseConstructL(void) - _asm mov eax, 76 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_77 () - { - // ; class MWsGraphicDrawerEnvironment & CWsPlugin::Env(void) - _asm mov eax, 77 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_78 () - { - // ; class MWsGraphicDrawerEnvironment const & CWsPlugin::Env(void) const - _asm mov eax, 78 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_79 () - { - // ; class CWsRenderStage * CWsRenderStage::Next(void) - _asm mov eax, 79 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_80 () - { - // ; class TDesC16 const & CWsPlugin::PluginName(void) const - _asm mov eax, 80 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_81 () - { - // ; void * CWsRenderStage::ResolveObjectInterface(unsigned int) - _asm mov eax, 81 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_82 () - { - // ; void CWsRenderStage::SetNext(class CWsRenderStage *) - _asm mov eax, 82 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_83 () - { - // ; class TSurfaceId const * TWservCrEvent::SurfaceId(void) const - _asm mov eax, 83 - _asm jmp common_dispatch - } - -__declspec(dllexport) -__declspec(naked) -void call_vector_84 () - { - // ; void MWsAnimationScheduler::Animate(class MWsScreen &, class TRequestStatus *) - _asm mov eax, 84 - _asm jmp common_dispatch - } - -} -#define MAX_ORDINAL 85 - +// Generated from "../BWINS/graphicdraweru.def" file size: 11015 +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). + +extern "C" { +void common_dispatch(); + +__declspec(dllexport) +__declspec(naked) +void call_vector_1 () + { + // ; CWsGraphicDrawer::CWsGraphicDrawer(void) + _asm mov eax, 1 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_2 () + { + // ; TWsGraphicMsgAnimation::TWsGraphicMsgAnimation(void) + _asm mov eax, 2 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_3 () + { + // ; TWsGraphicMsgBufParser::TWsGraphicMsgBufParser(class TDesC8 const &) + _asm mov eax, 3 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_4 () + { + // ; CWsGraphicDrawer::~CWsGraphicDrawer(void) + _asm mov eax, 4 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_5 () + { + // ; void CWsGraphicDrawerArray::AddLC(class CWsGraphicDrawer *) + _asm mov eax, 5 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_6 () + { + // ; void MWsAnimationScheduler::Animate(class MWsScreen &) + _asm mov eax, 6 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_7 () + { + // ; class TTimeIntervalMicroSeconds TWsGraphicMsgAnimation::AnimationTime(class TTime const &, class TTimeIntervalMicroSeconds const &) const + _asm mov eax, 7 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_8 () + { + // ; void CWsGraphicDrawer::BaseConstructL(class MWsGraphicDrawerEnvironment &, struct TGraphicDrawerId const &, class MWsClient &) + _asm mov eax, 8 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_9 () + { + // ; void CWsGraphicDrawerArray::Close(void) + _asm mov eax, 9 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_10 () + { + // ; int TGraphicDrawerId::Compare(struct TGraphicDrawerId const &) const + _asm mov eax, 10 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_11 () + { + // ; int TGraphicDrawerId::Compare(struct TGraphicDrawerId const &, struct TGraphicDrawerId const &) + _asm mov eax, 11 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_12 () + { + // ; int CWsGraphicDrawer::Contains(class TArray const &) const + _asm mov eax, 12 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_13 () + { + // ; int TWsGraphicMsgBufParser::Count(void) const + _asm mov eax, 13 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_14 () + { + // ; class CWsGraphicDrawer * WsGraphicDrawer::CreateLC(class TUid, class MWsGraphicDrawerEnvironment &, struct TGraphicDrawerId const &, class MWsClient &, class TDesC8 const &) + _asm mov eax, 14 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_15 () + { + // ; class TPtrC8 TWsGraphicMsgBufParser::Data(int) const + _asm mov eax, 15 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_16 () + { + // ; void CWsGraphicDrawer::Draw(class MWsGc &, class TRect const &, class TDesC8 const &) const + _asm mov eax, 16 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_17 () + { + // ; class MWsGraphicDrawerEnvironment & CWsGraphicDrawer::Env(void) + _asm mov eax, 17 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_18 () + { + // ; int TWsGraphicMsgBufParser::Find(class TUid, int) const + _asm mov eax, 18 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_19 () + { + // ; int CWsGraphicDrawer::HasAsChild(class TArray const &) const + _asm mov eax, 19 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_20 () + { + // ; struct TGraphicDrawerId const & CWsGraphicDrawer::Id(void) const + _asm mov eax, 20 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_21 () + { + // ; void CWsGraphicDrawer::Invalidate(void) + _asm mov eax, 21 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_22 () + { + // ; int CWsGraphicDrawerArray::IsEmpty(void) const + _asm mov eax, 22 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_23 () + { + // ; int TWsGraphicMsgAnimation::IsPlaying(class TTime const &, class TTimeIntervalMicroSeconds const &) const + _asm mov eax, 23 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_24 () + { + // ; int CWsGraphicDrawer::IsSharedWith(class TSecureId) const + _asm mov eax, 24 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_25 () + { + // ; int TWsGraphicMsgAnimation::Load(class TWsGraphicMsgBufParser const &) + _asm mov eax, 25 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_26 () + { + // ; int TWsGraphicMsgAnimation::Load(class TWsGraphicMsgBufParser const &, int) + _asm mov eax, 26 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_27 () + { + // ; class MWsClient const & CWsGraphicDrawer::Owner(void) const + _asm mov eax, 27 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_28 () + { + // ; void MWsAnimationScheduler::Redraw(class MWsScreen &) + _asm mov eax, 28 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_29 () + { + // ; int MWsAnimationScheduler::RedrawInvalid(class MWsScreen &, class TArray const &) + _asm mov eax, 29 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_30 () + { + // ; int CWsGraphicDrawerArray::Remove(struct TGraphicDrawerId const &) + _asm mov eax, 30 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_31 () + { + // ; int CWsGraphicDrawerArray::RemoveAll(class MWsClient const &) + _asm mov eax, 31 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_32 () + { + // ; int CWsGraphicDrawerArray::RemoveAndDestroy(struct TGraphicDrawerId const &) + _asm mov eax, 32 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_33 () + { + // ; int CWsGraphicDrawerArray::RemoveAndDestroyAll(class MWsClient const &) + _asm mov eax, 33 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_34 () + { + // ; void CWsGraphicDrawerArray::ResetAndDestroy(void) + _asm mov eax, 34 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_35 () + { + // ; class CWsGraphicDrawer const * CWsGraphicDrawerArray::ResolveGraphic(struct TGraphicDrawerId const &) const + _asm mov eax, 35 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_36 () + { + // ; void * MWsObjectProvider::ResolveObjectInterface(unsigned int) + _asm mov eax, 36 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_37 () + { + // ; int CWsGraphicDrawer::SendMessage(class TDesC8 const &) + _asm mov eax, 37 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_38 () + { + // ; int CWsGraphicDrawer::Share(class TSecureId) + _asm mov eax, 38 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_39 () + { + // ; int CWsGraphicDrawer::ShareGlobally(void) + _asm mov eax, 39 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_40 () + { + // ; int CWsGraphicDrawerArray::SwapLC(class CWsGraphicDrawer *) + _asm mov eax, 40 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_41 () + { + // ; class TUid TWsGraphicMsgBufParser::Uid(int) const + _asm mov eax, 41 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_42 () + { + // ; int CWsGraphicDrawer::UnShare(class TSecureId) + _asm mov eax, 42 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_43 () + { + // ; int CWsGraphicDrawer::UnShareGlobally(void) + _asm mov eax, 43 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_44 () + { + // ; int TWsGraphicMsgBufParser::Verify(void) const + _asm mov eax, 44 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_45 () + { + // ; class MWsGraphicDrawerEnvironment const & CWsGraphicDrawer::Env(void) const + _asm mov eax, 45 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_46 () + { + // ; void CWsGraphicDrawer::HandleEvent(struct TWservCrEvent const &) + _asm mov eax, 46 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_47 () + { + // ; int CWsGraphicDrawer::HasEventHandler(void) const + _asm mov eax, 47 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_48 () + { + // ; void CWsGraphicDrawer::SetEventHandler(class MWsEventHandler *) + _asm mov eax, 48 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_49 () + { + // ; TWservCrEvent::TWservCrEvent(unsigned long) + _asm mov eax, 49 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_50 () + { + // ; TWservCrEvent::TWservCrEvent(unsigned long, unsigned long) + _asm mov eax, 50 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_51 () + { + // ; TWservCrEvent::TWservCrEvent(unsigned long, unsigned long, void *) + _asm mov eax, 51 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_52 () + { + // ; int TWservCrEvent::SizeMode(void) const + _asm mov eax, 52 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_53 () + { + // ; unsigned long TWservCrEvent::Type(void) const + _asm mov eax, 53 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_54 () + { + // ; class RRegion const * TWservCrEvent::VisibleRegion(void) const + _asm mov eax, 54 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_55 () + { + // ; int TWservCrEvent::ScreenNumber(void) const + _asm mov eax, 55 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_56 () + { + // ; int TWsGraphicMsgBufParser::LoadFixed(class TUid, void *, int, int) const + _asm mov eax, 56 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_57 () + { + // ; int CWsGraphicDrawer::SendMessage(class CWsMessageData &) + _asm mov eax, 57 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_58 () + { + // ; class TRegion const * TWservCrEvent::DrawingRegion(void) const + _asm mov eax, 58 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_59 () + { + // ; int TWservCrEvent::WindowGroupIdentifier(void) const + _asm mov eax, 59 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_60 () + { + // ; int CWsGraphicDrawerArray::Add(class CWsGraphicDrawer *) + _asm mov eax, 60 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_61 () + { + // ; struct CWsGraphicDrawerArray::XRollBackBase * CWsGraphicDrawerArray::AddTLC(class CWsGraphicDrawer *) + _asm mov eax, 61 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_62 () + { + // ; void CWsGraphicDrawerArray::CommitP(struct CWsGraphicDrawerArray::XRollBackBase *) + _asm mov eax, 62 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_63 () + { + // ; struct CWsGraphicDrawerArray::XRollBackBase * CWsGraphicDrawerArray::RemoveTLC(struct TGraphicDrawerId const &) + _asm mov eax, 63 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_64 () + { + // ; int CWsGraphicDrawerArray::Swap(class CWsGraphicDrawer *) + _asm mov eax, 64 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_65 () + { + // ; struct CWsGraphicDrawerArray::XRollBackBase * CWsGraphicDrawerArray::SwapTLC(class CWsGraphicDrawer *) + _asm mov eax, 65 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_66 () + { + // ; enum CFbsBitGc::TGraphicsOrientation TWservCrEvent::Orientation(void) const + _asm mov eax, 66 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_67 () + { + // ; void WsGraphicDrawer::FinalClose(void) + _asm mov eax, 67 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_68 () + { + // ; int TWservCrEvent::WasVisible(void) const + _asm mov eax, 68 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_69 () + { + // ; TWservCrEvent::TWservCrEvent(unsigned long, unsigned long, void *, class MWsWindow *) + _asm mov eax, 69 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_70 () + { + // ; class MWsWindow * TWservCrEvent::Window(void) const + _asm mov eax, 70 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_71 () + { + // ; CWsPlugin::CWsPlugin(void) + _asm mov eax, 71 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_72 () + { + // ; CWsRenderStage::CWsRenderStage(void) + _asm mov eax, 72 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_73 () + { + // ; CWsPlugin::~CWsPlugin(void) + _asm mov eax, 73 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_74 () + { + // ; CWsRenderStage::~CWsRenderStage(void) + _asm mov eax, 74 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_75 () + { + // ; void CWsPlugin::BaseConstructL(class MWsGraphicDrawerEnvironment &) + _asm mov eax, 75 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_76 () + { + // ; void CWsRenderStage::BaseConstructL(void) + _asm mov eax, 76 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_77 () + { + // ; class MWsGraphicDrawerEnvironment & CWsPlugin::Env(void) + _asm mov eax, 77 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_78 () + { + // ; class MWsGraphicDrawerEnvironment const & CWsPlugin::Env(void) const + _asm mov eax, 78 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_79 () + { + // ; class CWsRenderStage * CWsRenderStage::Next(void) + _asm mov eax, 79 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_80 () + { + // ; class TDesC16 const & CWsPlugin::PluginName(void) const + _asm mov eax, 80 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_81 () + { + // ; void * CWsRenderStage::ResolveObjectInterface(unsigned int) + _asm mov eax, 81 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_82 () + { + // ; void CWsRenderStage::SetNext(class CWsRenderStage *) + _asm mov eax, 82 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_83 () + { + // ; class TSurfaceId const * TWservCrEvent::SurfaceId(void) const + _asm mov eax, 83 + _asm jmp common_dispatch + } + +__declspec(dllexport) +__declspec(naked) +void call_vector_84 () + { + // ; void MWsAnimationScheduler::Animate(class MWsScreen &, class TRequestStatus *) + _asm mov eax, 84 + _asm jmp common_dispatch + } + +} +#define MAX_ORDINAL 85 +