-
Notifications
You must be signed in to change notification settings - Fork 13
/
SCCommon.pas
651 lines (575 loc) · 21.5 KB
/
SCCommon.pas
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
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
{
This file is part of SuperCopier.
SuperCopier 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.
SuperCopier 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.
}
unit SCCommon;
interface
uses
Windows,SCWin32, dialogs, lclproc;
type
TConfigLocation=(clIniFile, clRegistry);
TBaselistAddMode=(amDefaultDir=0,amSpecifyDest=1,amPromptForDest=2,amPromptForDestAndSetDefault=3);
TCopyListHandlingMode=(chmNever,chmAlways,chmSameSource,chmSameDestination,chmSameSourceAndDestination,chmSameSourceorDestination);
TCopyAction=(cpaNextFile,cpaRetry,cpaCancel);
TCollisionAction=(claNone,claCancel,claSkip,claResume,claOverwrite,claOverwriteIfDifferent,claRenameNew,claRenameOld);
TCopyErrorAction=(ceaNone,ceaCancel,ceaSkip,ceaRetry,ceaEndOfList);
TDiskSpaceAction=(dsaNone,dsaCancel,dsaForce);
TCopyWindowState=(cwsWaiting,cwsRecursing,cwsCopying,cwsCopyEnd,cwsPaused,cwsWaitingActionResult,cwsCancelling);
TCopyWindowCopyEndAction=(cweClose,cweDontClose,cweDontCloseIfErrors);
TCopyWindowConfigData=record
CopyEndAction:TCopyWindowCopyEndAction;
ThrottleEnabled:Boolean;
ThrottleSpeedLimit:Integer;
CollisionAction:TCollisionAction;
CopyErrorAction:TCopyErrorAction;
end;
TErrorLogAutoSaveMode=(eamToDestDir,eamToSrcDir,eamCustomDir);
TDiskSpaceWarningVolume=record
Volume:WideString;
VolumeSize:Int64;
FreeSize:Int64;
LackSize:Int64;
end;
TDiskSpaceWarningVolumeArray=array of TDiskSpaceWarningVolume;
TSizeUnit=(suAuto,suBytes,suKB,suMB,suGB);
TMinimizedEventHandling=(mehDoNothing,mehShowBalloon,mehPopupWindow);
TFileListSortMode=(fsmNone,fsmBySrcName,fsmBySrcFullName,fsmByDestName,fsmByDestFullName,fsmBySrcSize,fsmBySrcExt);
TSpeedLimitZone=record
Step,Start,End_:Integer;
end;
const
DEFAULT_WAIT=20; //ms
SCL_SIGNATURE='SC2 CopyList ';
SCL_SIGNATURE_LENGTH=Length(SCL_SIGNATURE);
SPEED_LIMIT_ZONES:array[0..4] of TSpeedLimitZone=(
(Step:0; Start:0; End_:0),
(Step:64; Start:0; End_:16),
(Step:512; Start:14;End_:34),
(Step:5*1024; Start:32;End_:52),
(Step:50*1024;Start:50;End_:70)
);
function GetFileSizeByName(FileName:WideString):Int64;
function SetFileSize(TheFile:THandle;Size:Int64):Boolean;
function BrowseForFolder(Caption:WideString;var Folder:WideString;OwnerWindowHandle:THandle):boolean;
function GetLastErrorText:WideString;
function SizeToString(Size:int64;SizeUnit:TSizeUnit=suAuto):WideString;
function PaddedIntToStr(Int,Width:Integer):WideString;
function PatternRename(FileName,Path,Pattern:WideString):WideString;
function GetVolumeReadableName(Volume:WideString):WideString;
function GetStorageDeviceNumber(Path:WideString;var SDN:TStorageDeviceNumber):Boolean;
function GetVolumeNameString(Path:WideString):WideString;
function SameVolume(Path1,Path2:WideString):boolean;
function SamePhysicalDrive(Path1,Path2:WideString):boolean;
procedure SetProcessPriority(Priority:Cardinal);
function CopySecurity(const SourceFile:WideString;const DestFile:WideString):Boolean;
function GetOSLanguageName:String;
function IndexToSpeedLimit(AIndex:Integer):Integer;
function SpeedLimitToIndex(ASpeedLimit:Integer):Integer;
procedure FixParentBugs;
procedure dbg(msg:string);overload;
procedure dbg(val:cardinal);overload;
procedure dbgln(msg:string='');overload;
procedure dbgln(val:cardinal);overload;
procedure dbgmem(buf:pointer;size:integer);
implementation
uses
SysUtils,StrUtils,ShellApi,ShlObj,Classes,Forms,Math,SCLocStrings,Activex,SCMainForm;
{$ifdef DEBUG}
var
DbgLock:TRTLCriticalSection;
{$endif}
//******************************************************************************
// GetFileSizeByName: renvoie la taille d'un fichier а partir de son nom
//******************************************************************************
function GetFileSizeByName(FileName:WideString):Int64;
var FindData:TWin32FindDataW;
FindHandle:THandle;
begin
Result:=0;
FindHandle:=SCWin32.FindFirstFile(PWideChar(FileName),FindData);
if FindHandle = INVALID_HANDLE_VALUE then exit;
Result:=FindData.nFileSizeLow;
Result:=(Result and $FFFFFFFF) or (FindData.nFileSizeHigh * $100000000);
Windows.FindClose(FindHandle);
end;
//******************************************************************************
// SetFileSize: Fixe la taille d'un fichier ouvert
//******************************************************************************
function SetFileSize(TheFile:THandle;Size:Int64):Boolean;
var PrevPos:Int64;
begin
Result:=False;
SetLastError(ERROR_SUCCESS);
// on rйcup la position courrante dans le fichier
PrevPos:=SetFilePointer(TheFile,0,FILE_CURRENT);
if GetLastError<>ERROR_SUCCESS then Exit;
// on se positionne a l'endroit ou on veut marquer la fin du fichier
SetFilePointer(TheFile,Size,FILE_BEGIN);
if GetLastError<>ERROR_SUCCESS then Exit;
// on marque la fin du fichier
if not SetEndOfFile(TheFile) then Exit;
// on revient а la pos prйcйdente
SetFilePointer(TheFile,PrevPos,FILE_BEGIN);
if GetLastError<>ERROR_SUCCESS then Exit;
Result:=True;
end;
//******************************************************************************
// BrowseForFolder: afficher un dialogue permettant de sйlectionner un rйpertoire
//******************************************************************************
function SelectDirCB(Wnd: HWND; uMsg: UINT; lParam, lpData: LPARAM): Integer stdcall;
var Msg:Cardinal;
begin
if (uMsg = BFFM_INITIALIZED) and (lpData <> 0) then
begin
Msg:=IfThen(Win32Platform=VER_PLATFORM_WIN32_NT,BFFM_SETSELECTIONW,BFFM_SETSELECTIONA);
SendMessage(Wnd, Msg, Integer(True), lpdata);
end;
result := 0;
end;
function BrowseForFolder(Caption:WideString;var Folder:WideString;OwnerWindowHandle:THandle):boolean;
var BrowseInfo:_browseinfoW;
_BrowseInfo:PBROWSEINFOW;
Item:PItemIDList;
Buffer:array[0..MAX_PATH] of WideChar;
begin
Result:=False;
with BrowseInfo do
begin
hwndOwner:=OwnerWindowHandle;
pidlRoot:=nil;
pszDisplayName:=nil;
lpszTitle:=PWideChar(Caption);
ulFlags:=BIF_RETURNONLYFSDIRS or BIF_EDITBOX or BIF_NEWDIALOGSTYLE;
lpfn:=nil;
if Folder <> '' then
begin
lpfn := SelectDirCB;
lParam := Integer(PWideChar(Folder));
end;
end;
_BrowseInfo := @BrowseInfo;
Item:=SCWin32.SHBrowseForFolder(_BrowseInfo);
if (Item<>nil) and IsWindow(OwnerWindowHandle) then // s'assurer que la fenкtre parente existe toujours
begin
Result:=SCWin32.SHGetPathFromIDList(Item,Buffer);
if Result then Folder:=Buffer;
CoTaskMemFree(Item); // liberation du PIDL
end;
end;
//******************************************************************************
// GetLastErrorText: renvoie la derniиre erreur windows sous forme de texte
//******************************************************************************
function GetLastErrorText:WideString;
begin
Result:=SysErrorMessage(GetLastError); //TODO: gestion ansi/wide (FormatMessage)
end;
//*********************************************************************************
// SizeToString: renvoie en chaine une taille spйcifiйe en octets
//*********************************************************************************
function SizeToString(Size:int64;SizeUnit:TSizeUnit=suAuto):WideString;
const
SIZE_FORMAT=',0.00 ';
begin
if SizeUnit=suAuto then
begin
if Size>=1024*1024*1024 then // >= 1Go
begin
SizeUnit:=suGB;
end
else if Size>=1024*1024 then // >= 1Mo
begin
SizeUnit:=suMB;
end
else if Size>=1024 then // >= 1Ko
begin
SizeUnit:=suKB;
end
else
begin
SizeUnit:=suBytes;
end;
end;
case SizeUnit of
suGB:
Result:=FormatFloat(SIZE_FORMAT,Size/(1024*1024*1024))+lsGBytes;
suMB:
Result:=FormatFloat(SIZE_FORMAT,Size/(1024*1024))+lsMBytes;
suKB:
Result:=FormatFloat(SIZE_FORMAT,Size/1024)+lsKBytes;
suBytes:
Result:=FormatFloat(',0 ',Size)+lsBytes;
end;
end;
//*********************************************************************************
// PaddedIntToStr: renvoie en chaine de taille fixe complйtйe par des 0 un entier
//*********************************************************************************
function PaddedIntToStr(Int,Width:Integer):WideString;
var StrInt:WideString;
begin
StrInt:=IntToStr(Int);
Result:=StringOfChar('0',Width-Length(StrInt))+StrInt;
end;
//******************************************************************************
// PatternRename: trouve un nouveau nom au fichier en fonction du pattern
//******************************************************************************
function PatternRename(FileName,Path,Pattern:WideString):WideString;
var TmpStr,Tag:WideString;
i,SharpCount,NumberWidth:Integer;
Found,InTag:Boolean;
C:WideChar;
begin
// on remplace les tags qui ont une valeur 'fixe' et on marque la position du numйro incrйmentiel
i:=1;
InTag:=False;
TmpStr:='';
NumberWidth:=0;
SharpCount:=0;
while (i<=Length(Pattern))do
begin
C:=Pattern[i];
case C of
'<':
begin
InTag:=True;
Tag:='';
SharpCount:=0;
end;
'>':
begin
InTag:=False;
if SharpCount>0 then
begin
TmpStr:=TmpStr+'?';
NumberWidth:=SharpCount;
end
else if Tag='full' then
TmpStr:=TmpStr+FileName
else if Tag='name' then
begin
if Pos('.',FileName)>0 then // le fichier a une extension?
TmpStr:=TmpStr+LeftStr(FileName,Pos(ExtractFileExt(FileName),FileName)-1)
else
TmpStr:=FileName;
end
else if Tag='ext' then
TmpStr:=TmpStr+MidStr(ExtractFileExt(FileName),2,MaxInt); // enlever le '.' de l'extension
end;
'#':
begin
if InTag then Inc(SharpCount);
end;
else
begin
if not InTag then
TmpStr:=TmpStr+C
else
Tag:=Tag+WideLowerCase(C);
end;
end;
Inc(i);
end;
dbgln(TmpStr);
// on cherche maintenant un nom incrйmentiel libre si besoin
if NumberWidth>0 then
begin
i:=1;
Found:=True;
while Found do
begin
Result:=StringReplace(TmpStr,'?',PaddedIntToStr(i,NumberWidth),[rfReplaceAll]);
Found:=FileExists(Path+Result);
Inc(i);
end;
end
else
begin
Result:=TmpStr;
end;
// un nom de fichier ne dois pas pouvoir se terminer par un .
if (Length(Result)>0) and (Result[Length(Result)]='.') then
Result:=Copy(Result,1,Length(Result)-1);
dbgln(Result);
end;
//*********************************************************************************
// GetVolumeReadableName: renvoie une forme 'user friendly' du nom de volume
//*********************************************************************************
function GetVolumeReadableName(Volume:WideString):WideString;
var Buf:array[0..64] of WideChar;
Dummy:cardinal;
Ok:Boolean;
begin
Result:=Volume;
if Pos('\\',Volume)=0 then
begin
Ok:=SCWin32.GetVolumeInformation(PWideChar(IncludeTrailingBackslash(Volume)),@Buf,64,nil,Dummy,Dummy,nil,0);
if Ok then Result:=Buf+' ('+UpperCase(Volume)+')';
end;
end;
//******************************************************************************
// GetStorageDeviceNumber: rйcupиre le numйro du pйriphйrique sur lequel pointe Path
// renvoie false si йchoue
//******************************************************************************
function GetStorageDeviceNumber(Path:WideString;var SDN:TStorageDeviceNumber):Boolean;
var Handle:THandle;
Dummy:Cardinal;
TmpBuf:array[0..MAX_PATH] of WideChar;
begin
Result:=False;
if GetVolumePathName(PWideChar(Path),TmpBuf,MAX_PATH) and
GetVolumeNameForVolumeMountPoint(TmpBuf,TmpBuf,MAX_PATH) then // on rйcupиre d'abord le guid de volume
begin
Handle:=CreateFileW(PWideChar(ExcludeTrailingBackslash(TmpBuf)),0,FILE_SHARE_READ or FILE_SHARE_WRITE,nil,OPEN_EXISTING,0,0);
if Handle<>INVALID_HANDLE_VALUE then
begin
Result:=DeviceIoControl(Handle,IOCTL_STORAGE_GET_DEVICE_NUMBER,nil,0,@SDN,SizeOf(TStorageDeviceNumber),Dummy,nil);
CloseHandle(Handle);
end;
end;
end;
//******************************************************************************
// GetVolumeNameString: renvoie le nom de volume d'un chemin
//******************************************************************************
function GetVolumeNameString(Path:WideString):WideString;
var TmpBuf:array[0..MAX_PATH] of WideChar;
begin
if (Win32Platform=VER_PLATFORM_WIN32_NT) and (Win32MajorVersion>=5) and
GetVolumePathName(PWideChar(Path),TmpBuf,MAX_PATH) then
begin
// pour windows 2000 et supйrieurs
Result:=TmpBuf;
end
else
begin
// pour Win NT4/9x ou si problиme
Result:=ExtractFileDrive(Path);
end;
end;
//******************************************************************************
// SameVolume: renvoie true si les 2 chemins sont situйs sur le mкme volume
//******************************************************************************
function SameVolume(Path1,Path2:WideString):boolean;
var TmpBuf,TmpBuf2:array[0..MAX_PATH] of WideChar;
begin
if (Win32Platform=VER_PLATFORM_WIN32_NT) and (Win32MajorVersion>=5) and
GetVolumePathName(PWideChar(Path1),TmpBuf,MAX_PATH) and
GetVolumePathName(PWideChar(Path2),TmpBuf2,MAX_PATH) and
GetVolumeNameForVolumeMountPoint(TmpBuf,TmpBuf,MAX_PATH) and
GetVolumeNameForVolumeMountPoint(TmpBuf2,TmpBuf2,MAX_PATH) then
begin
// pour windows 2000 et supйrieurs, on compare le guid de volume
Result:=WideCompareStr(TmpBuf,TmpBuf2)=0;
end
else
begin
// pour Win NT4/9x ou si problиme, on fait une simple comparaison de texte
Result:=ExtractFileDrive(Path1)=ExtractFileDrive(Path2);
end;
end;
//******************************************************************************
// SamePhysicalDrive: renvoie true si les 2 chemins sont situйs sur le mкme emplacement physique
//******************************************************************************
function SamePhysicalDrive(Path1,Path2:WideString):boolean;
var SDN1,SDN2:TStorageDeviceNumber;
begin
if (Win32Platform=VER_PLATFORM_WIN32_NT) and (Win32MajorVersion>=5) and
GetStorageDeviceNumber(Path1,SDN1) and
GetStorageDeviceNumber(Path2,SDN2) then
begin
// pour windows 2000 et supйrieurs, on compare le numйro de pйriphйrique
Result:=(SDN1.DeviceType=SDN2.DeviceType) and (SDN1.DeviceNumber=SDN2.DeviceNumber);
end
else
begin
// pour Win NT4/9x ou si problиme, on fait une simple comparaison de texte
Result:=ExtractFileDrive(Path1)=ExtractFileDrive(Path2);
end;
end;
//******************************************************************************
// SetProcessPriority: change la prioritй du processus
//******************************************************************************
procedure SetProcessPriority(Priority:Cardinal);
var ph:THandle;
begin
ph:=OpenProcess(PROCESS_SET_INFORMATION,False,GetCurrentProcessId);
if ph=0 then exit;
SetPriorityClass(ph,Priority);
CloseHandle(ph);
end;
//******************************************************************************
// CopySecurity: copie les infos de sйcuritй d'un fichier ou dossier vers un autre
//******************************************************************************
function CopySecurity(const SourceFile:WideString;const DestFile:WideString):Boolean;
var SD:array of byte;
SDR:TSecurityDescriptor;
LengthNeeded:LPDWORD;
LastError:Cardinal;
begin
// on tente de lire le SecutityDescriptor avec un buffer de 256 octets
SetLength(SD,256);
Result:=GetFileSecurityW(PWideChar(SourceFile),
DACL_SECURITY_INFORMATION or GROUP_SECURITY_INFORMATION or
OWNER_SECURITY_INFORMATION or SACL_SECURITY_INFORMATION,
@SD[0],
Length(SD),
LengthNeeded);
// si le buffer йtait trop petit, on donne au buffer la taille nйcessaire
if (not Result) and (GetLastError=ERROR_INSUFFICIENT_BUFFER) then
begin
SetLength(SD,cardinal(LengthNeeded));
Result:=GetFileSecurityW(PWideChar(SourceFile),
DACL_SECURITY_INFORMATION or GROUP_SECURITY_INFORMATION or
OWNER_SECURITY_INFORMATION or SACL_SECURITY_INFORMATION,
@SD[0],
Length(SD),
LengthNeeded);
end;
// on peut maintenant copier le SD vers le fichier destination
if Result then
begin
SDR:=PSecurityDescriptor(@SD[0])^;
if (SDR.Sacl<>nil) or (SDR.Dacl<>nil) then
begin
Result:=SetFileSecurityW(PWideChar(DestFile),
DACL_SECURITY_INFORMATION or GROUP_SECURITY_INFORMATION or
OWNER_SECURITY_INFORMATION or SACL_SECURITY_INFORMATION,
@SD[0]);
end;
end;
// йchouer silencieusement si l'on a pas le droit de lire ou йcrire la sйcuritй
LastError:=GetLastError;
if not Result and
(LastError=ERROR_ACCESS_DENIED) or
(LastError=ERROR_PRIVILEGE_NOT_HELD) or
(LastError=ERROR_INVALID_OWNER) or
(LastError=ERROR_INVALID_PRIMARY_GROUP) then Result:=True;
SetLength(SD,0);
end;
//******************************************************************************
// GetOSLanguageName: renvoie le nom de la langue de l'OS dans la langue de l'OS
//******************************************************************************
function GetOSLanguageName:String;
var LID:LANGID;
TmpBuf:array[0..254] of char;
begin
if (Win32Platform=VER_PLATFORM_WIN32_NT) and (Win32MajorVersion>=5) then
LID:=GetSystemDefaultUILanguage
else
LID:=GetSystemDefaultLangID;
VerLanguageName(LID,TmpBuf,Length(TmpBuf));
Result:=TmpBuf;
Result:=LeftStr(Result,Pos(' (',Result)-1);
end;
//******************************************************************************
// IndexToSpeedLimit: renvoie une limite de vitesse calculйe a partir des infos de zone
//******************************************************************************
function IndexToSpeedLimit(AIndex:Integer):Integer;
var Zone:Integer;
begin
Zone:=0;
while AIndex>=SPEED_LIMIT_ZONES[Zone].End_ do Inc(Zone);
Result:=SPEED_LIMIT_ZONES[Zone].Step*(AIndex-SPEED_LIMIT_ZONES[Zone].Start);
end;
//******************************************************************************
// SpeedLimitToIndex: renvoie un index calculй a partir des infos de zone
//******************************************************************************
function SpeedLimitToIndex(ASpeedLimit:Integer):Integer;
var i:Integer;
begin
Result:=0;
for i:=SPEED_LIMIT_ZONES[High(SPEED_LIMIT_ZONES)].End_ downto SPEED_LIMIT_ZONES[Low(SPEED_LIMIT_ZONES)].Start do
if IndexToSpeedLimit(i)=ASpeedLimit then
begin
Result:=i;
Break;
end;
end;
//******************************************************************************
// FixParentBugs: restore les parents de la mainform et de la appform, qui sont altйrйs par les Common dialogs
//******************************************************************************
procedure FixParentBugs;
begin
SetParent(Application.Mainform.Handle,THandle(-3{HWND_MESSAGE}));
SetParent(MainForm.Handle,THandle(-3{HWND_MESSAGE}));
end;
//******************************************************************************
//******************************************************************************
// Procйdures de debug
//******************************************************************************
//******************************************************************************
procedure dbg(msg:string);overload;
begin
{$ifdef DEBUG}
EnterCriticalSection(DbgLock);
try
Write(msg);
finally
LeaveCriticalSection(DbgLock);
end;
{$endif}
end;
procedure dbg(val:cardinal);overload;
begin
{$ifdef DEBUG}
dbg(inttostr(val));
{$endif}
end;
procedure dbgln(msg:string='');overload;
begin
{$ifdef DEBUG}
dbg(msg+#13#10);
{$endif}
end;
procedure dbgln(val:cardinal);overload;
begin
{$ifdef DEBUG}
dbg(inttostr(val)+#13#10);
{$endif}
end;
procedure dbgmem(buf:pointer;size:integer);
{$ifdef DEBUG}
var
i,j:integer;
ptr:pbyte;
outstr:string;
{$endif}
begin
{$ifdef DEBUG}
outstr:='';
i:=0;
ptr:=PByte(buf);
while i<size do
begin
for j:=0 to 15 do
begin
outstr:=outstr+inttohex(ptr^,2)+' ';
ptr:=pointer(cardinal(ptr)+1);
end;
ptr:=pointer(cardinal(ptr)-16);
for j:=0 to 15 do
begin
if ptr^>=32 then outstr:=outstr+char(ptr^) else outstr:=outstr+'.';
ptr:=pointer(cardinal(ptr)+1);
end;
outstr:=outstr+#13#10;
Inc(i,16);
end;
dbg(outstr);
{$endif}
end;
initialization
{$ifdef DEBUG}
AllocConsole;
InitializeCriticalSection(DbgLock);
{$endif}
finalization
{$ifdef DEBUG}
DeleteCriticalSection(DbgLock);
{$endif}
end.