sl@0
|
1 |
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include "scrdevextension.h"
|
sl@0
|
17 |
#include "../SERVER/w32cmd.h"
|
sl@0
|
18 |
#include <graphics/displaycontrolbase.h>
|
sl@0
|
19 |
#include "CLIENT.H"
|
sl@0
|
20 |
#include "w32comm.h"
|
sl@0
|
21 |
|
sl@0
|
22 |
CWsScreenDevice::CScrDevExtension::CScrDevExtension(RWsBuffer *aBuffer,TInt32 aWsHandle): MWsClientClass(aBuffer)
|
sl@0
|
23 |
{
|
sl@0
|
24 |
iWsHandle=aWsHandle;
|
sl@0
|
25 |
__ASSERT_DEBUG(aBuffer,Panic(EW32PanicBadClientInterface));
|
sl@0
|
26 |
__ASSERT_DEBUG(aWsHandle,Panic(EW32PanicBadClientInterface));
|
sl@0
|
27 |
}
|
sl@0
|
28 |
|
sl@0
|
29 |
CWsScreenDevice::CScrDevExtension::~CScrDevExtension()
|
sl@0
|
30 |
{
|
sl@0
|
31 |
//typeface store is not owned by this class, and is created/destroyed in CWsScreenDevice
|
sl@0
|
32 |
}
|
sl@0
|
33 |
/** Interface Extension capability
|
sl@0
|
34 |
* Use of this interface going forward will allow the published client interface to be dynamically extended.
|
sl@0
|
35 |
* Note that the pointer returned is only good for the lifetime of the called CBase derived object.
|
sl@0
|
36 |
* @pre caller has already checked that the implementation is initialised using RepeatableConstruct
|
sl@0
|
37 |
* @param aInterfaceId uniqueid or well known id of interface
|
sl@0
|
38 |
* @return pointer to interface object matching this ID or NULL if no match.
|
sl@0
|
39 |
**/
|
sl@0
|
40 |
void* CWsScreenDevice::CScrDevExtension::GetInterface(TUint aInterfaceId)
|
sl@0
|
41 |
{
|
sl@0
|
42 |
if (RepeatableConstruct()<KErrNone)
|
sl@0
|
43 |
{
|
sl@0
|
44 |
return NULL;
|
sl@0
|
45 |
}
|
sl@0
|
46 |
__ASSERT_DEBUG(this!=NULL,Panic(EW32PanicBadClientInterface));
|
sl@0
|
47 |
__ASSERT_DEBUG(iBuffer,Panic(EW32PanicBadClientInterface));
|
sl@0
|
48 |
__ASSERT_DEBUG(iWsHandle!=NULL,Panic(EW32PanicBadClientInterface));
|
sl@0
|
49 |
|
sl@0
|
50 |
switch (aInterfaceId)
|
sl@0
|
51 |
{
|
sl@0
|
52 |
case MDisplayControlBase::ETypeId:
|
sl@0
|
53 |
if (iSupportedExtensionsBits&TWsSdXDisplayControl)
|
sl@0
|
54 |
{
|
sl@0
|
55 |
return static_cast<MDisplayControlBase*>(this);
|
sl@0
|
56 |
}
|
sl@0
|
57 |
break;
|
sl@0
|
58 |
case MDisplayControl::ETypeId:
|
sl@0
|
59 |
if (iSupportedExtensionsBits&TWsSdXDisplayControl)
|
sl@0
|
60 |
{
|
sl@0
|
61 |
return static_cast<MDisplayControl*>(this);
|
sl@0
|
62 |
}
|
sl@0
|
63 |
break;
|
sl@0
|
64 |
case MDisplayMappingBase::ETypeId:
|
sl@0
|
65 |
if(iSupportedExtensionsBits&TWsSdXDisplayMapping)
|
sl@0
|
66 |
{
|
sl@0
|
67 |
return static_cast<MDisplayMappingBase*>(this);
|
sl@0
|
68 |
}
|
sl@0
|
69 |
break;
|
sl@0
|
70 |
case MDisplayMapping::ETypeId:
|
sl@0
|
71 |
if(iSupportedExtensionsBits&TWsSdXDisplayMapping)
|
sl@0
|
72 |
{
|
sl@0
|
73 |
return static_cast<MDisplayMapping*>(this);
|
sl@0
|
74 |
}
|
sl@0
|
75 |
break;
|
sl@0
|
76 |
case MTestScreenCapture::ETypeId:
|
sl@0
|
77 |
{
|
sl@0
|
78 |
TInt requiredIf = TWsSdXDebugComposition | TWsSdXDisplayMapping;
|
sl@0
|
79 |
if ((iSupportedExtensionsBits & requiredIf) == requiredIf)
|
sl@0
|
80 |
{
|
sl@0
|
81 |
return static_cast<MTestScreenCapture*>(this);
|
sl@0
|
82 |
}
|
sl@0
|
83 |
break;
|
sl@0
|
84 |
}
|
sl@0
|
85 |
default:
|
sl@0
|
86 |
break;
|
sl@0
|
87 |
}
|
sl@0
|
88 |
return NULL;
|
sl@0
|
89 |
}
|
sl@0
|
90 |
//Accessor to typeface store instance
|
sl@0
|
91 |
CFbsTypefaceStore* CWsScreenDevice::CScrDevExtension::TypefaceStore()
|
sl@0
|
92 |
{
|
sl@0
|
93 |
return iTypefaceStore;
|
sl@0
|
94 |
}
|
sl@0
|
95 |
//Accessor to typeface store instance
|
sl@0
|
96 |
void CWsScreenDevice::CScrDevExtension::SetTypefaceStore(CFbsTypefaceStore* aTypeFaceStore)
|
sl@0
|
97 |
{
|
sl@0
|
98 |
iTypefaceStore=aTypeFaceStore;
|
sl@0
|
99 |
}
|
sl@0
|
100 |
|
sl@0
|
101 |
/**
|
sl@0
|
102 |
* Constructs the extension interface implementation, or returns error if interface is not available.
|
sl@0
|
103 |
* After success, the interface is then always available and is not re-constructed if method called again,
|
sl@0
|
104 |
* but after failure the construct attempt will be repeated (and fail again) if the method is called again.
|
sl@0
|
105 |
* Clients would be expected to make then keep a pointer to this interface, not get new ones repeatedly.
|
sl@0
|
106 |
* Note that if the extension was not allocated, then "this" could be NULL
|
sl@0
|
107 |
* @param aWsHandle server-side object handle to use in messages if first time
|
sl@0
|
108 |
* @return KErrNone if initialised correctly, or a standard error code.
|
sl@0
|
109 |
**/
|
sl@0
|
110 |
TInt CWsScreenDevice::CScrDevExtension::RepeatableConstruct()
|
sl@0
|
111 |
{
|
sl@0
|
112 |
if (this==NULL)
|
sl@0
|
113 |
{
|
sl@0
|
114 |
return KErrNoMemory; //The extension was not allocated. Making this call is bad!
|
sl@0
|
115 |
}
|
sl@0
|
116 |
__ASSERT_DEBUG(iBuffer,Panic(EW32PanicBadClientInterface));
|
sl@0
|
117 |
__ASSERT_DEBUG(iWsHandle,Panic(EW32PanicBadClientInterface));
|
sl@0
|
118 |
if (iSupportedExtensionsBits==0)
|
sl@0
|
119 |
{ //need to initialise
|
sl@0
|
120 |
TInt ExtensionsOrError= WriteReply(EWsSdOpExtensionsSupported);
|
sl@0
|
121 |
if (ExtensionsOrError&TWsSdXReservedErrorFlag)
|
sl@0
|
122 |
{
|
sl@0
|
123 |
//Server is allowed to report that lower level drivers did not support dynamic screen res.
|
sl@0
|
124 |
//Any other error is unexpected
|
sl@0
|
125 |
__ASSERT_DEBUG(ExtensionsOrError==KErrExtensionNotSupported,Panic(EW32PanicBadClientInterface));
|
sl@0
|
126 |
ExtensionsOrError=TWsSdXReservedErrorFlag;
|
sl@0
|
127 |
return ExtensionsOrError;
|
sl@0
|
128 |
}
|
sl@0
|
129 |
else
|
sl@0
|
130 |
{
|
sl@0
|
131 |
iSupportedExtensionsBits=ExtensionsOrError;
|
sl@0
|
132 |
}
|
sl@0
|
133 |
}
|
sl@0
|
134 |
return KErrNone;
|
sl@0
|
135 |
}
|
sl@0
|
136 |
|
sl@0
|
137 |
TInt CWsScreenDevice::CScrDevExtension::NumberOfResolutions() const
|
sl@0
|
138 |
{
|
sl@0
|
139 |
__ASSERT_DEBUG(iSupportedExtensionsBits&TWsSdXDisplayControl,Panic(EW32PanicBadClientInterface));
|
sl@0
|
140 |
TInt numResOrError=WriteReply(EWsSdOpXDcGetNumberOfResolutions);
|
sl@0
|
141 |
return numResOrError;
|
sl@0
|
142 |
}
|
sl@0
|
143 |
|
sl@0
|
144 |
TInt CWsScreenDevice::CScrDevExtension::FillResolutionArray(TInt aNumOfRes, RArray<TResolution>& aResolutions) const
|
sl@0
|
145 |
{
|
sl@0
|
146 |
TInt arrayMaxSize=aResolutions.Count();
|
sl@0
|
147 |
if (arrayMaxSize < aNumOfRes)
|
sl@0
|
148 |
{
|
sl@0
|
149 |
//Array is too small or not initialized
|
sl@0
|
150 |
TResolution emptyRes(TSize(0,0),TSize(0,0)); //ARM BUILD needs this form of constructor!
|
sl@0
|
151 |
for (TInt index = 0;index < aNumOfRes-arrayMaxSize;index++)
|
sl@0
|
152 |
aResolutions.Append(emptyRes);
|
sl@0
|
153 |
|
sl@0
|
154 |
//reset arrayMaxSize
|
sl@0
|
155 |
arrayMaxSize = aNumOfRes;
|
sl@0
|
156 |
}
|
sl@0
|
157 |
//Else array is large enough.
|
sl@0
|
158 |
|
sl@0
|
159 |
TPtr8 pArr((TUint8*)&aResolutions[0],arrayMaxSize*sizeof(TResolution),arrayMaxSize*sizeof(TResolution));
|
sl@0
|
160 |
return WriteReplyP(NULL,0,TWriteDescriptorType(&pArr),EWsSdOpXDcGetResolutionsList);
|
sl@0
|
161 |
}
|
sl@0
|
162 |
TInt CWsScreenDevice::CScrDevExtension::GetResolutions(RArray<TResolution>& aResolutions) const
|
sl@0
|
163 |
{
|
sl@0
|
164 |
TInt result;
|
sl@0
|
165 |
__ASSERT_DEBUG(iSupportedExtensionsBits&TWsSdXDisplayControl,Panic(EW32PanicBadClientInterface));
|
sl@0
|
166 |
|
sl@0
|
167 |
TInt resCount=WriteReply(EWsSdOpXDcGetNumberOfResolutions);
|
sl@0
|
168 |
if(resCount < KErrNone)
|
sl@0
|
169 |
{
|
sl@0
|
170 |
return resCount;
|
sl@0
|
171 |
}
|
sl@0
|
172 |
|
sl@0
|
173 |
result=aResolutions.Reserve(resCount);
|
sl@0
|
174 |
if (result<KErrNone)
|
sl@0
|
175 |
{
|
sl@0
|
176 |
return result; //Failed - probably KErrNoMemory
|
sl@0
|
177 |
}
|
sl@0
|
178 |
|
sl@0
|
179 |
if(resCount > 0)
|
sl@0
|
180 |
{
|
sl@0
|
181 |
result = FillResolutionArray(resCount, aResolutions);
|
sl@0
|
182 |
if (result<KErrNone)
|
sl@0
|
183 |
{
|
sl@0
|
184 |
return result; //Content of the array is "undefined"
|
sl@0
|
185 |
}
|
sl@0
|
186 |
__ASSERT_DEBUG((result%sizeof(TResolution))==0,Panic(EW32PanicSizeNotExpected));
|
sl@0
|
187 |
result=result/sizeof(TResolution);
|
sl@0
|
188 |
|
sl@0
|
189 |
if(result > aResolutions.Count())
|
sl@0
|
190 |
{
|
sl@0
|
191 |
//The resolution list at server side is larger and can't fit in client buffer we supplied
|
sl@0
|
192 |
//The Content of the array is undefined at this point.
|
sl@0
|
193 |
//Give it one more try
|
sl@0
|
194 |
result = FillResolutionArray(result, aResolutions);
|
sl@0
|
195 |
if(result < KErrNone)
|
sl@0
|
196 |
{
|
sl@0
|
197 |
return result;
|
sl@0
|
198 |
}
|
sl@0
|
199 |
__ASSERT_DEBUG((result%sizeof(TResolution))==0,Panic(EW32PanicSizeNotExpected));
|
sl@0
|
200 |
result=result/sizeof(TResolution);
|
sl@0
|
201 |
|
sl@0
|
202 |
if(result > aResolutions.Count())
|
sl@0
|
203 |
{//give up
|
sl@0
|
204 |
return KErrCorrupt; //which means resolution list is changing during the process of getting it
|
sl@0
|
205 |
}
|
sl@0
|
206 |
}
|
sl@0
|
207 |
|
sl@0
|
208 |
TInt arrayMaxSize = aResolutions.Count();
|
sl@0
|
209 |
while(result<arrayMaxSize)
|
sl@0
|
210 |
{
|
sl@0
|
211 |
aResolutions.Remove(--arrayMaxSize);
|
sl@0
|
212 |
}
|
sl@0
|
213 |
}
|
sl@0
|
214 |
else
|
sl@0
|
215 |
{
|
sl@0
|
216 |
aResolutions.Reset(); //There's not available resolutions
|
sl@0
|
217 |
}
|
sl@0
|
218 |
return KErrNone; //Content of array is good.
|
sl@0
|
219 |
}
|
sl@0
|
220 |
|
sl@0
|
221 |
void CWsScreenDevice::CScrDevExtension::GetConfiguration(TDisplayConfiguration& aConfig) const
|
sl@0
|
222 |
{
|
sl@0
|
223 |
__ASSERT_DEBUG(iSupportedExtensionsBits&TWsSdXDisplayControl,Panic(EW32PanicBadClientInterface));
|
sl@0
|
224 |
TInt currentVersion = aConfig.Version();
|
sl@0
|
225 |
if (sizeof(TDisplayConfiguration)<currentVersion)
|
sl@0
|
226 |
currentVersion = sizeof(TDisplayConfiguration);
|
sl@0
|
227 |
TPtr8 displayPtr((TUint8 *)&aConfig, currentVersion);
|
sl@0
|
228 |
WriteReplyP(&aConfig, sizeof(TDisplayConfiguration), &displayPtr, EWsSdOpXDcGetConfiguration);
|
sl@0
|
229 |
}
|
sl@0
|
230 |
TInt CWsScreenDevice::CScrDevExtension::SetConfiguration(const TDisplayConfiguration& aConfig)
|
sl@0
|
231 |
{
|
sl@0
|
232 |
__ASSERT_DEBUG(iSupportedExtensionsBits&TWsSdXDisplayControl,Panic(EW32PanicBadClientInterface));
|
sl@0
|
233 |
TInt currentVersion = aConfig.Version();
|
sl@0
|
234 |
if (TDisplayConfiguration().Version()<currentVersion)
|
sl@0
|
235 |
currentVersion = TDisplayConfiguration().Version();
|
sl@0
|
236 |
TInt reply=WriteReply(&aConfig, sizeof(TDisplayConfiguration), EWsSdOpXDcSetConfiguration);
|
sl@0
|
237 |
return reply;
|
sl@0
|
238 |
}
|
sl@0
|
239 |
TInt CWsScreenDevice::CScrDevExtension::PreferredDisplayVersion() const
|
sl@0
|
240 |
{
|
sl@0
|
241 |
__ASSERT_DEBUG(iSupportedExtensionsBits&TWsSdXDisplayControl,Panic(EW32PanicBadClientInterface));
|
sl@0
|
242 |
TInt reply=WriteReply(EWsSdOpXDcGetPreferredDisplayVersion);
|
sl@0
|
243 |
return reply;
|
sl@0
|
244 |
}
|
sl@0
|
245 |
|
sl@0
|
246 |
TBool CWsScreenDevice::CScrDevExtension::DisplayChangeEventsEnabled() const
|
sl@0
|
247 |
{
|
sl@0
|
248 |
__ASSERT_DEBUG(iSupportedExtensionsBits&TWsSdXDisplayControl,Panic(EW32PanicBadClientInterface));
|
sl@0
|
249 |
if(WriteReply(EWsSdOpXDcDisplayChangeEventEnabled))
|
sl@0
|
250 |
return ETrue;
|
sl@0
|
251 |
return EFalse;
|
sl@0
|
252 |
}
|
sl@0
|
253 |
void CWsScreenDevice::CScrDevExtension::EnableDisplayChangeEvents(TBool aEnable)
|
sl@0
|
254 |
{
|
sl@0
|
255 |
__ASSERT_DEBUG(iSupportedExtensionsBits&TWsSdXDisplayControl,Panic(EW32PanicBadClientInterface));
|
sl@0
|
256 |
if(aEnable)
|
sl@0
|
257 |
Write(EWsSdOpXDcNotifyOnDisplayChange);
|
sl@0
|
258 |
else
|
sl@0
|
259 |
Write(EWsSdOpXDcNotifyOnDisplayChangeCancel);
|
sl@0
|
260 |
}
|
sl@0
|
261 |
TInt CWsScreenDevice::CScrDevExtension::MapCoordinates(TCoordinateSpace aSourceSpace, const TRect& aSource, TCoordinateSpace aTargetSpace, TRect& aTarget) const
|
sl@0
|
262 |
{
|
sl@0
|
263 |
TWsSdCmdMapCoordinates cmdMapCoord(aSource, aSourceSpace, aTargetSpace);
|
sl@0
|
264 |
TPtr8 targetRectPtr((TUint8 *)&aTarget, sizeof(TRect));
|
sl@0
|
265 |
TInt reply = WriteReplyP(&cmdMapCoord, sizeof(TWsSdCmdMapCoordinates), &targetRectPtr, EWsSdOpXDmMapExtent);
|
sl@0
|
266 |
return reply;
|
sl@0
|
267 |
}
|
sl@0
|
268 |
|
sl@0
|
269 |
void CWsScreenDevice::CScrDevExtension::GetMaximumWindowExtent(TRect& aExtent) const
|
sl@0
|
270 |
{
|
sl@0
|
271 |
TDisplayConfiguration config;
|
sl@0
|
272 |
GetConfiguration(config);
|
sl@0
|
273 |
aExtent.SetRect(0,0,0,0);
|
sl@0
|
274 |
if(config.IsDefined(TDisplayConfigurationBase::EResolution))
|
sl@0
|
275 |
{
|
sl@0
|
276 |
TSize fullUiSize;
|
sl@0
|
277 |
config.GetResolution(fullUiSize);
|
sl@0
|
278 |
TRect fullUiRect(TPoint(0,0), fullUiSize);
|
sl@0
|
279 |
aExtent=fullUiRect;
|
sl@0
|
280 |
#ifdef _DEBUG
|
sl@0
|
281 |
TInt err =
|
sl@0
|
282 |
#endif
|
sl@0
|
283 |
MapCoordinates(EFullScreenSpace, fullUiRect, EApplicationSpace, aExtent);
|
sl@0
|
284 |
//This should NOT fail even if display is detached/disabled.
|
sl@0
|
285 |
__ASSERT_DEBUG(err>=KErrNone, Panic(EW32PanicBadClientInterface));
|
sl@0
|
286 |
}
|
sl@0
|
287 |
}
|
sl@0
|
288 |
void CWsScreenDevice::CScrDevExtension::GetMaximumSurfaceSize(TSize& aPixels, TSize& aTwips) const
|
sl@0
|
289 |
{
|
sl@0
|
290 |
TDisplayConfiguration config;
|
sl@0
|
291 |
GetConfiguration(config);
|
sl@0
|
292 |
TInt err = KErrGeneral;
|
sl@0
|
293 |
TSize fullUiSize;
|
sl@0
|
294 |
aPixels=fullUiSize;
|
sl@0
|
295 |
aTwips=fullUiSize;
|
sl@0
|
296 |
if(config.IsDefined(TDisplayConfigurationBase::EResolution))
|
sl@0
|
297 |
{
|
sl@0
|
298 |
config.GetResolution(fullUiSize);
|
sl@0
|
299 |
TRect fullUiRect(TPoint(0,0), fullUiSize);
|
sl@0
|
300 |
TRect compositionRect;
|
sl@0
|
301 |
err = MapCoordinates(EFullScreenSpace, fullUiRect, ECompositionSpace, compositionRect);
|
sl@0
|
302 |
//This WILL fail if display is detached/disabled.
|
sl@0
|
303 |
if(err == KErrNone)
|
sl@0
|
304 |
{
|
sl@0
|
305 |
aPixels = compositionRect.Size();
|
sl@0
|
306 |
}
|
sl@0
|
307 |
}
|
sl@0
|
308 |
if(config.IsDefined(TDisplayConfigurationBase::EResolutionTwips))
|
sl@0
|
309 |
{
|
sl@0
|
310 |
config.GetResolutionTwips(aTwips);
|
sl@0
|
311 |
}
|
sl@0
|
312 |
//Why can't this function return an error?
|
sl@0
|
313 |
//In case of error the return values will be empty.
|
sl@0
|
314 |
}
|
sl@0
|
315 |
|
sl@0
|
316 |
void CWsScreenDevice::CScrDevExtension::GetDisplayExtentOfWindow(const RWindowBase& aWindow, TRect& aExtent) const
|
sl@0
|
317 |
{
|
sl@0
|
318 |
TRect winRect(aWindow.AbsPosition(), aWindow.Size());
|
sl@0
|
319 |
aExtent.SetRect(0,0,0,0);
|
sl@0
|
320 |
TInt err = MapCoordinates(EApplicationSpace, winRect, ECompositionSpace, aExtent);
|
sl@0
|
321 |
//This WILL fail if display is detached/disabled.
|
sl@0
|
322 |
//Why can't this function return an error?
|
sl@0
|
323 |
//In case of error the return values will be empty.
|
sl@0
|
324 |
}
|
sl@0
|
325 |
|
sl@0
|
326 |
TInt CWsScreenDevice::CScrDevExtension::TranslateExtent(const TRect& aInitial, TRect& aTarget) const
|
sl@0
|
327 |
{
|
sl@0
|
328 |
TPckgBuf<TRect> rectRes;
|
sl@0
|
329 |
TWsScsComposeScreenCommand translateExtentCmd(EWsScsTranslateExtent, aInitial);
|
sl@0
|
330 |
TInt ret = WriteReplyP(&translateExtentCmd, sizeof(translateExtentCmd), &rectRes, EWsSdOpXTestScreenCapture);
|
sl@0
|
331 |
if (ret == KErrNone)
|
sl@0
|
332 |
{
|
sl@0
|
333 |
aTarget=rectRes();
|
sl@0
|
334 |
}
|
sl@0
|
335 |
return ret;
|
sl@0
|
336 |
}
|
sl@0
|
337 |
|
sl@0
|
338 |
TInt CWsScreenDevice::CScrDevExtension::GetCompositedSize(TSize& aSize) const
|
sl@0
|
339 |
{
|
sl@0
|
340 |
TPckgBuf<TSize> sizePkg;
|
sl@0
|
341 |
WriteReplyP(&sizePkg,EWsSdOpXTestScreenCaptureSize);
|
sl@0
|
342 |
aSize = sizePkg();
|
sl@0
|
343 |
return KErrNone;
|
sl@0
|
344 |
}
|
sl@0
|
345 |
|
sl@0
|
346 |
TInt CWsScreenDevice::CScrDevExtension::ComposeScreen(const CFbsBitmap& aBitmap) const
|
sl@0
|
347 |
{
|
sl@0
|
348 |
TInt bitmapHandle = aBitmap.Handle();
|
sl@0
|
349 |
AddToBitmapArray(bitmapHandle);
|
sl@0
|
350 |
TWsScsComposeScreenCommand composeScreenCmd(EWsScsScreenCompose, bitmapHandle);
|
sl@0
|
351 |
return(WriteReply(&composeScreenCmd,sizeof(composeScreenCmd), EWsSdOpXTestScreenCapture));
|
sl@0
|
352 |
}
|