1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
|
/*
Miranda IM: the free IM client for Microsoft* Windows*
Copyright 2000-2009 Miranda ICQ/IM project,
This file is part of Send Screenshot Plus, a Miranda IM plugin.
Copyright (c) 2010 Ing.U.Horn
Parts of this file based on original sorce code
(c) 2004-2006 Srgio Vieira Rolanski (portet from Borland C++)
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
File name : $HeadURL: http://merlins-miranda.googlecode.com/svn/trunk/miranda/plugins/SendSSPlus/Utils.cpp $
Revision : $Revision: 22 $
Last change on : $Date: 2010-05-02 21:25:02 +0400 (Вс, 02 май 2010) $
Last change by : $Author: ing.u.horn $
*/
#include "Utils.h"
//---------------------------------------------------------------------------
extern HINSTANCE hInst;
//---------------------------------------------------------------------------
//Workaround for MS bug ComboBox_SelectItemData
int ComboBox_SelectItemData(HWND hwndCtl, int indexStart, LPARAM data) {
int i = 0;
for ( i ; i < ComboBox_GetCount(hwndCtl); i++) {
if(data == ComboBox_GetItemData(hwndCtl, i)) {
ComboBox_SetCurSel (hwndCtl,i);
return i;
}
}
return CB_ERR;
}
//---------------------------------------------------------------------------
// MonitorInfoEnum
size_t MonitorInfoEnum(MONITORINFOEX* & myMonitors, RECT & virtualScreen) {
MONITORS tmp = {0,0};
if (EnumDisplayMonitors(NULL, NULL, MonitorInfoEnumProc, (LPARAM)&tmp)){
myMonitors = tmp.info;
memset(&virtualScreen, 0, sizeof(virtualScreen));
for (size_t i = 0; i < tmp.count; ++i) {
UnionRect(&virtualScreen, &virtualScreen, &tmp.info[i].rcMonitor);
}
return tmp.count;
}
else {
if (tmp.info) mir_free(tmp.info);
}
return 0;
}
// MonitorInfoEnumProc - CALLBACK for MonitorInfoEnum
BOOL CALLBACK MonitorInfoEnumProc(HMONITOR hMonitor, HDC hdcMonitor, LPRECT lprcMonitor, LPARAM dwData) {
MONITORS* monitors = (MONITORS*)dwData;
monitors->count++;
monitors->info = (MONITORINFOEX*)mir_realloc(monitors->info, sizeof(MONITORINFOEX)*monitors->count);
monitors->info[monitors->count-1].cbSize = sizeof(MONITORINFOEX);
if(!GetMonitorInfo(hMonitor, (LPMONITORINFO)(monitors->info + monitors->count-1))) {
return FALSE; // stop enumeration if error
}
return TRUE;
}
//---------------------------------------------------------------------------
// capture window as FIBITMAP - caller must FIP->FI_Unload(dib)
FIBITMAP* CaptureWindow (HWND hCapture, BOOL ClientArea) {
FIBITMAP *dib = NULL;
HWND hForegroundWin = NULL;
HDC hScrDC; // screen DC
RECT rect= {0}; // screen RECT
SIZE size; // DIB width and height = window resolution
if (!hCapture || !IsWindow(hCapture)) return 0;
hForegroundWin = GetForegroundWindow(); //Saving foreground window
BringWindowToTop(hCapture); // This window bring the target window to the top of all others
SetForegroundWindow(hCapture); // Make sure the target window is the foreground one
// redraw window to prevent runtime artefact in picture
UpdateWindow(hCapture);
hScrDC = GetWindowDC(hCapture);
// get window resolution
GetWindowRect(hCapture, &rect);
size.cx = ABS(rect.right - rect.left);
size.cy = ABS(rect.bottom - rect.top);
//capture window and get FIBITMAP
dib = CaptureScreen(hScrDC, size, hCapture);
if(ClientArea) {
RECT rectCA = {0};
POINT pt = {0};
GetClientRect (hCapture, &rectCA);
ClientToScreen(hCapture, &pt);
//crop the window to ClientArea
FIBITMAP* dibClient = FIP->FI_Copy(dib,
pt.x - rect.left,
pt.y - rect.top,
pt.x - rect.left + rectCA.right -1,
pt.y - rect.top + rectCA.bottom -1);
FIP->FI_Unload(dib);
dib = dibClient;
}
ReleaseDC(NULL, hScrDC);
// Restoring foreground window
if (hForegroundWin) {
SetForegroundWindow(hForegroundWin);
}
return dib;
}
FIBITMAP* CaptureMonitor (LPTSTR szDevice) {
SIZE size;
HDC hScrDC;
FIBITMAP *dib = NULL;
// get screen resolution
if(!szDevice) {
hScrDC = GetDC(NULL); /*Get full virtualscreen*/
size.cx = GetSystemMetrics(SM_CXVIRTUALSCREEN);
size.cy = GetSystemMetrics(SM_CYVIRTUALSCREEN);
}
else {
hScrDC = CreateDC(szDevice, NULL, NULL, NULL);
size.cx = GetDeviceCaps(hScrDC, HORZRES);
size.cy = GetDeviceCaps(hScrDC, VERTRES);
}
dib = CaptureScreen (hScrDC, size);
ReleaseDC(NULL, hScrDC);
return dib;
}
FIBITMAP* CaptureScreen (HDC hDC, SIZE size, HWND hCapture) {
//HDC GetDC (NULL) entire desktp
//HDC GetDC (HWND hWnd) client area of the specified window.
//HDC GetWindowDC (HWND hWnd) entire window.
FIBITMAP *dib = NULL;
HBITMAP hBitmap; // handles to device-dependent bitmaps
HDC hScrDC, hMemDC; // screen DC and memory DC
// create a DC for the screen and create
// a memory DC compatible to screen DC
hScrDC = hDC ? hDC : GetDC(NULL/*Get full screen*/);
hMemDC = CreateCompatibleDC(hScrDC);
// create a bitmap compatible with the screen DC
hBitmap = CreateCompatibleBitmap(hScrDC, size.cx, size.cy);
// select new bitmap into memory DC
HBITMAP hOld = (HBITMAP) SelectObject(hMemDC, hBitmap);
if(hCapture) {
PrintWindow(hCapture, hMemDC, 0/*PW_CLIENTONLY is buggy*/);
}
else {
// bitblt screen DC to memory DC
BitBlt(hMemDC, 0, 0, size.cx, size.cy, hScrDC, 0, 0, CAPTUREBLT|SRCCOPY);
}
dib = FIP->FI_CreateDIBFromHBITMAP(hBitmap);
//alpha channel from window is always wrong,
//coz GDI do not draw all in alpha mode.
//we have to create our own new alpha channel.
bool bFixAlpha = true;
bool bInvert = false;
// Create monochrome (1 bit) B+W mask bitmap.
HBITMAP hMask = CreateBitmap(size.cx,size.cy, 1, 1, NULL);
HDC hMaskDC = CreateCompatibleDC(0);
SelectBitmap(hMaskDC, hMask);
//Create a SolidBrush object for non transparent area
HBRUSH hBr = CreateSolidBrush(RGB(255,255,255));
HRGN hrgn = NULL;
int regionType;
if(hCapture) {
hrgn = CreateRectRgn(0,0,0,0);
regionType = GetWindowRgn(hCapture, hrgn);
if (regionType != ERROR) {
// not layerd - fill the window region
FillRgn(hMaskDC, hrgn, hBr);
}
else { //layerd window (WS_EX_LAYERED)
BYTE bAlpha= 0;
COLORREF crKey=0; //0x00bbggrr
DWORD dwFlags=0;
if(GetLayeredWindowAttributes(hCapture,&crKey,&bAlpha,&dwFlags)) {
//per window transparency (like fading in a whole window).
if((dwFlags & LWA_ALPHA) == LWA_ALPHA) {
//Use bAlpha to determine the opacity of the layered window.
bFixAlpha = false;
}
if((dwFlags & LWA_COLORKEY) == LWA_COLORKEY) {
//Use crKey as the transparency color.
SetBkColor(hMemDC, crKey);
BitBlt(hMaskDC, 0, 0, size.cx, size.cy, hMemDC, 0, 0, SRCCOPY);
bInvert = true;
bFixAlpha = true;
}
}
else {
//per-pixel transparency (won't use the WM_PAINT )
bFixAlpha = false;
}
}
}
else { //fill the desktop region
hrgn = CreateRectRgn(0,0,size.cx,size.cy);
FillRgn(hMaskDC, hrgn, hBr);
}
if(bFixAlpha) {
FIBITMAP* dibMask = FIP->FI_CreateDIBFromHBITMAP(hMask);
if(bInvert) FIP->FI_Invert(dibMask);
FIBITMAP* dib8 = FIP->FI_ConvertTo8Bits(dibMask);
//copy the dib8 alpha mask to dib32 main bitmap
FIP->FI_SetChannel(dib,dib8,FICC_ALPHA);
FIP->FI_Unload(dibMask);
FIP->FI_Unload(dib8);
}
//clean up
DeleteObject(hBr);
if(hrgn) DeleteObject(hrgn);
DeleteDC(hMaskDC);
DeleteObject(hMask);
SelectObject(hMemDC, hOld);
DeleteDC(hMemDC);
if(!hDC) ReleaseDC(NULL, hScrDC);
DeleteObject(hBitmap);
#ifdef _DEBUG
switch (FIP->FI_GetImageType(dib)){
case FIT_UNKNOWN:
OutputDebugStringA("FIBITMAP Typ: FIT_UNKNOWN\r\n" );
break;
case FIT_BITMAP:
OutputDebugStringA("FIBITMAP Typ: FIT_BITMAP\r\n" );
break;
case FIT_UINT16:
OutputDebugStringA("FIBITMAP Typ: FIT_UINT16\r\n" );
break;
case FIT_INT16:
OutputDebugStringA("FIBITMAP Typ: FIT_INT16\r\n" );
break;
case FIT_UINT32:
OutputDebugStringA("FIBITMAP Typ: FIT_UINT32\r\n" );
break;
case FIT_INT32:
OutputDebugStringA("FIBITMAP Typ: FIT_INT32\r\n" );
break;
case FIT_FLOAT:
OutputDebugStringA("FIBITMAP Typ: FIT_FLOAT\r\n" );
break;
case FIT_DOUBLE:
OutputDebugStringA("FIBITMAP Typ: FIT_DOUBLE\r\n" );
break;
case FIT_COMPLEX:
OutputDebugStringA("FIBITMAP Typ: FIT_COMPLEX\r\n" );
break;
case FIT_RGB16:
OutputDebugStringA("FIBITMAP Typ: FIT_RGB16\r\n" );
break;
case FIT_RGBA16:
OutputDebugStringA("FIBITMAP Typ: FIT_RGBA16\r\n" );
break;
case FIT_RGBF:
OutputDebugStringA("FIBITMAP Typ: FIT_RGBF\r\n" );
break;
case FIT_RGBAF:
OutputDebugStringA("FIBITMAP Typ: FIT_RGBAF\r\n" );
break;
default:
OutputDebugStringA("FIBITMAP Typ: nicht feststellbar\r\n" );
break;
}
BOOL inf = FIP->FI_IsTransparent(dib);
OutputDebugStringA(inf ? "FIBITMAP Transparent: true\r\n" : "FIBITMAP Transparent: fase\r\n");
#endif
return dib;
}
FIBITMAP* CaptureDesktop/*emulate print screen*/() {
FIBITMAP *dib = NULL;
HBITMAP hBitmap; // handles to device-dependent bitmaps
BOOL bBitmap = false;
int i = 0;
keybd_event(VK_SNAPSHOT, 0x45, KEYEVENTF_EXTENDEDKEY, 0);
keybd_event(VK_SNAPSHOT, 0x45, KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
do {//Clipboard need time to get bitmap from keybd_event,
i++; //we use a counter to get this time.
bBitmap = IsClipboardFormatAvailable(CF_BITMAP);
if(i == 500) return (FIBITMAP*)0; //emergency exit if something go wrong
} while (!bBitmap);
#ifdef _DEBUG
char mess[120] = {0};
LPSTR pszMess = mess;
mir_snprintf(pszMess,120,"SS Bitmap counter: %i\r\n",i);
OutputDebugStringA( pszMess );
#endif
//get clipboard data
OpenClipboard(NULL);
hBitmap = (HBITMAP)GetClipboardData(CF_BITMAP);
//create FIBITMAP * from HBITMAP
FIP->FI_CorrectBitmap32Alpha(hBitmap, FALSE);
dib = FIP->FI_CreateDIBFromHBITMAP(hBitmap);
CloseClipboard();
return dib;
}
LPTSTR SaveImage(FREE_IMAGE_FORMAT fif, FIBITMAP* dib, LPTSTR pszFilename, LPTSTR pszExt, int flag) {
int ret=0;
LPTSTR pszFile = NULL;
LPTSTR FileExt = (LPTSTR)GetFileExt (pszFilename, DBVT_TCHAR);
if(!FileExt) {
if(!pszExt) return NULL;
mir_tcsadd(pszFile, pszFilename);
mir_tcsadd(pszFile, _T("."));
mir_tcsadd(pszFile, pszExt);
}
else {
mir_tcsadd(pszFile, pszFilename);
}
if(fif==FIF_UNKNOWN) {
#if defined(_UNICODE)
fif = FIP->FI_GetFIFFromFilenameU(pszFile);
#else
fif = FIP->FI_GetFIFFromFilename(pszFile);
#endif
}
if(FIP->FI_FIFSupportsICCProfiles(fif)) {
bool bDummy = true;
}
#if defined(_UNICODE)
ret = FIP->FI_SaveU(fif, dib, pszFile, flag);
#else
ret = FIP->FI_Save(fif, dib, pszFile, flag);
#endif
mir_free(FileExt);
if(ret) return pszFile;
mir_free(pszFile);
return NULL;
}
//---------------------------------------------------------------------------
//Draws a selection border on the window under cursor
void DrawBorderInverted(HWND hWindow) {
if (!hWindow){
return;
}
HDC hDC=GetWindowDC(hWindow);
RECT rect={0};
GetWindowRect(hWindow, &rect);
int dcSave = SaveDC(hDC);
SetROP2(hDC, R2_NOT);
HPEN hPen=0;
hPen = CreatePen(PS_SOLID, 10, RGB(0, 0, 0));
SelectObject(hDC, &hPen);
SelectObject(hDC, GetStockObject(NULL_BRUSH));
Rectangle(hDC, 0, 0, rect.right-rect.left, rect.bottom-rect.top);
Rectangle(hDC, 1, 1, rect.right-rect.left-1, rect.bottom-rect.top-1);
Rectangle(hDC, 2, 2, rect.right-rect.left-2, rect.bottom-rect.top-2);
RestoreDC(hDC, dcSave);
}
//---------------------------------------------------------------------------
//is left mouse button down
BOOL GetLmouse() {
SHORT temp = GetAsyncKeyState((GetSystemMetrics(SM_SWAPBUTTON)) ? VK_RBUTTON : VK_LBUTTON);
if ((temp & 0x8000) == 0x8000) { // LBUTTON down
return TRUE;
}
return FALSE;
}
//---------------------------------------------------------------------------
//is miranda unicode
BOOL mir_is_unicode() {
char ver[1024];
CallService(MS_SYSTEM_GETVERSIONTEXT, (WPARAM) sizeof(ver), (LPARAM) ver);
return strstr(ver, "Unicode") != NULL;
}
//---------------------------------------------------------------------------
INT_PTR GetFileName(LPTSTR pszPath, UINT typ) {
/*DBVT_ASCIIZ, DBVT_WCHAR, DBVT_TCHAR*/
LPTSTR slash = _tcsrchr(pszPath,_T('\\'));
if (slash) {
switch (typ) {
case DBVT_ASCIIZ:
return (INT_PTR)mir_t2a(slash+1);
case DBVT_WCHAR:
return (INT_PTR)mir_t2u(slash+1);
default:
return 0;
}
}
else {
switch (typ) {
case DBVT_ASCIIZ:
return (INT_PTR)mir_t2a(pszPath);
case DBVT_WCHAR:
return (INT_PTR)mir_t2u(pszPath);
default:
return 0;
}
}
}
INT_PTR GetFileExt (LPTSTR pszPath, UINT typ) {
/*DBVT_ASCIIZ, DBVT_WCHAR, DBVT_TCHAR*/
LPTSTR slash = _tcsrchr(pszPath,_T('.'));
if (slash) {
switch (typ) {
case DBVT_ASCIIZ:
return (INT_PTR)mir_t2a(slash);
case DBVT_WCHAR:
return (INT_PTR)mir_t2u(slash);
default:
return 0;
}
}
else {
return NULL;
}
}
//---------------------------------------------------------------------------
BOOL GetEncoderClsid(wchar_t *wchMimeType, CLSID& clsidEncoder) {
UINT uiNum = 0;
UINT uiSize = 0;
BOOL bOk = FALSE;
Gdiplus::ImageCodecInfo* pImageCodecInfo = NULL;
Gdiplus::GetImageEncodersSize(&uiNum, &uiSize);
if( uiSize > 0 ) {
pImageCodecInfo = (Gdiplus::ImageCodecInfo *)new char[uiSize];
if( pImageCodecInfo ) {
Gdiplus::GetImageEncoders(uiNum, uiSize, pImageCodecInfo);
for( UINT i = 0; i < uiNum; i++ ) {
if( wcscmp(pImageCodecInfo[i].MimeType, wchMimeType) == 0 ) {
clsidEncoder = pImageCodecInfo[i].Clsid;
bOk = TRUE;
}
}
}
delete pImageCodecInfo;
}
return bOk;
}
INT_PTR SavePNG(HBITMAP hBmp, LPTSTR szFilename) {
Gdiplus::GdiplusStartupInput gdiplusStartupInput;
ULONG_PTR gdiplusToken;
Gdiplus::GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);
Gdiplus::Bitmap *pBitmap = Gdiplus::Bitmap::FromHBITMAP(hBmp, (HPALETTE)GetStockObject(DEFAULT_PALETTE) );
if( pBitmap ) {
// Get the CLSID of the PNG encoder.
CLSID clsidEncoder;
if( GetEncoderClsid(L"image/png", clsidEncoder)) {
LPWSTR pswFile = mir_t2u(szFilename);
pBitmap->Save((const WCHAR*)pswFile, &clsidEncoder, NULL);
mir_free(pswFile);
}
delete pBitmap;
}
Gdiplus::GdiplusShutdown(gdiplusToken);
return 0;
}
INT_PTR SaveGIF(HBITMAP hBmp, LPTSTR szFilename) {
Gdiplus::GdiplusStartupInput gdiplusStartupInput;
ULONG_PTR gdiplusToken;
Gdiplus::GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);
Gdiplus::Bitmap *pBitmap = Gdiplus::Bitmap::FromHBITMAP(hBmp, (HPALETTE)GetStockObject(DEFAULT_PALETTE) );
if( pBitmap ) {
// Get the CLSID of the GIF encoder.
CLSID clsidEncoder;
if( GetEncoderClsid(L"image/gif", clsidEncoder)) {
LPWSTR pswFile = mir_t2u(szFilename);
pBitmap->Save((const WCHAR*)pswFile, &clsidEncoder, NULL);
mir_free(pswFile);
}
delete pBitmap;
}
Gdiplus::GdiplusShutdown(gdiplusToken);
return 0;
}
INT_PTR SaveTIF(HBITMAP hBmp, LPTSTR szFilename) {
//http://www.codeproject.com/Messages/1406708/How-to-reduce-the-size-of-an-Image-using-GDIplus.aspx
ULONG_PTR gdiplusToken;
Gdiplus::GdiplusStartupInput gdiplusStartupInput;
Gdiplus::Status stat;
Gdiplus::GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);
Gdiplus::Bitmap *pBitmap = Gdiplus::Bitmap::FromHBITMAP(hBmp, (HPALETTE)GetStockObject(DEFAULT_PALETTE) );
if( pBitmap ) {
// Get the CLSID of the GIF encoder.
CLSID EncCLSID;
if( GetEncoderClsid(L"image/tiff", EncCLSID)) {
//--- Create a 2-parameter array, for Compression and for Color Bit depth
Gdiplus::EncoderParameters* EncParams = (Gdiplus::EncoderParameters*) malloc(sizeof(Gdiplus::EncoderParameters) + 1 * sizeof(Gdiplus::EncoderParameter));
// Gdiplus::EncoderParameters pEncoderParameters;
//--- Use LZW Compression instead of Group 4, since it works for color and G4 doesn't
ULONG ulCompression = Gdiplus::EncoderValueCompressionLZW ;
ULONG ulColorDepth = 24L ;
EncParams->Count = 2 ;
EncParams->Parameter[0].Guid = Gdiplus::EncoderCompression ;
EncParams->Parameter[0].Type = Gdiplus::EncoderParameterValueTypeLong ;
EncParams->Parameter[0].NumberOfValues = 1 ;
EncParams->Parameter[0].Value = &ulCompression ;
EncParams->Parameter[1].Guid = Gdiplus::EncoderColorDepth ;
EncParams->Parameter[1].Type = Gdiplus::EncoderParameterValueTypeLong ;
EncParams->Parameter[1].NumberOfValues = 1 ;
EncParams->Parameter[1].Value = &ulColorDepth ;
LPWSTR pswFile = mir_t2u(szFilename);
stat = pBitmap->Save((const WCHAR*)pswFile, &EncCLSID, EncParams);
mir_free(pswFile);
free(EncParams);
}
delete pBitmap;
}
Gdiplus::GdiplusShutdown(gdiplusToken);
return 0;
}
//---------------------------------------------------------------------------
/* Old stuff from Borland C++ */
//---------------------------------------------------------------------------
/*/Popup
void ShowPopUp(char *title, char *text) {
POPUPDATAEX pude={0};
strcpy(pude.lpzText, text);
strcpy(pude.lpzContactName, title);
pude.lchIcon = LoadIcon(g_hAppInstance, MAKEINTRESOURCE(MAIN));
pude.colorBack = POPUP_USE_SKINNED_BG;
CallService(MS_POPUP_ADDPOPUP, (WPARAM)&pude, 0);
}*/
|