Issues (207)

dev/php-mapi-stub.php (1 issue)

1
<?php
2
/*
3
 * SPDX-License-Identifier: AGPL-3.0-only
4
 * SPDX-FileCopyrightText: Copyright 2024 grommunio GmbH
5
 */
6
7
class resource {}
8
9
/**
10
 * @param ?int $level
11
 * @return void
12
 */
13
function mapi_load_mapidefs(?int $level): void {
14
	return ;
15
}
16
17
/**
18
 * @return int
19
 */
20
function mapi_last_hresult(): int {
21
	return 0;
22
}
23
24
/**
25
 * @param int $proptag
26
 * @return int|bool
27
 */
28
function mapi_prop_type(int $proptag): int|bool {
29
	return 0;
30
}
31
32
/**
33
 * @param int $proptag
34
 * @return int|bool
35
 */
36
function mapi_prop_id(int $proptag): int|bool {
37
	return 0;
38
}
39
40
/**
41
 * @param int $errcode
42
 * @return bool
43
 */
44
function mapi_is_error(int $errcode): bool {
45
	return false;
46
}
47
48
/**
49
 * @param int $sev
50
 * @param int $code
51
 * @return int|bool
52
 */
53
function mapi_make_scode(int $sev, int $code): int|bool {
54
	return 0;
55
}
56
57
/**
58
 * @param int $proptype
59
 * @param int $propid
60
 * @return int|bool
61
 */
62
function mapi_prop_tag(int $proptype, int $propid): int|bool {
63
	return 0;
64
}
65
66
/**
67
 * @param ?string $displayname
68
 * @param string $type
69
 * @param string $address
70
 * @param ?int $flags
71
 * @return string|bool
72
 */
73
function mapi_createoneoff(?string $displayname, string $type, string $address, ?int $flags = 0): string|bool {
74
	return '';
75
}
76
77
/**
78
 * @param string $entryid
79
 * @return array|bool
80
 */
81
function mapi_parseoneoff(string $entryid): array|bool {
82
	return [];
83
}
84
85
/**
86
 * @param string $username
87
 * @param string $password
88
 * @param ?string $server
89
 * @param ?string $sslcert
90
 * @param ?string $sslpass
91
 * @param ?int $flags
92
 * @param ?string $wa_version
93
 * @param ?string $misc_version
94
 * @return resource|bool
95
 */
96
function mapi_logon_zarafa(string $username, string $password, ?string $server = null, ?string $sslcert = null, ?string $sslpass = null, ?int $flags = 0, ?string $wa_version = null, ?string $misc_version = null): resource|bool {
97
	return new resource();
98
}
99
100
/**
101
 * @param string $username
102
 * @param string $password
103
 * @param int $flags
104
 * @return resource|bool
105
 */
106
function mapi_logon_ex(string $username, string $password, int $flags): resource|bool {
107
	return new resource();
108
}
109
110
/**
111
 * @param string $token
112
 * @return resource|bool
113
 */
114
function mapi_logon_token(string $token): resource|bool {
115
	return new resource();
116
}
117
118
/**
119
 * @param resource $session
120
 * @return resource|bool
121
 */
122
function mapi_getmsgstorestable(resource $session): resource|bool {
123
	return new resource();
124
}
125
126
/**
127
 * @param resource $ses
128
 * @param string $entryid
129
 * @return resource|bool
130
 */
131
function mapi_openmsgstore(resource $ses, string $entryid): resource|bool {
132
	return new resource();
133
}
134
135
/**
136
 * @param resource $ses
137
 * @param string $uid
138
 * @return resource|bool
139
 */
140
function mapi_openprofilesection(resource $ses, string $uid): resource|bool {
141
	return new resource();
142
}
143
144
/**
145
 * @param resource $session
146
 * @return resource|bool
147
 */
148
function mapi_openaddressbook(resource $session): resource|bool {
149
	return new resource();
150
}
151
152
/**
153
 * @param resource $ses
154
 * @param ?string $entryid
155
 * @param ?int $flags
156
 * @return resource|bool
157
 */
158
function mapi_openentry(resource $ses, ?string $entryid = null, ?int $flags = 0): resource|bool {
159
	return new resource();
160
}
161
162
/**
163
 * @param resource $abk
164
 * @param ?string $entryid
165
 * @param ?int $flags
166
 * @return resource|bool
167
 */
168
function mapi_ab_openentry(resource $abk, ?string $entryid = null, ?int $flags = 0): resource|bool {
169
	return new resource();
170
}
171
172
/**
173
 * @param resource $abk
174
 * @param array $names
175
 * @param ?int $flags
176
 * @return mixed
177
 */
178
function mapi_ab_resolvename(resource $abk, array $names, ?int $flags = 0): mixed {
179
	return null;
180
}
181
182
/**
183
 * @param resource $abk
184
 * @return string|bool
185
 */
186
function mapi_ab_getdefaultdir(resource $abk): string|bool {
187
	return '';
188
}
189
190
/**
191
 * @param resource $store
192
 * @param string $mailbox_dn
193
 * @return string|bool
194
 */
195
function mapi_msgstore_createentryid(resource $store, string $mailbox_dn): string|bool {
196
	return '';
197
}
198
199
/**
200
 * @param resource $store
201
 * @param string $user
202
 * @param string $server
203
 * @return bool
204
 */
205
function mapi_msgstore_getarchiveentryid(resource $store, string $user, string $server): bool {
206
	return false;
207
}
208
209
/**
210
 * @param resource $store
211
 * @param ?string $entryid
212
 * @param ?int $flags
213
 * @return resource|bool
214
 */
215
function mapi_msgstore_openentry(resource $store, ?string $entryid = null, ?int $flags = 0): resource|bool {
216
	return new resource();
217
}
218
219
/**
220
 * @param resource $store
221
 * @return resource|bool
222
 */
223
function mapi_msgstore_getreceivefolder(resource $store): resource|bool {
224
	return new resource();
225
}
226
227
/**
228
 * @param resource $store
229
 * @param string $sk_fld
230
 * @param ?string $sk_msg
231
 * @return string|bool
232
 */
233
function mapi_msgstore_entryidfromsourcekey(resource $store, string $sk_fld, ?string $sk_msg = null): string|bool {
234
	return '';
235
}
236
237
/**
238
 * @param resource $store
239
 * @param string $entryid
240
 * @param int $event_mask
241
 * @param resource $sink
242
 * @return int|bool
243
 */
244
function mapi_msgstore_advise(resource $store, string $entryid, int $event_mask, resource $sink): int|bool {
245
	return 0;
246
}
247
248
/**
249
 * @param resource $store
250
 * @param int $sub_id
251
 * @return bool
252
 */
253
function mapi_msgstore_unadvise(resource $store, int $sub_id): bool {
254
	return false;
255
}
256
257
/**
258
 * @param ?resource $store
259
 * @param ?string $entryid
260
 * @return bool
261
 */
262
function mapi_msgstore_abortsubmit(?resource $store, ?string $entryid = null): bool {
263
	return false;
264
}
265
266
/**
267
 * @return resource|bool
268
 */
269
function mapi_sink_create(): resource|bool {
270
	return new resource();
271
}
272
273
/**
274
 * @param resource $sink
275
 * @param int $time
276
 * @return mixed
277
 */
278
function mapi_sink_timedwait(resource $sink, int $time): mixed {
279
	return null;
280
}
281
282
/**
283
 * @param resource $table
284
 * @param ?array $proptags
285
 * @param ?array $restrict
286
 * @return mixed
287
 */
288
function mapi_table_queryallrows(resource $table, ?array $proptags = null, ?array $restrict = null): mixed {
289
	return null;
290
}
291
292
/**
293
 * @param resource $table
294
 * @param ?array $proptags
295
 * @param ?int $start
296
 * @param ?int $limit
297
 * @return mixed
298
 */
299
function mapi_table_queryrows(resource $table, ?array $proptags = null, ?int $start = 0, ?int $limit = 0): mixed {
300
	return null;
301
}
302
303
/**
304
 * @param resource $table
305
 * @return int|bool
306
 */
307
function mapi_table_getrowcount(resource $table): int|bool {
308
	return 0;
309
}
310
311
/**
312
 * @param resource $table
313
 * @param array $columns
314
 * @param ?int $flags
315
 * @return bool
316
 */
317
function mapi_table_setcolumns(resource $table, array $columns, ?int $flags = 0): bool {
318
	return false;
319
}
320
321
/**
322
 * @param resource $table
323
 * @param int $bookmark
324
 * @param int $rowcount
325
 * @return int|bool
326
 */
327
function mapi_table_seekrow(resource $table, int $bookmark, int $rowcount): int|bool {
328
	return 0;
329
}
330
331
/**
332
 * @param resource $table
333
 * @param array $sortcrit
334
 * @param ?int $flags
335
 * @return bool
336
 */
337
function mapi_table_sort(resource $table, array $sortcrit, ?int $flags = 0): bool {
338
	return false;
339
}
340
341
/**
342
 * @param resource $table
343
 * @param array $restrict
344
 * @param ?int $flags
345
 * @return bool
346
 */
347
function mapi_table_restrict(resource $table, array $restrict, ?int $flags = 0): bool {
348
	return false;
349
}
350
351
/**
352
 * @param resource $table
353
 * @param array $restrict
354
 * @param ?int $bookmark
355
 * @param ?int $flags
356
 * @return int|bool
357
 */
358
function mapi_table_findrow(resource $table, array $restrict, ?int $bookmark = 0, ?int $flags = 0): int|bool {
359
	return 0;
360
}
361
362
/**
363
 * @param resource $table
364
 * @return int|bool
365
 */
366
function mapi_table_createbookmark(resource $table): int|bool {
367
	return 0;
368
}
369
370
/**
371
 * @param resource $table
372
 * @param int $bookmark
373
 * @return bool
374
 */
375
function mapi_table_freebookmark(resource $table, int $bookmark): bool {
376
	return false;
377
}
378
379
/**
380
 * @param resource $fld
381
 * @param ?int $flags
382
 * @return resource|bool
383
 */
384
function mapi_folder_gethierarchytable(resource $fld, ?int $flags = 0): resource|bool {
385
	return new resource();
386
}
387
388
/**
389
 * @param resource $fld
390
 * @param ?int $flags
391
 * @return resource|bool
392
 */
393
function mapi_folder_getcontentstable(resource $fld, ?int $flags = 0): resource|bool {
394
	return new resource();
395
}
396
397
/**
398
 * @param resource $fld
399
 * @return resource|bool
400
 */
401
function mapi_folder_getrulestable(resource $fld): resource|bool {
402
	return new resource();
403
}
404
405
/**
406
 * @param resource $fld
407
 * @param ?int $flags
408
 * @return resource|bool
409
 */
410
function mapi_folder_createmessage(resource $fld, ?int $flags = 0): resource|bool {
411
	return new resource();
412
}
413
414
/**
415
 * @param resource $fld
416
 * @param string $fname
417
 * @param ?string $comment
418
 * @param ?int $flags
419
 * @param ?int $folder_type
420
 * @return resource|bool
421
 */
422
function mapi_folder_createfolder(resource $fld, string $fname, ?string $comment = null, ?int $flags = 0, ?int $folder_type = 0): resource|bool {
423
	return new resource();
424
}
425
426
/**
427
 * @param resource $fld
428
 * @param array $entryids
429
 * @param ?int $flags
430
 * @return bool
431
 */
432
function mapi_folder_deletemessages(resource $fld, array $entryids, ?int $flags = 0): bool {
433
	return false;
434
}
435
436
/**
437
 * @param resource $srcfld
438
 * @param array $entryids
439
 * @param resource $dstfld
440
 * @param ?int $flags
441
 * @return bool
442
 */
443
function mapi_folder_copymessages(resource $srcfld, array $entryids, resource $dstfld, ?int $flags = 0): bool {
444
	return false;
445
}
446
447
/**
448
 * @param resource $fld
449
 * @param ?int $flags
450
 * @return bool
451
 */
452
function mapi_folder_emptyfolder(resource $fld, ?int $flags = 0): bool {
453
	return false;
454
}
455
456
/**
457
 * @param resource $srcfld
458
 * @param string $entryid
459
 * @param resource $dstfld
460
 * @param ?string $name
461
 * @param ?int $flags
462
 * @return bool
463
 */
464
function mapi_folder_copyfolder(resource $srcfld, string $entryid, resource $dstfld, ?string $name, ?int $flags = 0): bool {
465
	return false;
466
}
467
468
/**
469
 * @param resource $fld
470
 * @param string $entryid
471
 * @param ?int $flags
472
 * @return bool
473
 */
474
function mapi_folder_deletefolder(resource $fld, string $entryid, ?int $flags = 0): bool {
475
	return false;
476
}
477
478
/**
479
 * @param resource $fld
480
 * @param array $entryids
481
 * @param ?int $flags
482
 * @return bool
483
 */
484
function mapi_folder_setreadflags(resource $fld, array $entryids, ?int $flags = 0): bool {
485
	return false;
486
}
487
488
/**
489
 * @param resource $fld
490
 * @param array $restriction
491
 * @param array $folderlist
492
 * @param int $flags
493
 * @return bool
494
 */
495
function mapi_folder_setsearchcriteria(resource $fld, array $restriction, array $folderlist, int $flags): bool {
496
	return false;
497
}
498
499
/**
500
 * @param resource $fld
501
 * @param ?int $flags
502
 * @return mixed
503
 */
504
function mapi_folder_getsearchcriteria(resource $fld, ?int $flags = 0): mixed {
505
	return null;
506
}
507
508
/**
509
 * @param resource $fld
510
 * @param array $rows
511
 * @param ?int $flags
512
 * @return bool
513
 */
514
function mapi_folder_modifyrules(resource $fld, array $rows, ?int $flags = 0): bool {
515
	return false;
516
}
517
518
/**
519
 * @param resource $msg
520
 * @return resource|bool
521
 */
522
function mapi_message_getattachmenttable(resource $msg): resource|bool {
523
	return new resource();
524
}
525
526
/**
527
 * @param resource $msg
528
 * @return resource|bool
529
 */
530
function mapi_message_getrecipienttable(resource $msg): resource|bool {
531
	return new resource();
532
}
533
534
/**
535
 * @param resource $msg
536
 * @param int $id
537
 * @return resource|bool
538
 */
539
function mapi_message_openattach(resource $msg, int $id): resource|bool {
540
	return new resource();
541
}
542
543
/**
544
 * @param resource $msg
545
 * @param ?int $flags
546
 * @return resource|bool
547
 */
548
function mapi_message_createattach(resource $msg, ?int $flags = 0): resource|bool {
549
	return new resource();
550
}
551
552
/**
553
 * @param resource $msg
554
 * @param int $id
555
 * @param ?int $flags
556
 * @return bool
557
 */
558
function mapi_message_deleteattach(resource $msg, int $id = 0, ?int $flags = 0): bool {
559
	return false;
560
}
561
562
/**
563
 * @param resource $msg
564
 * @param int $flags
565
 * @param array $adrlist
566
 * @return bool
567
 */
568
function mapi_message_modifyrecipients(resource $msg, int $flags, array $adrlist): bool {
569
	return false;
570
}
571
572
/**
573
 * @param resource $msg
574
 * @return bool
575
 */
576
function mapi_message_submitmessage(resource $msg): bool {
577
	return false;
578
}
579
580
/**
581
 * @param resource $msg
582
 * @param int $flags
583
 * @return bool
584
 */
585
function mapi_message_setreadflag(resource $msg, int $flags): bool {
586
	return false;
587
}
588
589
/**
590
 * @param resource $any
591
 * @param int $proptag
592
 * @param ?int $flags
593
 * @param ?string $guid
594
 * @return resource|bool
595
 */
596
function mapi_openpropertytostream(resource $any, int $proptag, ?int $flags = 0, ?string $guid = null): resource|bool {
597
	return new resource();
598
}
599
600
/**
601
 * @param resource $stream
602
 * @param string $data
603
 * @return int|bool
604
 */
605
function mapi_stream_write(resource $stream, string $data): int|bool {
606
	return 0;
607
}
608
609
/**
610
 * @param resource $stream
611
 * @param int $size
612
 * @return string|bool
613
 */
614
function mapi_stream_read(resource $stream, int $size): string|bool {
615
	return '';
616
}
617
618
/**
619
 * @param resource $stream
620
 * @return array|bool
621
 */
622
function mapi_stream_stat(resource $stream): array|bool {
623
	return [];
624
}
625
626
/**
627
 * @param resource $stream
628
 * @param int $offset
629
 * @param ?int $flags
630
 * @return bool
631
 */
632
function mapi_stream_seek(resource $stream, int $offset, ?int $flags = 0): bool {
633
	return false;
634
}
635
636
/**
637
 * @param resource $stream
638
 * @return bool
639
 */
640
function mapi_stream_commit(resource $stream): bool {
641
	return false;
642
}
643
644
/**
645
 * @param resource $stream
646
 * @param int $size
647
 * @return bool
648
 */
649
function mapi_stream_setsize(resource $stream, int $size): bool {
650
	return false;
651
}
652
653
/**
654
 * @return resource|bool
655
 */
656
function mapi_stream_create(): resource|bool {
657
	return new resource();
658
}
659
660
/**
661
 * @param resource $attach
662
 * @param ?int $flags
663
 * @return resource|bool
664
 */
665
function mapi_attach_openobj(resource $attach, ?int $flags = 0): resource|bool {
666
	return new resource();
667
}
668
669
/**
670
 * @param resource $any
671
 * @param ?int $flags
672
 * @return bool
673
 */
674
function mapi_savechanges(resource $any, ?int $flags = 0): bool {
675
	return false;
676
}
677
678
/**
679
 * @param resource $any
680
 * @param ?array $proptags
681
 * @return mixed
682
 */
683
function mapi_getprops(resource $any, ?array $proptags = null): mixed {
684
	return null;
685
}
686
687
/**
688
 * @param resource $any
689
 * @param array $propvals
690
 * @return bool
691
 */
692
function mapi_setprops(resource $any, array $propvals): bool {
693
	return false;
694
}
695
696
/**
697
 * @param resource $src
698
 * @param array $excliid
699
 * @param array $exclprop
700
 * @param resource $dst
701
 * @param ?int $flags
702
 * @return bool
703
 */
704
function mapi_copyto(resource $src, array $excliid, array $exclprop, resource $dst, ?int $flags = 0): bool {
705
	return false;
706
}
707
708
/**
709
 * @param resource $any
710
 * @param int $proptag
711
 * @param ?string $iid
712
 * @param ?int $interfaceflags
713
 * @param ?int $flags
714
 * @return resource|bool
715
 */
716
function mapi_openproperty(resource $any, int $proptag, ?string $iid = null, ?int $interfaceflags = 0, ?int $flags = 0): resource|bool {
717
	return new resource();
718
}
719
720
/**
721
 * @param resource $any
722
 * @param array $proptags
723
 * @return bool
724
 */
725
function mapi_deleteprops(resource $any, array $proptags): bool {
726
	return false;
727
}
728
729
/**
730
 * @param resource $any
731
 * @param ?array $names
732
 * @return array|bool
733
 */
734
function mapi_getnamesfromids(resource $any, ?array $names = null): array|bool {
735
	return [];
736
}
737
738
/**
739
 * @param resource $store
740
 * @param array $names
741
 * @param ?array $guids
742
 * @return array|bool
743
 */
744
function mapi_getidsfromnames(resource $store, array $names, ?array $guids = null): array|bool {
745
	return [];
746
}
747
748
/**
749
 * @param string $data
750
 * @return string|bool
751
 */
752
function mapi_decompressrtf(string $data): string|bool {
753
	return '';
754
}
755
756
/**
757
 * @param resource $any
758
 * @param int $type
759
 * @return array|bool
760
 */
761
function mapi_zarafa_getpermissionrules(resource $any, int $type): array|bool {
762
	return [];
763
}
764
765
/**
766
 * @param resource $any
767
 * @param array $perms
768
 * @return bool
769
 */
770
function mapi_zarafa_setpermissionrules(resource $any, array $perms): bool {
771
	return false;
772
}
773
774
/**
775
 * @param resource $ses
776
 * @param string $entryid
777
 * @param int $start
778
 * @param int $end
779
 * @return array|bool
780
 */
781
function mapi_getuserfreebusy(resource $ses, string $entryid, int $start, int $end): array|bool {
782
	return [];
783
}
784
785
/**
786
 * @param resource $ses
787
 * @param string $entryid
788
 * @param int $start
789
 * @param int $end
790
 * @return string|bool
791
 */
792
function mapi_getuserfreebusyical(resource $ses, string $entryid, int $start, int $end): string|bool {
793
	return '';
794
}
795
796
/**
797
 * @param resource $e
798
 * @param resource $stream
799
 * @param int $flags
800
 * @param mixed $i
801
 * @param mixed $restrict
802
 * @param mixed $inclprop
803
 * @param mixed $exclprop
804
 * @param int $bufsize
805
 * @return bool
806
 */
807
function mapi_exportchanges_config(resource $e, resource $stream, int $flags, mixed $i, mixed $restrict, mixed $inclprop, mixed $exclprop, int $bufsize): bool {
808
	return false;
809
}
810
811
/**
812
 * @param resource $x
813
 * @return mixed
814
 */
815
function mapi_exportchanges_synchronize(resource $x): mixed {
816
	return null;
817
}
818
819
/**
820
 * @param resource $e
821
 * @param resource $stream
822
 * @return bool
823
 */
824
function mapi_exportchanges_updatestate(resource $e, resource $stream): bool {
825
	return false;
826
}
827
828
/**
829
 * @param resource $r
830
 * @return int|bool
831
 */
832
function mapi_exportchanges_getchangecount(resource $r): int|bool {
833
	return 0;
834
}
835
836
/**
837
 * @param resource $i
838
 * @param resource $stream
839
 * @param int $flags
840
 * @return bool
841
 */
842
function mapi_importcontentschanges_config(resource $i, resource $stream, int $flags): bool {
843
	return false;
844
}
845
846
/**
847
 * @param resource $i
848
 * @param ?resource $stream
849
 * @return bool
850
 */
851
function mapi_importcontentschanges_updatestate(resource $i, ?resource $stream = null): bool {
852
	return false;
853
}
854
855
/**
856
 * @param resource $i
857
 * @param array $props
858
 * @param int $flags
859
 * @param mixed &$msg
860
 * @return bool
861
 */
862
function mapi_importcontentschanges_importmessagechange(resource $i, array $props, int $flags, mixed &$msg): bool {
863
	return false;
864
}
865
866
/**
867
 * @param resource $i
868
 * @param int $flags
869
 * @param array $msgs
870
 * @return bool
871
 */
872
function mapi_importcontentschanges_importmessagedeletion(resource $i, int $flags, array $msgs): bool {
873
	return false;
874
}
875
876
/**
877
 * @param resource $i
878
 * @param array $readst
879
 * @return bool
880
 */
881
function mapi_importcontentschanges_importperuserreadstatechange(resource $i, array $readst): bool {
882
	return false;
883
}
884
885
/**
886
 * @param resource $r
887
 * @param string $a
888
 * @param string $b
889
 * @param string $c
890
 * @param string $d
891
 * @param string $e
892
 * @return bool
893
 */
894
function mapi_importcontentschanges_importmessagemove(resource $r, string $a, string $b, string $c, string $d, string $e): bool {
895
	return false;
896
}
897
898
/**
899
 * @param resource $i
900
 * @param resource $stream
901
 * @param int $flags
902
 * @return bool
903
 */
904
function mapi_importhierarchychanges_config(resource $i, resource $stream, int $flags): bool {
905
	return false;
906
}
907
908
/**
909
 * @param resource $i
910
 * @param ?resource $stream
911
 * @return bool
912
 */
913
function mapi_importhierarchychanges_updatestate(resource $i, ?resource $stream): bool {
914
	return false;
915
}
916
917
/**
918
 * @param resource $i
919
 * @param array $props
920
 * @return bool
921
 */
922
function mapi_importhierarchychanges_importfolderchange(resource $i, array $props): bool {
923
	return false;
924
}
925
926
/**
927
 * @param resource $i
928
 * @param int $flags
929
 * @param array $folders
930
 * @return bool
931
 */
932
function mapi_importhierarchychanges_importfolderdeletion(resource $i, int $flags, array $folders): bool {
933
	return false;
934
}
935
936
/**
937
 * @param object &$object
938
 * @return resource|bool
939
 */
940
function mapi_wrap_importcontentschanges(object &$object): resource|bool {
941
	return new resource();
942
}
943
944
/**
945
 * @param object &$object
946
 * @return resource|bool
947
 */
948
function mapi_wrap_importhierarchychanges(object &$object): resource|bool {
949
	return new resource();
950
}
951
952
/**
953
 * @param resource $ses
954
 * @param resource $abk
955
 * @param resource $msg
956
 * @param array $opts
957
 * @return resource|bool
958
 */
959
function mapi_inetmapi_imtoinet(resource $ses, resource $abk, resource $msg, array $opts): resource|bool {
960
	return new resource();
961
}
962
963
/**
964
 * @param resource $ses
965
 * @param resource $store
966
 * @param resource $abk
967
 * @param resource $msg
968
 * @param string $str
969
 * @param array $opts
970
 * @return bool
971
 */
972
function mapi_inetmapi_imtomapi(resource $ses, resource $store, resource $abk, resource $msg, string $str, array $opts): bool {
973
	return false;
974
}
975
976
/**
977
 * @param resource $ses
978
 * @param resource $store
979
 * @param resource $abk
980
 * @param resource $msg
981
 * @param string $str
982
 * @param bool $norecip
983
 * @return bool
984
 */
985
function mapi_icaltomapi(resource $ses, resource $store, resource $abk, resource $msg, string $str, bool $norecip): bool {
986
	return false;
987
}
988
989
/**
990
 * @param resource $abk
991
 * @param resource $fld
992
 * @param string $ics
993
 * @return array|bool
994
 */
995
function mapi_icaltomapi2(resource $abk, resource $fld, string $ics): array|bool {
996
	return [];
997
}
998
999
/**
1000
 * @param resource $ses
1001
 * @param resource $abk
1002
 * @param resource $msg
1003
 * @param array $opts
1004
 * @return string|bool
1005
 */
1006
function mapi_mapitoical(resource $ses, resource $abk, resource $msg, array $opts): string|bool {
1007
	return '';
1008
}
1009
1010
/**
1011
 * @param resource $ses
1012
 * @param resource $store
1013
 * @param resource $msg
1014
 * @param string $str
1015
 * @return bool
1016
 */
1017
function mapi_vcftomapi(resource $ses, resource $store, resource $msg, string $str): bool {
1018
	return false;
1019
}
1020
1021
/**
1022
 * @param resource $fld
1023
 * @param string $vcard
1024
 * @return array|bool
1025
 */
1026
function mapi_vcftomapi2(resource $fld, string $vcard): array|bool {
1027
	return [];
1028
}
1029
1030
/**
1031
 * @param resource $ses
1032
 * @param resource $abk
1033
 * @param resource $msg
1034
 * @param array $opts
1035
 * @return string|bool
1036
 */
1037
function mapi_mapitovcf(resource $ses, resource $abk, resource $msg, array $opts): string|bool {
1038
	return '';
1039
}
1040
1041
/**
1042
 * @param string $cls
1043
 * @return bool
1044
 */
1045
function mapi_enable_exceptions(string $cls): bool {
1046
	return false;
1047
}
1048
1049
/**
1050
 * @param string $ft
1051
 * @return bool
1052
 */
1053
function mapi_feature(string $ft): bool {
1054
	return false;
1055
}
1056
1057
/**
1058
 * @param resource $ses
1059
 * @param string &$data
1060
 * @return int
1061
 */
1062
function kc_session_save(resource $ses, string &$data): int {
1063
	return 0;
1064
}
1065
1066
/**
1067
 * @param mixed $data
1068
 * @param mixed &$res
1069
 * @return int
1070
 */
1071
function kc_session_restore(mixed $data, mixed &$res): int {
1072
	return 0;
1073
}
1074
1075
/**
1076
 * @param string $username
1077
 * @return array|bool
1078
 */
1079
function nsp_getuserinfo(string $username): array|bool {
1080
	return [];
1081
}
1082
1083
/**
1084
 * @param string $username
1085
 * @param string $oldpass
1086
 * @param string $newpass
1087
 * @return bool
1088
 */
1089
function nsp_setuserpasswd(string $username, string $oldpass, string $newpass): bool {
1090
	return false;
1091
}
1092
1093
/**
1094
 * @param string $essdn
1095
 * @return string|bool
1096
 */
1097
function nsp_essdn_to_username(string $essdn): string|bool {
1098
	return '';
1099
}
1100
1101
/**
1102
 * @param resource $ses
1103
 * @param ?string $srcheid
1104
 * @param ?string $msgeid
1105
 * @return mixed
1106
 */
1107
function mapi_linkmessage(resource $ses, ?string $srcheid = null, ?string $msgeid = null): mixed {
1108
	return null;
1109
}
1110
1111
/**
1112
 * @param string $tz
1113
 * @return string|bool
1114
 */
1115
function mapi_ianatz_to_tzdef(string $tz): string|bool {
1116
	return '';
1117
}
1118
1119
/**
1120
 * @param int $code
1121
 * @return string
1122
 */
1123
function mapi_strerror(int $code): string {
1124
	return '';
1125
}
1126
1127
if (!defined('MAPIDEFS_LOADED')) {
1128
	define('MAPIDEFS_LOADED', 0x00000001);
1129
}
1130
if (!defined('PR_NULL')) {
1131
	define('PR_NULL', 0x00000000);
1132
}
1133
if (!defined('PR_EMS_TEMPLATE_BLOB')) {
1134
	define('PR_EMS_TEMPLATE_BLOB', 0x00010102);
1135
}
1136
if (!defined('PR_ACKNOWLEDGEMENT_MODE')) {
1137
	define('PR_ACKNOWLEDGEMENT_MODE', 0x00010003);
1138
}
1139
if (!defined('PR_ALTERNATE_RECIPIENT_ALLOWED')) {
1140
	define('PR_ALTERNATE_RECIPIENT_ALLOWED', 0x00020102);
1141
}
1142
if (!defined('PR_AUTHORIZING_USERS')) {
1143
	define('PR_AUTHORIZING_USERS', 0x00030102);
1144
}
1145
if (!defined('PR_AUTO_FORWARD_COMMENT')) {
1146
	define('PR_AUTO_FORWARD_COMMENT', 0x0004001E);
1147
}
1148
if (!defined('PR_EMS_SCRIPT_BLOB')) {
1149
	define('PR_EMS_SCRIPT_BLOB', 0x00040102);
1150
}
1151
if (!defined('PR_AUTO_FORWARDED')) {
1152
	define('PR_AUTO_FORWARDED', 0x0005000B);
1153
}
1154
if (!defined('PR_CONTENT_CONFIDENTIALITY_ALGORITHM_ID')) {
1155
	define('PR_CONTENT_CONFIDENTIALITY_ALGORITHM_ID', 0x00060102);
1156
}
1157
if (!defined('PR_CONTENT_CORRELATOR')) {
1158
	define('PR_CONTENT_CORRELATOR', 0x00070102);
1159
}
1160
if (!defined('PR_CONTENT_IDENTIFIER')) {
1161
	define('PR_CONTENT_IDENTIFIER', 0x0008001E);
1162
}
1163
if (!defined('PR_CONTENT_LENGTH')) {
1164
	define('PR_CONTENT_LENGTH', 0x00090003);
1165
}
1166
if (!defined('PR_CONTENT_RETURN_REQUESTED')) {
1167
	define('PR_CONTENT_RETURN_REQUESTED', 0x000A000B);
1168
}
1169
if (!defined('PR_CONVERSATION_KEY')) {
1170
	define('PR_CONVERSATION_KEY', 0x000B0102);
1171
}
1172
if (!defined('PR_CONVERSION_EITS')) {
1173
	define('PR_CONVERSION_EITS', 0x000C0102);
1174
}
1175
if (!defined('PR_CONVERSION_WITH_LOSS_PROHIBITED')) {
1176
	define('PR_CONVERSION_WITH_LOSS_PROHIBITED', 0x000D000B);
1177
}
1178
if (!defined('PR_CONVERTED_EITS')) {
1179
	define('PR_CONVERTED_EITS', 0x000E0102);
1180
}
1181
if (!defined('PR_DEFERRED_DELIVERY_TIME')) {
1182
	define('PR_DEFERRED_DELIVERY_TIME', 0x000F0040);
1183
}
1184
if (!defined('PR_DELIVER_TIME')) {
1185
	define('PR_DELIVER_TIME', 0x00100040);
1186
}
1187
if (!defined('PR_DISCARD_REASON')) {
1188
	define('PR_DISCARD_REASON', 0x00110003);
1189
}
1190
if (!defined('PR_DISCLOSURE_OF_RECIPIENTS')) {
1191
	define('PR_DISCLOSURE_OF_RECIPIENTS', 0x0012000B);
1192
}
1193
if (!defined('PR_DL_EXPANSION_HISTORY')) {
1194
	define('PR_DL_EXPANSION_HISTORY', 0x00130102);
1195
}
1196
if (!defined('PR_DL_EXPANSION_PROHIBITED')) {
1197
	define('PR_DL_EXPANSION_PROHIBITED', 0x0014000B);
1198
}
1199
if (!defined('PR_EXPIRY_TIME')) {
1200
	define('PR_EXPIRY_TIME', 0x00150040);
1201
}
1202
if (!defined('PR_IMPLICIT_CONVERSION_PROHIBITED')) {
1203
	define('PR_IMPLICIT_CONVERSION_PROHIBITED', 0x0016000B);
1204
}
1205
if (!defined('PR_IMPORTANCE')) {
1206
	define('PR_IMPORTANCE', 0x00170003);
1207
}
1208
if (!defined('PR_IPM_ID')) {
1209
	define('PR_IPM_ID', 0x00180102);
1210
}
1211
if (!defined('PR_LATEST_DELIVERY_TIME')) {
1212
	define('PR_LATEST_DELIVERY_TIME', 0x00190040);
1213
}
1214
if (!defined('PR_MESSAGE_CLASS')) {
1215
	define('PR_MESSAGE_CLASS', 0x001A001E);
1216
}
1217
if (!defined('PR_MESSAGE_CLASS_A')) {
1218
	define('PR_MESSAGE_CLASS_A', 0x001A001E);
1219
}
1220
if (!defined('PR_MESSAGE_DELIVERY_ID')) {
1221
	define('PR_MESSAGE_DELIVERY_ID', 0x001B0102);
1222
}
1223
if (!defined('PR_MESSAGE_SECURITY_LABEL')) {
1224
	define('PR_MESSAGE_SECURITY_LABEL', 0x001E0102);
1225
}
1226
if (!defined('PR_OBSOLETED_IPMS')) {
1227
	define('PR_OBSOLETED_IPMS', 0x001F0102);
1228
}
1229
if (!defined('PR_ORIGINALLY_INTENDED_RECIPIENT_NAME')) {
1230
	define('PR_ORIGINALLY_INTENDED_RECIPIENT_NAME', 0x00200102);
1231
}
1232
if (!defined('PR_ORIGINAL_EITS')) {
1233
	define('PR_ORIGINAL_EITS', 0x00210102);
1234
}
1235
if (!defined('PR_ORIGINATOR_CERTIFICATE')) {
1236
	define('PR_ORIGINATOR_CERTIFICATE', 0x00220102);
1237
}
1238
if (!defined('PR_ORIGINATOR_DELIVERY_REPORT_REQUESTED')) {
1239
	define('PR_ORIGINATOR_DELIVERY_REPORT_REQUESTED', 0x0023000B);
1240
}
1241
if (!defined('PR_ORIGINATOR_RETURN_ADDRESS')) {
1242
	define('PR_ORIGINATOR_RETURN_ADDRESS', 0x00240102);
1243
}
1244
if (!defined('PR_PARENT_KEY')) {
1245
	define('PR_PARENT_KEY', 0x00250102);
1246
}
1247
if (!defined('PR_PRIORITY')) {
1248
	define('PR_PRIORITY', 0x00260003);
1249
}
1250
if (!defined('PR_ORIGIN_CHECK')) {
1251
	define('PR_ORIGIN_CHECK', 0x00270102);
1252
}
1253
if (!defined('PR_PROOF_OF_SUBMISSION_REQUESTED')) {
1254
	define('PR_PROOF_OF_SUBMISSION_REQUESTED', 0x0028000B);
1255
}
1256
if (!defined('PR_READ_RECEIPT_REQUESTED')) {
1257
	define('PR_READ_RECEIPT_REQUESTED', 0x0029000B);
1258
}
1259
if (!defined('PR_RECEIPT_TIME')) {
1260
	define('PR_RECEIPT_TIME', 0x002A0040);
1261
}
1262
if (!defined('PR_RECIPIENT_REASSIGNMENT_PROHIBITED')) {
1263
	define('PR_RECIPIENT_REASSIGNMENT_PROHIBITED', 0x002B000B);
1264
}
1265
if (!defined('PR_REDIRECTION_HISTORY')) {
1266
	define('PR_REDIRECTION_HISTORY', 0x002C0102);
1267
}
1268
if (!defined('PR_RELATED_IPMS')) {
1269
	define('PR_RELATED_IPMS', 0x002D0102);
1270
}
1271
if (!defined('PR_ORIGINAL_SENSITIVITY')) {
1272
	define('PR_ORIGINAL_SENSITIVITY', 0x002E0003);
1273
}
1274
if (!defined('PR_LANGUAGES')) {
1275
	define('PR_LANGUAGES', 0x002F001E);
1276
}
1277
if (!defined('PR_REPLY_TIME')) {
1278
	define('PR_REPLY_TIME', 0x00300040);
1279
}
1280
if (!defined('PR_REPORT_TAG')) {
1281
	define('PR_REPORT_TAG', 0x00310102);
1282
}
1283
if (!defined('PR_REPORT_TIME')) {
1284
	define('PR_REPORT_TIME', 0x00320040);
1285
}
1286
if (!defined('PR_RETURNED_IPM')) {
1287
	define('PR_RETURNED_IPM', 0x0033000B);
1288
}
1289
if (!defined('PR_SECURITY')) {
1290
	define('PR_SECURITY', 0x00340003);
1291
}
1292
if (!defined('PR_INCOMPLETE_COPY')) {
1293
	define('PR_INCOMPLETE_COPY', 0x0035000B);
1294
}
1295
if (!defined('PR_SENSITIVITY')) {
1296
	define('PR_SENSITIVITY', 0x00360003);
1297
}
1298
if (!defined('PR_SUBJECT')) {
1299
	define('PR_SUBJECT', 0x0037001E);
1300
}
1301
if (!defined('PR_SUBJECT_A')) {
1302
	define('PR_SUBJECT_A', 0x0037001E);
1303
}
1304
if (!defined('PR_SUBJECT_IPM')) {
1305
	define('PR_SUBJECT_IPM', 0x00380102);
1306
}
1307
if (!defined('PR_CLIENT_SUBMIT_TIME')) {
1308
	define('PR_CLIENT_SUBMIT_TIME', 0x00390040);
1309
}
1310
if (!defined('PR_REPORT_NAME')) {
1311
	define('PR_REPORT_NAME', 0x003A001E);
1312
}
1313
if (!defined('PR_SENT_REPRESENTING_SEARCH_KEY')) {
1314
	define('PR_SENT_REPRESENTING_SEARCH_KEY', 0x003B0102);
1315
}
1316
if (!defined('PR_X400_CONTENT_TYPE')) {
1317
	define('PR_X400_CONTENT_TYPE', 0x003C0102);
1318
}
1319
if (!defined('PR_SUBJECT_PREFIX')) {
1320
	define('PR_SUBJECT_PREFIX', 0x003D001E);
1321
}
1322
if (!defined('PR_SUBJECT_PREFIX_A')) {
1323
	define('PR_SUBJECT_PREFIX_A', 0x003D001E);
1324
}
1325
if (!defined('PR_NON_RECEIPT_REASON')) {
1326
	define('PR_NON_RECEIPT_REASON', 0x003E0003);
1327
}
1328
if (!defined('PR_RECEIVED_BY_ENTRYID')) {
1329
	define('PR_RECEIVED_BY_ENTRYID', 0x003F0102);
1330
}
1331
if (!defined('PR_RECEIVED_BY_NAME')) {
1332
	define('PR_RECEIVED_BY_NAME', 0x0040001E);
1333
}
1334
if (!defined('PR_SENT_REPRESENTING_ENTRYID')) {
1335
	define('PR_SENT_REPRESENTING_ENTRYID', 0x00410102);
1336
}
1337
if (!defined('PR_SENT_REPRESENTING_NAME')) {
1338
	define('PR_SENT_REPRESENTING_NAME', 0x0042001E);
1339
}
1340
if (!defined('PR_SENT_REPRESENTING_NAME_A')) {
1341
	define('PR_SENT_REPRESENTING_NAME_A', 0x0042001E);
1342
}
1343
if (!defined('PR_RCVD_REPRESENTING_ENTRYID')) {
1344
	define('PR_RCVD_REPRESENTING_ENTRYID', 0x00430102);
1345
}
1346
if (!defined('PR_RCVD_REPRESENTING_NAME')) {
1347
	define('PR_RCVD_REPRESENTING_NAME', 0x0044001E);
1348
}
1349
if (!defined('PR_RCVD_REPRESENTING_NAME_A')) {
1350
	define('PR_RCVD_REPRESENTING_NAME_A', 0x0044001E);
1351
}
1352
if (!defined('PR_REPORT_ENTRYID')) {
1353
	define('PR_REPORT_ENTRYID', 0x00450102);
1354
}
1355
if (!defined('PR_READ_RECEIPT_ENTRYID')) {
1356
	define('PR_READ_RECEIPT_ENTRYID', 0x00460102);
1357
}
1358
if (!defined('PR_MESSAGE_SUBMISSION_ID')) {
1359
	define('PR_MESSAGE_SUBMISSION_ID', 0x00470102);
1360
}
1361
if (!defined('PR_PROVIDER_SUBMIT_TIME')) {
1362
	define('PR_PROVIDER_SUBMIT_TIME', 0x00480040);
1363
}
1364
if (!defined('PR_ORIGINAL_SUBJECT')) {
1365
	define('PR_ORIGINAL_SUBJECT', 0x0049001E);
1366
}
1367
if (!defined('PR_DISC_VAL')) {
1368
	define('PR_DISC_VAL', 0x004A000B);
1369
}
1370
if (!defined('PR_ORIG_MESSAGE_CLASS')) {
1371
	define('PR_ORIG_MESSAGE_CLASS', 0x004B001E);
1372
}
1373
if (!defined('PR_ORIG_MESSAGE_CLASS_A')) {
1374
	define('PR_ORIG_MESSAGE_CLASS_A', 0x004B001E);
1375
}
1376
if (!defined('PR_ORIGINAL_AUTHOR_ENTRYID')) {
1377
	define('PR_ORIGINAL_AUTHOR_ENTRYID', 0x004C0102);
1378
}
1379
if (!defined('PR_ORIGINAL_AUTHOR_NAME')) {
1380
	define('PR_ORIGINAL_AUTHOR_NAME', 0x004D001E);
1381
}
1382
if (!defined('PR_ORIGINAL_SUBMIT_TIME')) {
1383
	define('PR_ORIGINAL_SUBMIT_TIME', 0x004E0040);
1384
}
1385
if (!defined('PR_REPLY_RECIPIENT_ENTRIES')) {
1386
	define('PR_REPLY_RECIPIENT_ENTRIES', 0x004F0102);
1387
}
1388
if (!defined('PR_REPLY_RECIPIENT_NAMES')) {
1389
	define('PR_REPLY_RECIPIENT_NAMES', 0x0050001E);
1390
}
1391
if (!defined('PR_RECEIVED_BY_SEARCH_KEY')) {
1392
	define('PR_RECEIVED_BY_SEARCH_KEY', 0x00510102);
1393
}
1394
if (!defined('PR_RCVD_REPRESENTING_SEARCH_KEY')) {
1395
	define('PR_RCVD_REPRESENTING_SEARCH_KEY', 0x00520102);
1396
}
1397
if (!defined('PR_READ_RECEIPT_SEARCH_KEY')) {
1398
	define('PR_READ_RECEIPT_SEARCH_KEY', 0x00530102);
1399
}
1400
if (!defined('PR_REPORT_SEARCH_KEY')) {
1401
	define('PR_REPORT_SEARCH_KEY', 0x00540102);
1402
}
1403
if (!defined('PR_ORIGINAL_DELIVERY_TIME')) {
1404
	define('PR_ORIGINAL_DELIVERY_TIME', 0x00550040);
1405
}
1406
if (!defined('PR_ORIGINAL_AUTHOR_SEARCH_KEY')) {
1407
	define('PR_ORIGINAL_AUTHOR_SEARCH_KEY', 0x00560102);
1408
}
1409
if (!defined('PR_MESSAGE_TO_ME')) {
1410
	define('PR_MESSAGE_TO_ME', 0x0057000B);
1411
}
1412
if (!defined('PR_MESSAGE_CC_ME')) {
1413
	define('PR_MESSAGE_CC_ME', 0x0058000B);
1414
}
1415
if (!defined('PR_MESSAGE_RECIP_ME')) {
1416
	define('PR_MESSAGE_RECIP_ME', 0x0059000B);
1417
}
1418
if (!defined('PR_ORIGINAL_SENDER_NAME')) {
1419
	define('PR_ORIGINAL_SENDER_NAME', 0x005A001E);
1420
}
1421
if (!defined('PR_ORIGINAL_SENDER_ENTRYID')) {
1422
	define('PR_ORIGINAL_SENDER_ENTRYID', 0x005B0102);
1423
}
1424
if (!defined('PR_ORIGINAL_SENDER_SEARCH_KEY')) {
1425
	define('PR_ORIGINAL_SENDER_SEARCH_KEY', 0x005C0102);
1426
}
1427
if (!defined('PR_ORIGINAL_SENT_REPRESENTING_NAME')) {
1428
	define('PR_ORIGINAL_SENT_REPRESENTING_NAME', 0x005D001E);
1429
}
1430
if (!defined('PR_ORIGINAL_SENT_REPRESENTING_ENTRYID')) {
1431
	define('PR_ORIGINAL_SENT_REPRESENTING_ENTRYID', 0x005E0102);
1432
}
1433
if (!defined('PR_ORIGINAL_SENT_REPRESENTING_SEARCH_KEY')) {
1434
	define('PR_ORIGINAL_SENT_REPRESENTING_SEARCH_KEY', 0x005F0102);
1435
}
1436
if (!defined('PR_START_DATE')) {
1437
	define('PR_START_DATE', 0x00600040);
1438
}
1439
if (!defined('PR_END_DATE')) {
1440
	define('PR_END_DATE', 0x00610040);
1441
}
1442
if (!defined('PR_OWNER_APPT_ID')) {
1443
	define('PR_OWNER_APPT_ID', 0x00620003);
1444
}
1445
if (!defined('PR_RESPONSE_REQUESTED')) {
1446
	define('PR_RESPONSE_REQUESTED', 0x0063000B);
1447
}
1448
if (!defined('PR_SENT_REPRESENTING_ADDRTYPE')) {
1449
	define('PR_SENT_REPRESENTING_ADDRTYPE', 0x0064001E);
1450
}
1451
if (!defined('PR_SENT_REPRESENTING_ADDRTYPE_A')) {
1452
	define('PR_SENT_REPRESENTING_ADDRTYPE_A', 0x0064001E);
1453
}
1454
if (!defined('PR_SENT_REPRESENTING_EMAIL_ADDRESS')) {
1455
	define('PR_SENT_REPRESENTING_EMAIL_ADDRESS', 0x0065001E);
1456
}
1457
if (!defined('PR_SENT_REPRESENTING_EMAIL_ADDRESS_A')) {
1458
	define('PR_SENT_REPRESENTING_EMAIL_ADDRESS_A', 0x0065001E);
1459
}
1460
if (!defined('PR_ORIGINAL_SENDER_ADDRTYPE')) {
1461
	define('PR_ORIGINAL_SENDER_ADDRTYPE', 0x0066001E);
1462
}
1463
if (!defined('PR_ORIGINAL_SENDER_EMAIL_ADDRESS')) {
1464
	define('PR_ORIGINAL_SENDER_EMAIL_ADDRESS', 0x0067001E);
1465
}
1466
if (!defined('PR_ORIGINAL_SENT_REPRESENTING_ADDRTYPE')) {
1467
	define('PR_ORIGINAL_SENT_REPRESENTING_ADDRTYPE', 0x0068001E);
1468
}
1469
if (!defined('PR_ORIGINAL_SENT_REPRESENTING_EMAIL_ADDRESS')) {
1470
	define('PR_ORIGINAL_SENT_REPRESENTING_EMAIL_ADDRESS', 0x0069001E);
1471
}
1472
if (!defined('PR_CONVERSATION_TOPIC')) {
1473
	define('PR_CONVERSATION_TOPIC', 0x0070001E);
1474
}
1475
if (!defined('PR_CONVERSATION_TOPIC_A')) {
1476
	define('PR_CONVERSATION_TOPIC_A', 0x0070001E);
1477
}
1478
if (!defined('PR_CONVERSATION_INDEX')) {
1479
	define('PR_CONVERSATION_INDEX', 0x00710102);
1480
}
1481
if (!defined('PR_ORIGINAL_DISPLAY_BCC')) {
1482
	define('PR_ORIGINAL_DISPLAY_BCC', 0x0072001E);
1483
}
1484
if (!defined('PR_ORIGINAL_DISPLAY_CC')) {
1485
	define('PR_ORIGINAL_DISPLAY_CC', 0x0073001E);
1486
}
1487
if (!defined('PR_ORIGINAL_DISPLAY_TO')) {
1488
	define('PR_ORIGINAL_DISPLAY_TO', 0x0074001E);
1489
}
1490
if (!defined('PR_RECEIVED_BY_ADDRTYPE')) {
1491
	define('PR_RECEIVED_BY_ADDRTYPE', 0x0075001E);
1492
}
1493
if (!defined('PR_RECEIVED_BY_EMAIL_ADDRESS')) {
1494
	define('PR_RECEIVED_BY_EMAIL_ADDRESS', 0x0076001E);
1495
}
1496
if (!defined('PR_RCVD_REPRESENTING_ADDRTYPE')) {
1497
	define('PR_RCVD_REPRESENTING_ADDRTYPE', 0x0077001E);
1498
}
1499
if (!defined('PR_RCVD_REPRESENTING_ADDRTYPE_A')) {
1500
	define('PR_RCVD_REPRESENTING_ADDRTYPE_A', 0x0077001E);
1501
}
1502
if (!defined('PR_RCVD_REPRESENTING_EMAIL_ADDRESS')) {
1503
	define('PR_RCVD_REPRESENTING_EMAIL_ADDRESS', 0x0078001E);
1504
}
1505
if (!defined('PR_RCVD_REPRESENTING_EMAIL_ADDRESS_A')) {
1506
	define('PR_RCVD_REPRESENTING_EMAIL_ADDRESS_A', 0x0078001E);
1507
}
1508
if (!defined('PR_ORIGINAL_AUTHOR_ADDRTYPE')) {
1509
	define('PR_ORIGINAL_AUTHOR_ADDRTYPE', 0x0079001E);
1510
}
1511
if (!defined('PR_ORIGINAL_AUTHOR_EMAIL_ADDRESS')) {
1512
	define('PR_ORIGINAL_AUTHOR_EMAIL_ADDRESS', 0x007A001E);
1513
}
1514
if (!defined('PR_ORIGINALLY_INTENDED_RECIP_ADDRTYPE')) {
1515
	define('PR_ORIGINALLY_INTENDED_RECIP_ADDRTYPE', 0x007B001E);
1516
}
1517
if (!defined('PR_ORIGINALLY_INTENDED_RECIP_EMAIL_ADDRESS')) {
1518
	define('PR_ORIGINALLY_INTENDED_RECIP_EMAIL_ADDRESS', 0x007C001E);
1519
}
1520
if (!defined('PR_TRANSPORT_MESSAGE_HEADERS')) {
1521
	define('PR_TRANSPORT_MESSAGE_HEADERS', 0x007D001E);
1522
}
1523
if (!defined('PR_TRANSPORT_MESSAGE_HEADERS_A')) {
1524
	define('PR_TRANSPORT_MESSAGE_HEADERS_A', 0x007D001E);
1525
}
1526
if (!defined('PR_DELEGATION')) {
1527
	define('PR_DELEGATION', 0x007E0102);
1528
}
1529
if (!defined('PR_TNEF_CORRELATION_KEY')) {
1530
	define('PR_TNEF_CORRELATION_KEY', 0x007F0102);
1531
}
1532
if (!defined('PR_REPORT_DISPOSITION')) {
1533
	define('PR_REPORT_DISPOSITION', 0x0080001E);
1534
}
1535
if (!defined('PR_REPORT_DISPOSITION_MODE')) {
1536
	define('PR_REPORT_DISPOSITION_MODE', 0x0081001E);
1537
}
1538
if (!defined('PR_EMS_AB_ROOM_CAPACITY')) {
1539
	define('PR_EMS_AB_ROOM_CAPACITY', 0x08070003);
1540
}
1541
if (!defined('PR_EMS_AB_ROOM_DESCRIPTION')) {
1542
	define('PR_EMS_AB_ROOM_DESCRIPTION', 0x0809001E);
1543
}
1544
if (!defined('PR_CONTENT_INTEGRITY_CHECK')) {
1545
	define('PR_CONTENT_INTEGRITY_CHECK', 0x0C000102);
1546
}
1547
if (!defined('PR_EXPLICIT_CONVERSION')) {
1548
	define('PR_EXPLICIT_CONVERSION', 0x0C010003);
1549
}
1550
if (!defined('PR_IPM_RETURN_REQUESTED')) {
1551
	define('PR_IPM_RETURN_REQUESTED', 0x0C02000B);
1552
}
1553
if (!defined('PR_MESSAGE_TOKEN')) {
1554
	define('PR_MESSAGE_TOKEN', 0x0C030102);
1555
}
1556
if (!defined('PR_NDR_REASON_CODE')) {
1557
	define('PR_NDR_REASON_CODE', 0x0C040003);
1558
}
1559
if (!defined('PR_NDR_DIAG_CODE')) {
1560
	define('PR_NDR_DIAG_CODE', 0x0C050003);
1561
}
1562
if (!defined('PR_NON_RECEIPT_NOTIFICATION_REQUESTED')) {
1563
	define('PR_NON_RECEIPT_NOTIFICATION_REQUESTED', 0x0C06000B);
1564
}
1565
if (!defined('PR_DELIVERY_POINT')) {
1566
	define('PR_DELIVERY_POINT', 0x0C070003);
1567
}
1568
if (!defined('PR_ORIGINATOR_NON_DELIVERY_REPORT_REQUESTED')) {
1569
	define('PR_ORIGINATOR_NON_DELIVERY_REPORT_REQUESTED', 0x0C08000B);
1570
}
1571
if (!defined('PR_ORIGINATOR_REQUESTED_ALTERNATE_RECIPIENT')) {
1572
	define('PR_ORIGINATOR_REQUESTED_ALTERNATE_RECIPIENT', 0x0C090102);
1573
}
1574
if (!defined('PR_PHYSICAL_DELIVERY_BUREAU_FAX_DELIVERY')) {
1575
	define('PR_PHYSICAL_DELIVERY_BUREAU_FAX_DELIVERY', 0x0C0A000B);
1576
}
1577
if (!defined('PR_PHYSICAL_DELIVERY_MODE')) {
1578
	define('PR_PHYSICAL_DELIVERY_MODE', 0x0C0B0003);
1579
}
1580
if (!defined('PR_PHYSICAL_DELIVERY_REPORT_REQUEST')) {
1581
	define('PR_PHYSICAL_DELIVERY_REPORT_REQUEST', 0x0C0C0003);
1582
}
1583
if (!defined('PR_PHYSICAL_FORWARDING_ADDRESS')) {
1584
	define('PR_PHYSICAL_FORWARDING_ADDRESS', 0x0C0D0102);
1585
}
1586
if (!defined('PR_PHYSICAL_FORWARDING_ADDRESS_REQUESTED')) {
1587
	define('PR_PHYSICAL_FORWARDING_ADDRESS_REQUESTED', 0x0C0E000B);
1588
}
1589
if (!defined('PR_PHYSICAL_FORWARDING_PROHIBITED')) {
1590
	define('PR_PHYSICAL_FORWARDING_PROHIBITED', 0x0C0F000B);
1591
}
1592
if (!defined('PR_PHYSICAL_RENDITION_ATTRIBUTES')) {
1593
	define('PR_PHYSICAL_RENDITION_ATTRIBUTES', 0x0C100102);
1594
}
1595
if (!defined('PR_PROOF_OF_DELIVERY')) {
1596
	define('PR_PROOF_OF_DELIVERY', 0x0C110102);
1597
}
1598
if (!defined('PR_PROOF_OF_DELIVERY_REQUESTED')) {
1599
	define('PR_PROOF_OF_DELIVERY_REQUESTED', 0x0C12000B);
1600
}
1601
if (!defined('PR_RECIPIENT_CERTIFICATE')) {
1602
	define('PR_RECIPIENT_CERTIFICATE', 0x0C130102);
1603
}
1604
if (!defined('PR_RECIPIENT_NUMBER_FOR_ADVICE')) {
1605
	define('PR_RECIPIENT_NUMBER_FOR_ADVICE', 0x0C14001E);
1606
}
1607
if (!defined('PR_RECIPIENT_TYPE')) {
1608
	define('PR_RECIPIENT_TYPE', 0x0C150003);
1609
}
1610
if (!defined('PR_REGISTERED_MAIL_TYPE')) {
1611
	define('PR_REGISTERED_MAIL_TYPE', 0x0C160003);
1612
}
1613
if (!defined('PR_REPLY_REQUESTED')) {
1614
	define('PR_REPLY_REQUESTED', 0x0C17000B);
1615
}
1616
if (!defined('PR_REQUESTED_DELIVERY_METHOD')) {
1617
	define('PR_REQUESTED_DELIVERY_METHOD', 0x0C180003);
1618
}
1619
if (!defined('PR_SENDER_ENTRYID')) {
1620
	define('PR_SENDER_ENTRYID', 0x0C190102);
1621
}
1622
if (!defined('PR_SENDER_NAME')) {
1623
	define('PR_SENDER_NAME', 0x0C1A001E);
1624
}
1625
if (!defined('PR_SENDER_NAME_A')) {
1626
	define('PR_SENDER_NAME_A', 0x0C1A001E);
1627
}
1628
if (!defined('PR_SUPPLEMENTARY_INFO')) {
1629
	define('PR_SUPPLEMENTARY_INFO', 0x0C1B001E);
1630
}
1631
if (!defined('PR_TYPE_OF_MTS_USER')) {
1632
	define('PR_TYPE_OF_MTS_USER', 0x0C1C0003);
1633
}
1634
if (!defined('PR_SENDER_SEARCH_KEY')) {
1635
	define('PR_SENDER_SEARCH_KEY', 0x0C1D0102);
1636
}
1637
if (!defined('PR_SENDER_ADDRTYPE')) {
1638
	define('PR_SENDER_ADDRTYPE', 0x0C1E001E);
1639
}
1640
if (!defined('PR_SENDER_ADDRTYPE_A')) {
1641
	define('PR_SENDER_ADDRTYPE_A', 0x0C1E001E);
1642
}
1643
if (!defined('PR_SENDER_EMAIL_ADDRESS')) {
1644
	define('PR_SENDER_EMAIL_ADDRESS', 0x0C1F001E);
1645
}
1646
if (!defined('PR_SENDER_EMAIL_ADDRESS_A')) {
1647
	define('PR_SENDER_EMAIL_ADDRESS_A', 0x0C1F001E);
1648
}
1649
if (!defined('PR_NDR_STATUS_CODE')) {
1650
	define('PR_NDR_STATUS_CODE', 0x0C200003);
1651
}
1652
if (!defined('PR_DSN_REMOTE_MTA')) {
1653
	define('PR_DSN_REMOTE_MTA', 0x0C21001E);
1654
}
1655
if (!defined('PR_CURRENT_VERSION')) {
1656
	define('PR_CURRENT_VERSION', 0x0E000014);
1657
}
1658
if (!defined('PR_DELETE_AFTER_SUBMIT')) {
1659
	define('PR_DELETE_AFTER_SUBMIT', 0x0E01000B);
1660
}
1661
if (!defined('PR_DISPLAY_BCC')) {
1662
	define('PR_DISPLAY_BCC', 0x0E02001E);
1663
}
1664
if (!defined('PR_DISPLAY_BCC_A')) {
1665
	define('PR_DISPLAY_BCC_A', 0x0E02001E);
1666
}
1667
if (!defined('PR_DISPLAY_CC')) {
1668
	define('PR_DISPLAY_CC', 0x0E03001E);
1669
}
1670
if (!defined('PR_DISPLAY_CC_A')) {
1671
	define('PR_DISPLAY_CC_A', 0x0E03001E);
1672
}
1673
if (!defined('PR_DISPLAY_TO')) {
1674
	define('PR_DISPLAY_TO', 0x0E04001E);
1675
}
1676
if (!defined('PR_DISPLAY_TO_A')) {
1677
	define('PR_DISPLAY_TO_A', 0x0E04001E);
1678
}
1679
if (!defined('PR_PARENT_DISPLAY')) {
1680
	define('PR_PARENT_DISPLAY', 0x0E05001E);
1681
}
1682
if (!defined('PR_PARENT_DISPLAY_A')) {
1683
	define('PR_PARENT_DISPLAY_A', 0x0E05001E);
1684
}
1685
if (!defined('PR_MESSAGE_DELIVERY_TIME')) {
1686
	define('PR_MESSAGE_DELIVERY_TIME', 0x0E060040);
1687
}
1688
if (!defined('PR_MESSAGE_FLAGS')) {
1689
	define('PR_MESSAGE_FLAGS', 0x0E070003);
1690
}
1691
if (!defined('PR_MESSAGE_SIZE')) {
1692
	define('PR_MESSAGE_SIZE', 0x0E080003);
1693
}
1694
if (!defined('PR_MESSAGE_SIZE_EXTENDED')) {
1695
	define('PR_MESSAGE_SIZE_EXTENDED', 0x0E080014);
1696
}
1697
if (!defined('PR_PARENT_ENTRYID')) {
1698
	define('PR_PARENT_ENTRYID', 0x0E090102);
1699
}
1700
if (!defined('PR_PARENT_SVREID')) {
1701
	define('PR_PARENT_SVREID', 0x0E0900FB);
1702
}
1703
if (!defined('PR_SENTMAIL_ENTRYID')) {
1704
	define('PR_SENTMAIL_ENTRYID', 0x0E0A0102);
1705
}
1706
if (!defined('PR_CORRELATE')) {
1707
	define('PR_CORRELATE', 0x0E0C000B);
1708
}
1709
if (!defined('PR_CORRELATE_MTSID')) {
1710
	define('PR_CORRELATE_MTSID', 0x0E0D0102);
1711
}
1712
if (!defined('PR_DISCRETE_VALUES')) {
1713
	define('PR_DISCRETE_VALUES', 0x0E0E000B);
1714
}
1715
if (!defined('PR_RESPONSIBILITY')) {
1716
	define('PR_RESPONSIBILITY', 0x0E0F000B);
1717
}
1718
if (!defined('PR_SPOOLER_STATUS')) {
1719
	define('PR_SPOOLER_STATUS', 0x0E100003);
1720
}
1721
if (!defined('PR_TRANSPORT_STATUS')) {
1722
	define('PR_TRANSPORT_STATUS', 0x0E110003);
1723
}
1724
if (!defined('PR_MESSAGE_RECIPIENTS')) {
1725
	define('PR_MESSAGE_RECIPIENTS', 0x0E12000D);
1726
}
1727
if (!defined('PR_MESSAGE_ATTACHMENTS')) {
1728
	define('PR_MESSAGE_ATTACHMENTS', 0x0E13000D);
1729
}
1730
if (!defined('PR_SUBMIT_FLAGS')) {
1731
	define('PR_SUBMIT_FLAGS', 0x0E140003);
1732
}
1733
if (!defined('PR_RECIPIENT_STATUS')) {
1734
	define('PR_RECIPIENT_STATUS', 0x0E150003);
1735
}
1736
if (!defined('PR_TRANSPORT_KEY')) {
1737
	define('PR_TRANSPORT_KEY', 0x0E160003);
1738
}
1739
if (!defined('PR_MSG_STATUS')) {
1740
	define('PR_MSG_STATUS', 0x0E170003);
1741
}
1742
if (!defined('PR_MESSAGE_DOWNLOAD_TIME')) {
1743
	define('PR_MESSAGE_DOWNLOAD_TIME', 0x0E180003);
1744
}
1745
if (!defined('PR_CREATION_VERSION')) {
1746
	define('PR_CREATION_VERSION', 0x0E190014);
1747
}
1748
if (!defined('PR_MODIFY_VERSION')) {
1749
	define('PR_MODIFY_VERSION', 0x0E1A0014);
1750
}
1751
if (!defined('PR_HASATTACH')) {
1752
	define('PR_HASATTACH', 0x0E1B000B);
1753
}
1754
if (!defined('PR_BODY_CRC')) {
1755
	define('PR_BODY_CRC', 0x0E1C0003);
1756
}
1757
if (!defined('PR_NORMALIZED_SUBJECT')) {
1758
	define('PR_NORMALIZED_SUBJECT', 0x0E1D001E);
1759
}
1760
if (!defined('PR_NORMALIZED_SUBJECT_A')) {
1761
	define('PR_NORMALIZED_SUBJECT_A', 0x0E1D001E);
1762
}
1763
if (!defined('PR_RTF_IN_SYNC')) {
1764
	define('PR_RTF_IN_SYNC', 0x0E1F000B);
1765
}
1766
if (!defined('PR_ATTACH_SIZE')) {
1767
	define('PR_ATTACH_SIZE', 0x0E200003);
1768
}
1769
if (!defined('PR_ATTACH_NUM')) {
1770
	define('PR_ATTACH_NUM', 0x0E210003);
1771
}
1772
if (!defined('PR_PREPROCESS')) {
1773
	define('PR_PREPROCESS', 0x0E22000B);
1774
}
1775
if (!defined('PR_INTERNET_ARTICLE_NUMBER')) {
1776
	define('PR_INTERNET_ARTICLE_NUMBER', 0x0E230003);
1777
}
1778
if (!defined('PR_NEWSGROUP_NAME')) {
1779
	define('PR_NEWSGROUP_NAME', 0x0E24001E);
1780
}
1781
if (!defined('PR_ORIGINATING_MTA_CERTIFICATE')) {
1782
	define('PR_ORIGINATING_MTA_CERTIFICATE', 0x0E250102);
1783
}
1784
if (!defined('PR_PROOF_OF_SUBMISSION')) {
1785
	define('PR_PROOF_OF_SUBMISSION', 0x0E260102);
1786
}
1787
if (!defined('PR_NT_SECURITY_DESCRIPTOR')) {
1788
	define('PR_NT_SECURITY_DESCRIPTOR', 0x0E270102);
1789
}
1790
if (!defined('PR_PRIMARY_SEND_ACCOUNT')) {
1791
	define('PR_PRIMARY_SEND_ACCOUNT', 0x0E28001E);
1792
}
1793
if (!defined('PR_NEXT_SEND_ACCT')) {
1794
	define('PR_NEXT_SEND_ACCT', 0x0E29001E);
1795
}
1796
if (!defined('PR_TODO_ITEM_FLAGS')) {
1797
	define('PR_TODO_ITEM_FLAGS', 0x0E2B0003);
1798
}
1799
if (!defined('PR_SWAPPED_TODO_STORE')) {
1800
	define('PR_SWAPPED_TODO_STORE', 0x0E2C0102);
1801
}
1802
if (!defined('PR_SWAPPED_TODO_DATA')) {
1803
	define('PR_SWAPPED_TODO_DATA', 0x0E2D0102);
1804
}
1805
if (!defined('PR_REPL_ITEMID')) {
1806
	define('PR_REPL_ITEMID', 0x0E300003);
1807
}
1808
if (!defined('PR_REPL_CHANGENUM')) {
1809
	define('PR_REPL_CHANGENUM', 0x0E330014);
1810
}
1811
if (!defined('PR_REPL_VERSIONHISTORY')) {
1812
	define('PR_REPL_VERSIONHISTORY', 0x0E340102);
1813
}
1814
if (!defined('PR_REPL_FLAGS')) {
1815
	define('PR_REPL_FLAGS', 0x0E380003);
1816
}
1817
if (!defined('PR_REPL_COPIEDFROM_VERSIONHISTORY')) {
1818
	define('PR_REPL_COPIEDFROM_VERSIONHISTORY', 0x0E3C0102);
1819
}
1820
if (!defined('PR_REPL_COPIEDFROM_ITEMID')) {
1821
	define('PR_REPL_COPIEDFROM_ITEMID', 0x0E3D0102);
1822
}
1823
if (!defined('PR_CREATOR_SID')) {
1824
	define('PR_CREATOR_SID', 0x0E580102);
1825
}
1826
if (!defined('PR_LAST_MODIFIER_SID')) {
1827
	define('PR_LAST_MODIFIER_SID', 0x0E590102);
1828
}
1829
if (!defined('PR_READ')) {
1830
	define('PR_READ', 0x0E69000B);
1831
}
1832
if (!defined('PR_NT_SECURITY_DESCRIPTOR_AS_XML')) {
1833
	define('PR_NT_SECURITY_DESCRIPTOR_AS_XML', 0x0E6A001E);
1834
}
1835
if (!defined('PR_TRUST_SENDER')) {
1836
	define('PR_TRUST_SENDER', 0x0E790003);
1837
}
1838
if (!defined('PR_EXTENDED_RULE_MSG_ACTIONS')) {
1839
	define('PR_EXTENDED_RULE_MSG_ACTIONS', 0x0E990102);
1840
}
1841
if (!defined('PR_EXTENDED_RULE_MSG_CONDITION')) {
1842
	define('PR_EXTENDED_RULE_MSG_CONDITION', 0x0E9A0102);
1843
}
1844
if (!defined('PR_EXTENDED_RULE_SIZE_LIMIT')) {
1845
	define('PR_EXTENDED_RULE_SIZE_LIMIT', 0x0E9B0003);
1846
}
1847
if (!defined('PR_ASSOCIATED_SHARING_PROVIDER')) {
1848
	define('PR_ASSOCIATED_SHARING_PROVIDER', 0x0EA00048);
1849
}
1850
if (!defined('PR_SEARCH_ATTACHMENTS')) {
1851
	define('PR_SEARCH_ATTACHMENTS', 0x0EA5001E);
1852
}
1853
if (!defined('PR_SEARCH_RECIP_EMAIL_TO')) {
1854
	define('PR_SEARCH_RECIP_EMAIL_TO', 0x0EA6001E);
1855
}
1856
if (!defined('PR_SEARCH_RECIP_EMAIL_CC')) {
1857
	define('PR_SEARCH_RECIP_EMAIL_CC', 0x0EA7001E);
1858
}
1859
if (!defined('PR_SEARCH_RECIP_EMAIL_BCC')) {
1860
	define('PR_SEARCH_RECIP_EMAIL_BCC', 0x0EA8001E);
1861
}
1862
if (!defined('PR_ACCESS')) {
1863
	define('PR_ACCESS', 0x0FF40003);
1864
}
1865
if (!defined('PR_ROW_TYPE')) {
1866
	define('PR_ROW_TYPE', 0x0FF50003);
1867
}
1868
if (!defined('PR_INSTANCE_KEY')) {
1869
	define('PR_INSTANCE_KEY', 0x0FF60102);
1870
}
1871
if (!defined('PR_INSTANCE_SVREID')) {
1872
	define('PR_INSTANCE_SVREID', 0x0FF600FB);
1873
}
1874
if (!defined('PR_ACCESS_LEVEL')) {
1875
	define('PR_ACCESS_LEVEL', 0x0FF70003);
1876
}
1877
if (!defined('PR_MAPPING_SIGNATURE')) {
1878
	define('PR_MAPPING_SIGNATURE', 0x0FF80102);
1879
}
1880
if (!defined('PR_RECORD_KEY')) {
1881
	define('PR_RECORD_KEY', 0x0FF90102);
1882
}
1883
if (!defined('PR_STORE_RECORD_KEY')) {
1884
	define('PR_STORE_RECORD_KEY', 0x0FFA0102);
1885
}
1886
if (!defined('PR_STORE_ENTRYID')) {
1887
	define('PR_STORE_ENTRYID', 0x0FFB0102);
1888
}
1889
if (!defined('PR_MINI_ICON')) {
1890
	define('PR_MINI_ICON', 0x0FFC0102);
1891
}
1892
if (!defined('PR_ICON')) {
1893
	define('PR_ICON', 0x0FFD0102);
1894
}
1895
if (!defined('PR_OBJECT_TYPE')) {
1896
	define('PR_OBJECT_TYPE', 0x0FFE0003);
1897
}
1898
if (!defined('PR_ENTRYID')) {
1899
	define('PR_ENTRYID', 0x0FFF0102);
1900
}
1901
if (!defined('PR_BODY')) {
1902
	define('PR_BODY', 0x1000001E);
1903
}
1904
if (!defined('PR_BODY_A')) {
1905
	define('PR_BODY_A', 0x1000001E);
1906
}
1907
if (!defined('PR_BODY_W')) {
1908
	define('PR_BODY_W', 0x1000001E);
1909
}
1910
if (!defined('PR_REPORT_TEXT')) {
1911
	define('PR_REPORT_TEXT', 0x1001001E);
1912
}
1913
if (!defined('PR_ORIGINATOR_AND_DL_EXPANSION_HISTORY')) {
1914
	define('PR_ORIGINATOR_AND_DL_EXPANSION_HISTORY', 0x10020102);
1915
}
1916
if (!defined('PR_REPORTING_DL_NAME')) {
1917
	define('PR_REPORTING_DL_NAME', 0x10030102);
1918
}
1919
if (!defined('PR_REPORTING_MTA_CERTIFICATE')) {
1920
	define('PR_REPORTING_MTA_CERTIFICATE', 0x10040102);
1921
}
1922
if (!defined('PR_RTF_SYNC_BODY_CRC')) {
1923
	define('PR_RTF_SYNC_BODY_CRC', 0x10060003);
1924
}
1925
if (!defined('PR_RTF_SYNC_BODY_COUNT')) {
1926
	define('PR_RTF_SYNC_BODY_COUNT', 0x10070003);
1927
}
1928
if (!defined('PR_RTF_SYNC_BODY_TAG')) {
1929
	define('PR_RTF_SYNC_BODY_TAG', 0x1008001E);
1930
}
1931
if (!defined('PR_RTF_COMPRESSED')) {
1932
	define('PR_RTF_COMPRESSED', 0x10090102);
1933
}
1934
if (!defined('PR_RTF_SYNC_PREFIX_COUNT')) {
1935
	define('PR_RTF_SYNC_PREFIX_COUNT', 0x10100003);
1936
}
1937
if (!defined('PR_RTF_SYNC_TRAILING_COUNT')) {
1938
	define('PR_RTF_SYNC_TRAILING_COUNT', 0x10110003);
1939
}
1940
if (!defined('PR_ORIGINALLY_INTENDED_RECIP_ENTRYID')) {
1941
	define('PR_ORIGINALLY_INTENDED_RECIP_ENTRYID', 0x10120102);
1942
}
1943
if (!defined('PR_BODY_HTML')) {
1944
	define('PR_BODY_HTML', 0x1013001E);
1945
}
1946
if (!defined('PR_BODY_HTML_A')) {
1947
	define('PR_BODY_HTML_A', 0x1013001E);
1948
}
1949
if (!defined('PR_HTML')) {
1950
	define('PR_HTML', 0x10130102);
1951
}
1952
if (!defined('PR_BODY_CONTENT_LOCATION')) {
1953
	define('PR_BODY_CONTENT_LOCATION', 0x1014001E);
1954
}
1955
if (!defined('PR_BODY_CONTENT_LOCATION_A')) {
1956
	define('PR_BODY_CONTENT_LOCATION_A', 0x1014001E);
1957
}
1958
if (!defined('PR_BODY_CONTENT_ID')) {
1959
	define('PR_BODY_CONTENT_ID', 0x1015001E);
1960
}
1961
if (!defined('PR_BODY_CONTENT_ID_A')) {
1962
	define('PR_BODY_CONTENT_ID_A', 0x1015001E);
1963
}
1964
if (!defined('PR_NATIVE_BODY_INFO')) {
1965
	define('PR_NATIVE_BODY_INFO', 0x10160003);
1966
}
1967
if (!defined('PR_INTERNET_APPROVED')) {
1968
	define('PR_INTERNET_APPROVED', 0x1030001E);
1969
}
1970
if (!defined('PR_INTERNET_CONTROL')) {
1971
	define('PR_INTERNET_CONTROL', 0x1031001E);
1972
}
1973
if (!defined('PR_INTERNET_DISTRIBUTION')) {
1974
	define('PR_INTERNET_DISTRIBUTION', 0x1032001E);
1975
}
1976
if (!defined('PR_INTERNET_FOLLOWUP_TO')) {
1977
	define('PR_INTERNET_FOLLOWUP_TO', 0x1033001E);
1978
}
1979
if (!defined('PR_INTERNET_LINES')) {
1980
	define('PR_INTERNET_LINES', 0x10340003);
1981
}
1982
if (!defined('PR_INTERNET_MESSAGE_ID')) {
1983
	define('PR_INTERNET_MESSAGE_ID', 0x1035001E);
1984
}
1985
if (!defined('PR_INTERNET_MESSAGE_ID_A')) {
1986
	define('PR_INTERNET_MESSAGE_ID_A', 0x1035001E);
1987
}
1988
if (!defined('PR_INTERNET_NEWSGROUPS')) {
1989
	define('PR_INTERNET_NEWSGROUPS', 0x1036001E);
1990
}
1991
if (!defined('PR_INTERNET_ORGANIZATION')) {
1992
	define('PR_INTERNET_ORGANIZATION', 0x1037001E);
1993
}
1994
if (!defined('PR_INTERNET_NNTP_PATH')) {
1995
	define('PR_INTERNET_NNTP_PATH', 0x1038001E);
1996
}
1997
if (!defined('PR_INTERNET_REFERENCES')) {
1998
	define('PR_INTERNET_REFERENCES', 0x1039001E);
1999
}
2000
if (!defined('PR_INTERNET_REFERENCES_A')) {
2001
	define('PR_INTERNET_REFERENCES_A', 0x1039001E);
2002
}
2003
if (!defined('PR_SUPERSEDES')) {
2004
	define('PR_SUPERSEDES', 0x103A001E);
2005
}
2006
if (!defined('PR_POST_FOLDER_ENTRIES')) {
2007
	define('PR_POST_FOLDER_ENTRIES', 0x103B0102);
2008
}
2009
if (!defined('PR_POST_FOLDER_NAMES')) {
2010
	define('PR_POST_FOLDER_NAMES', 0x103C001E);
2011
}
2012
if (!defined('PR_POST_REPLY_FOLDER_ENTRIES')) {
2013
	define('PR_POST_REPLY_FOLDER_ENTRIES', 0x103D0102);
2014
}
2015
if (!defined('PR_POST_REPLY_FOLDER_NAMES')) {
2016
	define('PR_POST_REPLY_FOLDER_NAMES', 0x103E001E);
2017
}
2018
if (!defined('PR_POST_REPLY_DENIED')) {
2019
	define('PR_POST_REPLY_DENIED', 0x103F0102);
2020
}
2021
if (!defined('PR_NNTP_XREF')) {
2022
	define('PR_NNTP_XREF', 0x1040001E);
2023
}
2024
if (!defined('PR_INTERNET_PRECEDENCE')) {
2025
	define('PR_INTERNET_PRECEDENCE', 0x1041001E);
2026
}
2027
if (!defined('PR_IN_REPLY_TO_ID')) {
2028
	define('PR_IN_REPLY_TO_ID', 0x1042001E);
2029
}
2030
if (!defined('PR_IN_REPLY_TO_ID_A')) {
2031
	define('PR_IN_REPLY_TO_ID_A', 0x1042001E);
2032
}
2033
if (!defined('PR_LIST_HELP')) {
2034
	define('PR_LIST_HELP', 0x1043001E);
2035
}
2036
if (!defined('PR_LIST_HELP_A')) {
2037
	define('PR_LIST_HELP_A', 0x1043001E);
2038
}
2039
if (!defined('PR_LIST_SUBSCRIBE')) {
2040
	define('PR_LIST_SUBSCRIBE', 0x1044001E);
2041
}
2042
if (!defined('PR_LIST_SUBSCRIBE_A')) {
2043
	define('PR_LIST_SUBSCRIBE_A', 0x1044001E);
2044
}
2045
if (!defined('PR_LIST_UNSUBSCRIBE')) {
2046
	define('PR_LIST_UNSUBSCRIBE', 0x1045001E);
2047
}
2048
if (!defined('PR_LIST_UNSUBSCRIBE_A')) {
2049
	define('PR_LIST_UNSUBSCRIBE_A', 0x1045001E);
2050
}
2051
if (!defined('PR_INTERNET_RETURN_PATH')) {
2052
	define('PR_INTERNET_RETURN_PATH', 0x1046001E);
2053
}
2054
if (!defined('PR_ICON_INDEX')) {
2055
	define('PR_ICON_INDEX', 0x10800003);
2056
}
2057
if (!defined('PR_LAST_VERB_EXECUTED')) {
2058
	define('PR_LAST_VERB_EXECUTED', 0x10810003);
2059
}
2060
if (!defined('PR_LAST_VERB_EXECUTION_TIME')) {
2061
	define('PR_LAST_VERB_EXECUTION_TIME', 0x10820040);
2062
}
2063
if (!defined('PR_FLAG_STATUS')) {
2064
	define('PR_FLAG_STATUS', 0x10900003);
2065
}
2066
if (!defined('PR_FLAG_COMPLETE_TIME')) {
2067
	define('PR_FLAG_COMPLETE_TIME', 0x10910040);
2068
}
2069
if (!defined('PR_FOLLOWUP_ICON')) {
2070
	define('PR_FOLLOWUP_ICON', 0x10950003);
2071
}
2072
if (!defined('PR_BLOCK_STATUS')) {
2073
	define('PR_BLOCK_STATUS', 0x10960003);
2074
}
2075
if (!defined('PR_ITEM_TMPFLAGS')) {
2076
	define('PR_ITEM_TMPFLAGS', 0x10970003);
2077
}
2078
if (!defined('PR_CONFLICT_ITEMS')) {
2079
	define('PR_CONFLICT_ITEMS', 0x10981102);
2080
}
2081
if (!defined('PR_CDO_RECURRENCEID')) {
2082
	define('PR_CDO_RECURRENCEID', 0x10C50040);
2083
}
2084
if (!defined('PR_ATTR_HIDDEN')) {
2085
	define('PR_ATTR_HIDDEN', 0x10F4000B);
2086
}
2087
if (!defined('PR_ATTR_HIDDEN_GROMOX')) {
2088
	define('PR_ATTR_HIDDEN_GROMOX', 0x10F40003);
2089
}
2090
if (!defined('PR_ATTR_SYSTEM')) {
2091
	define('PR_ATTR_SYSTEM', 0x10F5000B);
2092
}
2093
if (!defined('PR_ATTR_READONLY')) {
2094
	define('PR_ATTR_READONLY', 0x10F6000B);
2095
}
2096
if (!defined('PR_ROWID')) {
2097
	define('PR_ROWID', 0x30000003);
2098
}
2099
if (!defined('PR_DISPLAY_NAME')) {
2100
	define('PR_DISPLAY_NAME', 0x3001001E);
2101
}
2102
if (!defined('PR_DISPLAY_NAME_A')) {
2103
	define('PR_DISPLAY_NAME_A', 0x3001001E);
2104
}
2105
if (!defined('PR_ADDRTYPE')) {
2106
	define('PR_ADDRTYPE', 0x3002001E);
2107
}
2108
if (!defined('PR_ADDRTYPE_A')) {
2109
	define('PR_ADDRTYPE_A', 0x3002001E);
2110
}
2111
if (!defined('PR_EMAIL_ADDRESS')) {
2112
	define('PR_EMAIL_ADDRESS', 0x3003001E);
2113
}
2114
if (!defined('PR_EMAIL_ADDRESS_A')) {
2115
	define('PR_EMAIL_ADDRESS_A', 0x3003001E);
2116
}
2117
if (!defined('PR_COMMENT')) {
2118
	define('PR_COMMENT', 0x3004001E);
2119
}
2120
if (!defined('PR_DEPTH')) {
2121
	define('PR_DEPTH', 0x30050003);
2122
}
2123
if (!defined('PR_PROVIDER_DISPLAY')) {
2124
	define('PR_PROVIDER_DISPLAY', 0x3006001E);
2125
}
2126
if (!defined('PR_CREATION_TIME')) {
2127
	define('PR_CREATION_TIME', 0x30070040);
2128
}
2129
if (!defined('PR_LAST_MODIFICATION_TIME')) {
2130
	define('PR_LAST_MODIFICATION_TIME', 0x30080040);
2131
}
2132
if (!defined('PR_RESOURCE_FLAGS')) {
2133
	define('PR_RESOURCE_FLAGS', 0x30090003);
2134
}
2135
if (!defined('PR_PROVIDER_DLL_NAME')) {
2136
	define('PR_PROVIDER_DLL_NAME', 0x300A001E);
2137
}
2138
if (!defined('PR_SEARCH_KEY')) {
2139
	define('PR_SEARCH_KEY', 0x300B0102);
2140
}
2141
if (!defined('PR_PROVIDER_UID')) {
2142
	define('PR_PROVIDER_UID', 0x300C0102);
2143
}
2144
if (!defined('PR_PROVIDER_ORDINAL')) {
2145
	define('PR_PROVIDER_ORDINAL', 0x300D0003);
2146
}
2147
if (!defined('PR_TARGET_ENTRYID')) {
2148
	define('PR_TARGET_ENTRYID', 0x30100102);
2149
}
2150
if (!defined('PR_CONVERSATION_ID')) {
2151
	define('PR_CONVERSATION_ID', 0x30130102);
2152
}
2153
if (!defined('PR_CONVERSATION_INDEX_TRACKING')) {
2154
	define('PR_CONVERSATION_INDEX_TRACKING', 0x3016000B);
2155
}
2156
if (!defined('PR_ARCHIVE_TAG')) {
2157
	define('PR_ARCHIVE_TAG', 0x30180102);
2158
}
2159
if (!defined('PR_POLICY_TAG')) {
2160
	define('PR_POLICY_TAG', 0x30190102);
2161
}
2162
if (!defined('PR_RETENTION_PERIOD')) {
2163
	define('PR_RETENTION_PERIOD', 0x301A0003);
2164
}
2165
if (!defined('PR_START_DATE_ETC')) {
2166
	define('PR_START_DATE_ETC', 0x301B0102);
2167
}
2168
if (!defined('PR_RETENTION_DATE')) {
2169
	define('PR_RETENTION_DATE', 0x301C0040);
2170
}
2171
if (!defined('PR_RETENTION_FLAGS')) {
2172
	define('PR_RETENTION_FLAGS', 0x301D0003);
2173
}
2174
if (!defined('PR_ARCHIVE_PERIOD')) {
2175
	define('PR_ARCHIVE_PERIOD', 0x301E0003);
2176
}
2177
if (!defined('PR_ARCHIVE_DATE')) {
2178
	define('PR_ARCHIVE_DATE', 0x301F0040);
2179
}
2180
if (!defined('PR_SORT_POSITION')) {
2181
	define('PR_SORT_POSITION', 0x30200102);
2182
}
2183
if (!defined('PR_SORT_PARENTID')) {
2184
	define('PR_SORT_PARENTID', 0x30210102);
2185
}
2186
if (!defined('PR_FORM_VERSION')) {
2187
	define('PR_FORM_VERSION', 0x3301001E);
2188
}
2189
if (!defined('PR_FORM_CLSID')) {
2190
	define('PR_FORM_CLSID', 0x33020048);
2191
}
2192
if (!defined('PR_FORM_CONTACT_NAME')) {
2193
	define('PR_FORM_CONTACT_NAME', 0x3303001E);
2194
}
2195
if (!defined('PR_FORM_CATEGORY')) {
2196
	define('PR_FORM_CATEGORY', 0x3304001E);
2197
}
2198
if (!defined('PR_FORM_CATEGORY_SUB')) {
2199
	define('PR_FORM_CATEGORY_SUB', 0x3305001E);
2200
}
2201
if (!defined('PR_FORM_HOST_MAP')) {
2202
	define('PR_FORM_HOST_MAP', 0x33061003);
2203
}
2204
if (!defined('PR_FORM_HIDDEN')) {
2205
	define('PR_FORM_HIDDEN', 0x3307000B);
2206
}
2207
if (!defined('PR_FORM_DESIGNER_NAME')) {
2208
	define('PR_FORM_DESIGNER_NAME', 0x3308001E);
2209
}
2210
if (!defined('PR_FORM_DESIGNER_GUID')) {
2211
	define('PR_FORM_DESIGNER_GUID', 0x33090048);
2212
}
2213
if (!defined('PR_FORM_MESSAGE_BEHAVIOR')) {
2214
	define('PR_FORM_MESSAGE_BEHAVIOR', 0x330A0003);
2215
}
2216
if (!defined('PR_DEFAULT_STORE')) {
2217
	define('PR_DEFAULT_STORE', 0x3400000B);
2218
}
2219
if (!defined('PR_STORE_SUPPORT_MASK')) {
2220
	define('PR_STORE_SUPPORT_MASK', 0x340D0003);
2221
}
2222
if (!defined('PR_STORE_STATE')) {
2223
	define('PR_STORE_STATE', 0x340E0003);
2224
}
2225
if (!defined('PR_STORE_UNICODE_MASK')) {
2226
	define('PR_STORE_UNICODE_MASK', 0x340F0003);
2227
}
2228
if (!defined('PR_IPM_SUBTREE_SEARCH_KEY')) {
2229
	define('PR_IPM_SUBTREE_SEARCH_KEY', 0x34100102);
2230
}
2231
if (!defined('PR_IPM_OUTBOX_SEARCH_KEY')) {
2232
	define('PR_IPM_OUTBOX_SEARCH_KEY', 0x34110102);
2233
}
2234
if (!defined('PR_IPM_WASTEBASKET_SEARCH_KEY')) {
2235
	define('PR_IPM_WASTEBASKET_SEARCH_KEY', 0x34120102);
2236
}
2237
if (!defined('PR_IPM_SENTMAIL_SEARCH_KEY')) {
2238
	define('PR_IPM_SENTMAIL_SEARCH_KEY', 0x34130102);
2239
}
2240
if (!defined('PR_MDB_PROVIDER')) {
2241
	define('PR_MDB_PROVIDER', 0x34140102);
2242
}
2243
if (!defined('PR_RECEIVE_FOLDER_SETTINGS')) {
2244
	define('PR_RECEIVE_FOLDER_SETTINGS', 0x3415000D);
2245
}
2246
if (!defined('PR_QUOTA_WARNING')) {
2247
	define('PR_QUOTA_WARNING', 0x34180003);
2248
}
2249
if (!defined('PR_QUOTA_SEND')) {
2250
	define('PR_QUOTA_SEND', 0x34190003);
2251
}
2252
if (!defined('PR_QUOTA_RECEIVE')) {
2253
	define('PR_QUOTA_RECEIVE', 0x341A0003);
2254
}
2255
if (!defined('PR_ROOT_ENTRYID')) {
2256
	define('PR_ROOT_ENTRYID', 0x35D80102);
2257
}
2258
if (!defined('PR_VALID_FOLDER_MASK')) {
2259
	define('PR_VALID_FOLDER_MASK', 0x35DF0003);
2260
}
2261
if (!defined('PR_IPM_SUBTREE_ENTRYID')) {
2262
	define('PR_IPM_SUBTREE_ENTRYID', 0x35E00102);
2263
}
2264
if (!defined('PR_IPM_INBOX_ENTRYID')) {
2265
	define('PR_IPM_INBOX_ENTRYID', 0x35E10102);
2266
}
2267
if (!defined('PR_IPM_OUTBOX_ENTRYID')) {
2268
	define('PR_IPM_OUTBOX_ENTRYID', 0x35E20102);
2269
}
2270
if (!defined('PR_IPM_WASTEBASKET_ENTRYID')) {
2271
	define('PR_IPM_WASTEBASKET_ENTRYID', 0x35E30102);
2272
}
2273
if (!defined('PR_IPM_SENTMAIL_ENTRYID')) {
2274
	define('PR_IPM_SENTMAIL_ENTRYID', 0x35E40102);
2275
}
2276
if (!defined('PR_VIEWS_ENTRYID')) {
2277
	define('PR_VIEWS_ENTRYID', 0x35E50102);
2278
}
2279
if (!defined('PR_COMMON_VIEWS_ENTRYID')) {
2280
	define('PR_COMMON_VIEWS_ENTRYID', 0x35E60102);
2281
}
2282
if (!defined('PR_FINDER_ENTRYID')) {
2283
	define('PR_FINDER_ENTRYID', 0x35E70102);
2284
}
2285
if (!defined('PR_SYNC_ROOT_ENTRYID')) {
2286
	define('PR_SYNC_ROOT_ENTRYID', 0x35EA0102);
2287
}
2288
if (!defined('PR_VOICEMAIL_FOLDER_ENTRYID')) {
2289
	define('PR_VOICEMAIL_FOLDER_ENTRYID', 0x35EB0102);
2290
}
2291
if (!defined('PR_CONTAINER_FLAGS')) {
2292
	define('PR_CONTAINER_FLAGS', 0x36000003);
2293
}
2294
if (!defined('PR_FOLDER_TYPE')) {
2295
	define('PR_FOLDER_TYPE', 0x36010003);
2296
}
2297
if (!defined('PR_CONTENT_COUNT')) {
2298
	define('PR_CONTENT_COUNT', 0x36020003);
2299
}
2300
if (!defined('PR_CONTENT_UNREAD')) {
2301
	define('PR_CONTENT_UNREAD', 0x36030003);
2302
}
2303
if (!defined('PR_CREATE_TEMPLATES')) {
2304
	define('PR_CREATE_TEMPLATES', 0x3604000D);
2305
}
2306
if (!defined('PR_SEARCH')) {
2307
	define('PR_SEARCH', 0x3607000D);
2308
}
2309
if (!defined('PR_SELECTABLE')) {
2310
	define('PR_SELECTABLE', 0x3609000B);
2311
}
2312
if (!defined('PR_SUBFOLDERS')) {
2313
	define('PR_SUBFOLDERS', 0x360A000B);
2314
}
2315
if (!defined('PR_STATUS')) {
2316
	define('PR_STATUS', 0x360B0003);
2317
}
2318
if (!defined('PR_ANR')) {
2319
	define('PR_ANR', 0x360C001E);
2320
}
2321
if (!defined('PR_ANR_A')) {
2322
	define('PR_ANR_A', 0x360C001E);
2323
}
2324
if (!defined('PR_CONTENTS_SORT_ORDER')) {
2325
	define('PR_CONTENTS_SORT_ORDER', 0x360D1003);
2326
}
2327
if (!defined('PR_CONTAINER_HIERARCHY')) {
2328
	define('PR_CONTAINER_HIERARCHY', 0x360E000D);
2329
}
2330
if (!defined('PR_CONTAINER_CONTENTS')) {
2331
	define('PR_CONTAINER_CONTENTS', 0x360F000D);
2332
}
2333
if (!defined('PR_FOLDER_ASSOCIATED_CONTENTS')) {
2334
	define('PR_FOLDER_ASSOCIATED_CONTENTS', 0x3610000D);
2335
}
2336
if (!defined('PR_DEF_CREATE_DL')) {
2337
	define('PR_DEF_CREATE_DL', 0x36110102);
2338
}
2339
if (!defined('PR_DEF_CREATE_MAILUSER')) {
2340
	define('PR_DEF_CREATE_MAILUSER', 0x36120102);
2341
}
2342
if (!defined('PR_CONTAINER_CLASS')) {
2343
	define('PR_CONTAINER_CLASS', 0x3613001E);
2344
}
2345
if (!defined('PR_CONTAINER_MODIFY_VERSION')) {
2346
	define('PR_CONTAINER_MODIFY_VERSION', 0x36140014);
2347
}
2348
if (!defined('PR_AB_PROVIDER_ID')) {
2349
	define('PR_AB_PROVIDER_ID', 0x36150102);
2350
}
2351
if (!defined('PR_DEFAULT_VIEW_ENTRYID')) {
2352
	define('PR_DEFAULT_VIEW_ENTRYID', 0x36160102);
2353
}
2354
if (!defined('PR_ASSOC_CONTENT_COUNT')) {
2355
	define('PR_ASSOC_CONTENT_COUNT', 0x36170003);
2356
}
2357
if (!defined('PR_IPM_APPOINTMENT_ENTRYID')) {
2358
	define('PR_IPM_APPOINTMENT_ENTRYID', 0x36D00102);
2359
}
2360
if (!defined('PR_IPM_CONTACT_ENTRYID')) {
2361
	define('PR_IPM_CONTACT_ENTRYID', 0x36D10102);
2362
}
2363
if (!defined('PR_IPM_JOURNAL_ENTRYID')) {
2364
	define('PR_IPM_JOURNAL_ENTRYID', 0x36D20102);
2365
}
2366
if (!defined('PR_IPM_NOTE_ENTRYID')) {
2367
	define('PR_IPM_NOTE_ENTRYID', 0x36D30102);
2368
}
2369
if (!defined('PR_IPM_TASK_ENTRYID')) {
2370
	define('PR_IPM_TASK_ENTRYID', 0x36D40102);
2371
}
2372
if (!defined('PR_REM_ONLINE_ENTRYID')) {
2373
	define('PR_REM_ONLINE_ENTRYID', 0x36D50102);
2374
}
2375
if (!defined('PR_REM_OFFLINE_ENTRYID')) {
2376
	define('PR_REM_OFFLINE_ENTRYID', 0x36D60102);
2377
}
2378
if (!defined('PR_IPM_DRAFTS_ENTRYID')) {
2379
	define('PR_IPM_DRAFTS_ENTRYID', 0x36D70102);
2380
}
2381
if (!defined('PR_ADDITIONAL_REN_ENTRYIDS')) {
2382
	define('PR_ADDITIONAL_REN_ENTRYIDS', 0x36D81102);
2383
}
2384
if (!defined('PR_ADDITIONAL_REN_ENTRYIDS_EX')) {
2385
	define('PR_ADDITIONAL_REN_ENTRYIDS_EX', 0x36D90102);
2386
}
2387
if (!defined('PR_EXTENDED_FOLDER_FLAGS')) {
2388
	define('PR_EXTENDED_FOLDER_FLAGS', 0x36DA0102);
2389
}
2390
if (!defined('PR_NET_FOLDER_FLAGS')) {
2391
	define('PR_NET_FOLDER_FLAGS', 0x36DE0003);
2392
}
2393
if (!defined('PR_FOLDER_WEBVIEWINFO')) {
2394
	define('PR_FOLDER_WEBVIEWINFO', 0x36DF0102);
2395
}
2396
if (!defined('PR_FOLDER_XVIEWINFO_E')) {
2397
	define('PR_FOLDER_XVIEWINFO_E', 0x36E00102);
2398
}
2399
if (!defined('PR_FOLDER_VIEWS_ONLY')) {
2400
	define('PR_FOLDER_VIEWS_ONLY', 0x36E10003);
2401
}
2402
if (!defined('PR_ORDINAL_MOST')) {
2403
	define('PR_ORDINAL_MOST', 0x36E20003);
2404
}
2405
if (!defined('PR_FREEBUSY_ENTRYIDS')) {
2406
	define('PR_FREEBUSY_ENTRYIDS', 0x36E41102);
2407
}
2408
if (!defined('PR_DEF_POST_MSGCLASS')) {
2409
	define('PR_DEF_POST_MSGCLASS', 0x36E5001E);
2410
}
2411
if (!defined('PR_DEF_POST_DISPLAYNAME')) {
2412
	define('PR_DEF_POST_DISPLAYNAME', 0x36E6001E);
2413
}
2414
if (!defined('PR_GENERATE_EXCHANGE_VIEWS')) {
2415
	define('PR_GENERATE_EXCHANGE_VIEWS', 0x36E9000B);
2416
}
2417
if (!defined('PR_ATTACHMENT_X400_PARAMETERS')) {
2418
	define('PR_ATTACHMENT_X400_PARAMETERS', 0x37000102);
2419
}
2420
if (!defined('PR_ATTACH_DATA_BIN')) {
2421
	define('PR_ATTACH_DATA_BIN', 0x37010102);
2422
}
2423
if (!defined('PR_ATTACH_DATA_OBJ')) {
2424
	define('PR_ATTACH_DATA_OBJ', 0x3701000D);
2425
}
2426
if (!defined('PR_ATTACH_ENCODING')) {
2427
	define('PR_ATTACH_ENCODING', 0x37020102);
2428
}
2429
if (!defined('PR_ATTACH_EXTENSION')) {
2430
	define('PR_ATTACH_EXTENSION', 0x3703001E);
2431
}
2432
if (!defined('PR_ATTACH_EXTENSION_A')) {
2433
	define('PR_ATTACH_EXTENSION_A', 0x3703001E);
2434
}
2435
if (!defined('PR_ATTACH_FILENAME')) {
2436
	define('PR_ATTACH_FILENAME', 0x3704001E);
2437
}
2438
if (!defined('PR_ATTACH_FILENAME_A')) {
2439
	define('PR_ATTACH_FILENAME_A', 0x3704001E);
2440
}
2441
if (!defined('PR_ATTACH_METHOD')) {
2442
	define('PR_ATTACH_METHOD', 0x37050003);
2443
}
2444
if (!defined('PR_ATTACH_LONG_FILENAME')) {
2445
	define('PR_ATTACH_LONG_FILENAME', 0x3707001E);
2446
}
2447
if (!defined('PR_ATTACH_LONG_FILENAME_A')) {
2448
	define('PR_ATTACH_LONG_FILENAME_A', 0x3707001E);
2449
}
2450
if (!defined('PR_ATTACH_PATHNAME')) {
2451
	define('PR_ATTACH_PATHNAME', 0x3708001E);
2452
}
2453
if (!defined('PR_ATTACH_RENDERING')) {
2454
	define('PR_ATTACH_RENDERING', 0x37090102);
2455
}
2456
if (!defined('PR_ATTACH_TAG')) {
2457
	define('PR_ATTACH_TAG', 0x370A0102);
2458
}
2459
if (!defined('PR_RENDERING_POSITION')) {
2460
	define('PR_RENDERING_POSITION', 0x370B0003);
2461
}
2462
if (!defined('PR_ATTACH_TRANSPORT_NAME_A')) {
2463
	define('PR_ATTACH_TRANSPORT_NAME_A', 0x370C001E);
2464
}
2465
if (!defined('PR_ATTACH_TRANSPORT_NAME')) {
2466
	define('PR_ATTACH_TRANSPORT_NAME', 0x370C001E);
2467
}
2468
if (!defined('PR_ATTACH_LONG_PATHNAME')) {
2469
	define('PR_ATTACH_LONG_PATHNAME', 0x370D001E);
2470
}
2471
if (!defined('PR_ATTACH_MIME_TAG')) {
2472
	define('PR_ATTACH_MIME_TAG', 0x370E001E);
2473
}
2474
if (!defined('PR_ATTACH_ADDITIONAL_INFO')) {
2475
	define('PR_ATTACH_ADDITIONAL_INFO', 0x370F0102);
2476
}
2477
if (!defined('PR_ATTACH_CONTENT_BASE')) {
2478
	define('PR_ATTACH_CONTENT_BASE', 0x3711001E);
2479
}
2480
if (!defined('PR_ATTACH_CONTENT_BASE_A')) {
2481
	define('PR_ATTACH_CONTENT_BASE_A', 0x3711001E);
2482
}
2483
if (!defined('PR_ATTACH_CONTENT_ID')) {
2484
	define('PR_ATTACH_CONTENT_ID', 0x3712001E);
2485
}
2486
if (!defined('PR_ATTACH_CONTENT_ID_A')) {
2487
	define('PR_ATTACH_CONTENT_ID_A', 0x3712001E);
2488
}
2489
if (!defined('PR_ATTACH_CONTENT_LOCATION')) {
2490
	define('PR_ATTACH_CONTENT_LOCATION', 0x3713001E);
2491
}
2492
if (!defined('PR_ATTACH_CONTENT_LOCATION_A')) {
2493
	define('PR_ATTACH_CONTENT_LOCATION_A', 0x3713001E);
2494
}
2495
if (!defined('PR_ATTACH_FLAGS')) {
2496
	define('PR_ATTACH_FLAGS', 0x37140003);
2497
}
2498
if (!defined('PR_ATTACH_PAYLOAD_PROV_GUID_STR')) {
2499
	define('PR_ATTACH_PAYLOAD_PROV_GUID_STR', 0x3719001E);
2500
}
2501
if (!defined('PR_ATTACH_PAYLOAD_CLASS')) {
2502
	define('PR_ATTACH_PAYLOAD_CLASS', 0x371A001E);
2503
}
2504
if (!defined('PR_ATTACH_PAYLOAD_CLASS_A')) {
2505
	define('PR_ATTACH_PAYLOAD_CLASS_A', 0x371A001E);
2506
}
2507
if (!defined('PR_DISPLAY_TYPE')) {
2508
	define('PR_DISPLAY_TYPE', 0x39000003);
2509
}
2510
if (!defined('PR_TEMPLATEID')) {
2511
	define('PR_TEMPLATEID', 0x39020102);
2512
}
2513
if (!defined('PR_PRIMARY_CAPABILITY')) {
2514
	define('PR_PRIMARY_CAPABILITY', 0x39040102);
2515
}
2516
if (!defined('PR_DISPLAY_TYPE_EX')) {
2517
	define('PR_DISPLAY_TYPE_EX', 0x39050003);
2518
}
2519
if (!defined('PR_SMTP_ADDRESS')) {
2520
	define('PR_SMTP_ADDRESS', 0x39FE001E);
2521
}
2522
if (!defined('PR_SMTP_ADDRESS_A')) {
2523
	define('PR_SMTP_ADDRESS_A', 0x39FE001E);
2524
}
2525
if (!defined('PR_EMS_AB_DISPLAY_NAME_PRINTABLE')) {
2526
	define('PR_EMS_AB_DISPLAY_NAME_PRINTABLE', 0x39FF001E);
2527
}
2528
if (!defined('PR_EMS_AB_DISPLAY_NAME_PRINTABLE_A')) {
2529
	define('PR_EMS_AB_DISPLAY_NAME_PRINTABLE_A', 0x39FF001E);
2530
}
2531
if (!defined('PR_7BIT_DISPLAY_NAME')) {
2532
	define('PR_7BIT_DISPLAY_NAME', 0x39FF001E);
2533
}
2534
if (!defined('PR_ACCOUNT')) {
2535
	define('PR_ACCOUNT', 0x3A00001E);
2536
}
2537
if (!defined('PR_ACCOUNT_A')) {
2538
	define('PR_ACCOUNT_A', 0x3A00001E);
2539
}
2540
if (!defined('PR_ALTERNATE_RECIPIENT')) {
2541
	define('PR_ALTERNATE_RECIPIENT', 0x3A010102);
2542
}
2543
if (!defined('PR_CALLBACK_TELEPHONE_NUMBER')) {
2544
	define('PR_CALLBACK_TELEPHONE_NUMBER', 0x3A02001E);
2545
}
2546
if (!defined('PR_CONVERSION_PROHIBITED')) {
2547
	define('PR_CONVERSION_PROHIBITED', 0x3A03000B);
2548
}
2549
if (!defined('PR_DISCLOSE_RECIPIENTS')) {
2550
	define('PR_DISCLOSE_RECIPIENTS', 0x3A04000B);
2551
}
2552
if (!defined('PR_GENERATION')) {
2553
	define('PR_GENERATION', 0x3A05001E);
2554
}
2555
if (!defined('PR_GIVEN_NAME')) {
2556
	define('PR_GIVEN_NAME', 0x3A06001E);
2557
}
2558
if (!defined('PR_GOVERNMENT_ID_NUMBER')) {
2559
	define('PR_GOVERNMENT_ID_NUMBER', 0x3A07001E);
2560
}
2561
if (!defined('PR_BUSINESS_TELEPHONE_NUMBER')) {
2562
	define('PR_BUSINESS_TELEPHONE_NUMBER', 0x3A08001E);
2563
}
2564
if (!defined('PR_OFFICE_TELEPHONE_NUMBER')) {
2565
	define('PR_OFFICE_TELEPHONE_NUMBER', 0x3A08001E);
2566
}
2567
if (!defined('PR_HOME_TELEPHONE_NUMBER')) {
2568
	define('PR_HOME_TELEPHONE_NUMBER', 0x3A09001E);
2569
}
2570
if (!defined('PR_INITIALS')) {
2571
	define('PR_INITIALS', 0x3A0A001E);
2572
}
2573
if (!defined('PR_KEYWORD')) {
2574
	define('PR_KEYWORD', 0x3A0B001E);
2575
}
2576
if (!defined('PR_LANGUAGE')) {
2577
	define('PR_LANGUAGE', 0x3A0C001E);
2578
}
2579
if (!defined('PR_LOCATION')) {
2580
	define('PR_LOCATION', 0x3A0D001E);
2581
}
2582
if (!defined('PR_MAIL_PERMISSION')) {
2583
	define('PR_MAIL_PERMISSION', 0x3A0E000B);
2584
}
2585
if (!defined('PR_MHS_COMMON_NAME')) {
2586
	define('PR_MHS_COMMON_NAME', 0x3A0F001E);
2587
}
2588
if (!defined('PR_ORGANIZATIONAL_ID_NUMBER')) {
2589
	define('PR_ORGANIZATIONAL_ID_NUMBER', 0x3A10001E);
2590
}
2591
if (!defined('PR_SURNAME')) {
2592
	define('PR_SURNAME', 0x3A11001E);
2593
}
2594
if (!defined('PR_ORIGINAL_ENTRYID')) {
2595
	define('PR_ORIGINAL_ENTRYID', 0x3A120102);
2596
}
2597
if (!defined('PR_ORIGINAL_DISPLAY_NAME')) {
2598
	define('PR_ORIGINAL_DISPLAY_NAME', 0x3A13001E);
2599
}
2600
if (!defined('PR_ORIGINAL_SEARCH_KEY')) {
2601
	define('PR_ORIGINAL_SEARCH_KEY', 0x3A140102);
2602
}
2603
if (!defined('PR_POSTAL_ADDRESS')) {
2604
	define('PR_POSTAL_ADDRESS', 0x3A15001E);
2605
}
2606
if (!defined('PR_COMPANY_NAME')) {
2607
	define('PR_COMPANY_NAME', 0x3A16001E);
2608
}
2609
if (!defined('PR_COMPANY_NAME_A')) {
2610
	define('PR_COMPANY_NAME_A', 0x3A16001E);
2611
}
2612
if (!defined('PR_TITLE')) {
2613
	define('PR_TITLE', 0x3A17001E);
2614
}
2615
if (!defined('PR_DEPARTMENT_NAME')) {
2616
	define('PR_DEPARTMENT_NAME', 0x3A18001E);
2617
}
2618
if (!defined('PR_DEPARTMENT_NAME_A')) {
2619
	define('PR_DEPARTMENT_NAME_A', 0x3A18001E);
2620
}
2621
if (!defined('PR_OFFICE_LOCATION')) {
2622
	define('PR_OFFICE_LOCATION', 0x3A19001E);
2623
}
2624
if (!defined('PR_OFFICE_LOCATION_A')) {
2625
	define('PR_OFFICE_LOCATION_A', 0x3A19001E);
2626
}
2627
if (!defined('PR_PRIMARY_TELEPHONE_NUMBER')) {
2628
	define('PR_PRIMARY_TELEPHONE_NUMBER', 0x3A1A001E);
2629
}
2630
if (!defined('PR_PRIMARY_TELEPHONE_NUMBER_A')) {
2631
	define('PR_PRIMARY_TELEPHONE_NUMBER_A', 0x3A1A001E);
2632
}
2633
if (!defined('PR_BUSINESS2_TELEPHONE_NUMBER')) {
2634
	define('PR_BUSINESS2_TELEPHONE_NUMBER', 0x3A1B001E);
2635
}
2636
if (!defined('PR_BUSINESS2_TELEPHONE_NUMBER_MV')) {
2637
	define('PR_BUSINESS2_TELEPHONE_NUMBER_MV', 0x3A1B101E);
2638
}
2639
if (!defined('PR_OFFICE2_TELEPHONE_NUMBER')) {
2640
	define('PR_OFFICE2_TELEPHONE_NUMBER', 0x3A1B001E);
2641
}
2642
if (!defined('PR_MOBILE_TELEPHONE_NUMBER')) {
2643
	define('PR_MOBILE_TELEPHONE_NUMBER', 0x3A1C001E);
2644
}
2645
if (!defined('PR_CELLULAR_TELEPHONE_NUMBER')) {
2646
	define('PR_CELLULAR_TELEPHONE_NUMBER', 0x3A1C001E);
2647
}
2648
if (!defined('PR_RADIO_TELEPHONE_NUMBER')) {
2649
	define('PR_RADIO_TELEPHONE_NUMBER', 0x3A1D001E);
2650
}
2651
if (!defined('PR_CAR_TELEPHONE_NUMBER')) {
2652
	define('PR_CAR_TELEPHONE_NUMBER', 0x3A1E001E);
2653
}
2654
if (!defined('PR_OTHER_TELEPHONE_NUMBER')) {
2655
	define('PR_OTHER_TELEPHONE_NUMBER', 0x3A1F001E);
2656
}
2657
if (!defined('PR_TRANSMITABLE_DISPLAY_NAME')) {
2658
	define('PR_TRANSMITABLE_DISPLAY_NAME', 0x3A20001E);
2659
}
2660
if (!defined('PR_TRANSMITABLE_DISPLAY_NAME_A')) {
2661
	define('PR_TRANSMITABLE_DISPLAY_NAME_A', 0x3A20001E);
2662
}
2663
if (!defined('PR_BEEPER_TELEPHONE_NUMBER')) {
2664
	define('PR_BEEPER_TELEPHONE_NUMBER', 0x3A21001E);
2665
}
2666
if (!defined('PR_PAGER_TELEPHONE_NUMBER')) {
2667
	define('PR_PAGER_TELEPHONE_NUMBER', 0x3A21001E);
2668
}
2669
if (!defined('PR_USER_CERTIFICATE')) {
2670
	define('PR_USER_CERTIFICATE', 0x3A220102);
2671
}
2672
if (!defined('PR_PRIMARY_FAX_NUMBER')) {
2673
	define('PR_PRIMARY_FAX_NUMBER', 0x3A23001E);
2674
}
2675
if (!defined('PR_BUSINESS_FAX_NUMBER')) {
2676
	define('PR_BUSINESS_FAX_NUMBER', 0x3A24001E);
2677
}
2678
if (!defined('PR_HOME_FAX_NUMBER')) {
2679
	define('PR_HOME_FAX_NUMBER', 0x3A25001E);
2680
}
2681
if (!defined('PR_BUSINESS_ADDRESS_COUNTRY')) {
2682
	define('PR_BUSINESS_ADDRESS_COUNTRY', 0x3A26001E);
2683
}
2684
if (!defined('PR_COUNTRY')) {
2685
	define('PR_COUNTRY', 0x3A26001E);
2686
}
2687
if (!defined('PR_BUSINESS_ADDRESS_CITY')) {
2688
	define('PR_BUSINESS_ADDRESS_CITY', 0x3A27001E);
2689
}
2690
if (!defined('PR_LOCALITY')) {
2691
	define('PR_LOCALITY', 0x3A27001E);
2692
}
2693
if (!defined('PR_BUSINESS_ADDRESS_STATE_OR_PROVINCE')) {
2694
	define('PR_BUSINESS_ADDRESS_STATE_OR_PROVINCE', 0x3A28001E);
2695
}
2696
if (!defined('PR_STATE_OR_PROVINCE')) {
2697
	define('PR_STATE_OR_PROVINCE', 0x3A28001E);
2698
}
2699
if (!defined('PR_BUSINESS_ADDRESS_STREET')) {
2700
	define('PR_BUSINESS_ADDRESS_STREET', 0x3A29001E);
2701
}
2702
if (!defined('PR_STREET_ADDRESS')) {
2703
	define('PR_STREET_ADDRESS', 0x3A29001E);
2704
}
2705
if (!defined('PR_BUSINESS_ADDRESS_POSTAL_CODE')) {
2706
	define('PR_BUSINESS_ADDRESS_POSTAL_CODE', 0x3A2A001E);
2707
}
2708
if (!defined('PR_POSTAL_CODE')) {
2709
	define('PR_POSTAL_CODE', 0x3A2A001E);
2710
}
2711
if (!defined('PR_BUSINESS_ADDRESS_POST_OFFICE_BOX')) {
2712
	define('PR_BUSINESS_ADDRESS_POST_OFFICE_BOX', 0x3A2B001E);
2713
}
2714
if (!defined('PR_POST_OFFICE_BOX')) {
2715
	define('PR_POST_OFFICE_BOX', 0x3A2B001E);
2716
}
2717
if (!defined('PR_TELEX_NUMBER')) {
2718
	define('PR_TELEX_NUMBER', 0x3A2C001E);
2719
}
2720
if (!defined('PR_ISDN_NUMBER')) {
2721
	define('PR_ISDN_NUMBER', 0x3A2D001E);
2722
}
2723
if (!defined('PR_ASSISTANT_TELEPHONE_NUMBER')) {
2724
	define('PR_ASSISTANT_TELEPHONE_NUMBER', 0x3A2E001E);
2725
}
2726
if (!defined('PR_HOME2_TELEPHONE_NUMBER')) {
2727
	define('PR_HOME2_TELEPHONE_NUMBER', 0x3A2F001E);
2728
}
2729
if (!defined('PR_HOME2_TELEPHONE_NUMBER_MV')) {
2730
	define('PR_HOME2_TELEPHONE_NUMBER_MV', 0x3A2F101E);
2731
}
2732
if (!defined('PR_ASSISTANT')) {
2733
	define('PR_ASSISTANT', 0x3A30001E);
2734
}
2735
if (!defined('PR_SEND_RICH_INFO')) {
2736
	define('PR_SEND_RICH_INFO', 0x3A40000B);
2737
}
2738
if (!defined('PR_WEDDING_ANNIVERSARY')) {
2739
	define('PR_WEDDING_ANNIVERSARY', 0x3A410040);
2740
}
2741
if (!defined('PR_BIRTHDAY')) {
2742
	define('PR_BIRTHDAY', 0x3A420040);
2743
}
2744
if (!defined('PR_HOBBIES')) {
2745
	define('PR_HOBBIES', 0x3A43001E);
2746
}
2747
if (!defined('PR_MIDDLE_NAME')) {
2748
	define('PR_MIDDLE_NAME', 0x3A44001E);
2749
}
2750
if (!defined('PR_DISPLAY_NAME_PREFIX')) {
2751
	define('PR_DISPLAY_NAME_PREFIX', 0x3A45001E);
2752
}
2753
if (!defined('PR_PROFESSION')) {
2754
	define('PR_PROFESSION', 0x3A46001E);
2755
}
2756
if (!defined('PR_PREFERRED_BY_NAME')) {
2757
	define('PR_PREFERRED_BY_NAME', 0x3A47001E);
2758
}
2759
if (!defined('PR_SPOUSE_NAME')) {
2760
	define('PR_SPOUSE_NAME', 0x3A48001E);
2761
}
2762
if (!defined('PR_COMPUTER_NETWORK_NAME')) {
2763
	define('PR_COMPUTER_NETWORK_NAME', 0x3A49001E);
2764
}
2765
if (!defined('PR_CUSTOMER_ID')) {
2766
	define('PR_CUSTOMER_ID', 0x3A4A001E);
2767
}
2768
if (!defined('PR_TTYTDD_PHONE_NUMBER')) {
2769
	define('PR_TTYTDD_PHONE_NUMBER', 0x3A4B001E);
2770
}
2771
if (!defined('PR_FTP_SITE')) {
2772
	define('PR_FTP_SITE', 0x3A4C001E);
2773
}
2774
if (!defined('PR_GENDER')) {
2775
	define('PR_GENDER', 0x3A4D0002);
2776
}
2777
if (!defined('PR_MANAGER_NAME')) {
2778
	define('PR_MANAGER_NAME', 0x3A4E001E);
2779
}
2780
if (!defined('PR_NICKNAME')) {
2781
	define('PR_NICKNAME', 0x3A4F001E);
2782
}
2783
if (!defined('PR_PERSONAL_HOME_PAGE')) {
2784
	define('PR_PERSONAL_HOME_PAGE', 0x3A50001E);
2785
}
2786
if (!defined('PR_BUSINESS_HOME_PAGE')) {
2787
	define('PR_BUSINESS_HOME_PAGE', 0x3A51001E);
2788
}
2789
if (!defined('PR_CONTACT_VERSION')) {
2790
	define('PR_CONTACT_VERSION', 0x3A520048);
2791
}
2792
if (!defined('PR_CONTACT_ENTRYIDS')) {
2793
	define('PR_CONTACT_ENTRYIDS', 0x3A531102);
2794
}
2795
if (!defined('PR_CONTACT_ADDRTYPES')) {
2796
	define('PR_CONTACT_ADDRTYPES', 0x3A54101E);
2797
}
2798
if (!defined('PR_CONTACT_DEFAULT_ADDRESS_INDEX')) {
2799
	define('PR_CONTACT_DEFAULT_ADDRESS_INDEX', 0x3A550003);
2800
}
2801
if (!defined('PR_CONTACT_EMAIL_ADDRESSES')) {
2802
	define('PR_CONTACT_EMAIL_ADDRESSES', 0x3A56101E);
2803
}
2804
if (!defined('PR_COMPANY_MAIN_PHONE_NUMBER')) {
2805
	define('PR_COMPANY_MAIN_PHONE_NUMBER', 0x3A57001E);
2806
}
2807
if (!defined('PR_CHILDRENS_NAMES')) {
2808
	define('PR_CHILDRENS_NAMES', 0x3A58101E);
2809
}
2810
if (!defined('PR_HOME_ADDRESS_CITY')) {
2811
	define('PR_HOME_ADDRESS_CITY', 0x3A59001E);
2812
}
2813
if (!defined('PR_HOME_ADDRESS_COUNTRY')) {
2814
	define('PR_HOME_ADDRESS_COUNTRY', 0x3A5A001E);
2815
}
2816
if (!defined('PR_HOME_ADDRESS_POSTAL_CODE')) {
2817
	define('PR_HOME_ADDRESS_POSTAL_CODE', 0x3A5B001E);
2818
}
2819
if (!defined('PR_HOME_ADDRESS_STATE_OR_PROVINCE')) {
2820
	define('PR_HOME_ADDRESS_STATE_OR_PROVINCE', 0x3A5C001E);
2821
}
2822
if (!defined('PR_HOME_ADDRESS_STREET')) {
2823
	define('PR_HOME_ADDRESS_STREET', 0x3A5D001E);
2824
}
2825
if (!defined('PR_HOME_ADDRESS_POST_OFFICE_BOX')) {
2826
	define('PR_HOME_ADDRESS_POST_OFFICE_BOX', 0x3A5E001E);
2827
}
2828
if (!defined('PR_OTHER_ADDRESS_CITY')) {
2829
	define('PR_OTHER_ADDRESS_CITY', 0x3A5F001E);
2830
}
2831
if (!defined('PR_OTHER_ADDRESS_COUNTRY')) {
2832
	define('PR_OTHER_ADDRESS_COUNTRY', 0x3A60001E);
2833
}
2834
if (!defined('PR_OTHER_ADDRESS_POSTAL_CODE')) {
2835
	define('PR_OTHER_ADDRESS_POSTAL_CODE', 0x3A61001E);
2836
}
2837
if (!defined('PR_OTHER_ADDRESS_STATE_OR_PROVINCE')) {
2838
	define('PR_OTHER_ADDRESS_STATE_OR_PROVINCE', 0x3A62001E);
2839
}
2840
if (!defined('PR_OTHER_ADDRESS_STREET')) {
2841
	define('PR_OTHER_ADDRESS_STREET', 0x3A63001E);
2842
}
2843
if (!defined('PR_OTHER_ADDRESS_POST_OFFICE_BOX')) {
2844
	define('PR_OTHER_ADDRESS_POST_OFFICE_BOX', 0x3A64001E);
2845
}
2846
if (!defined('PR_USER_X509_CERTIFICATE')) {
2847
	define('PR_USER_X509_CERTIFICATE', 0x3A701102);
2848
}
2849
if (!defined('PR_SEND_INTERNET_ENCODING')) {
2850
	define('PR_SEND_INTERNET_ENCODING', 0x3A710003);
2851
}
2852
if (!defined('PR_STORE_PROVIDERS')) {
2853
	define('PR_STORE_PROVIDERS', 0x3D000102);
2854
}
2855
if (!defined('PR_AB_PROVIDERS')) {
2856
	define('PR_AB_PROVIDERS', 0x3D010102);
2857
}
2858
if (!defined('PR_TRANSPORT_PROVIDERS')) {
2859
	define('PR_TRANSPORT_PROVIDERS', 0x3D020102);
2860
}
2861
if (!defined('PR_DEFAULT_PROFILE')) {
2862
	define('PR_DEFAULT_PROFILE', 0x3D04000B);
2863
}
2864
if (!defined('PR_AB_SEARCH_PATH')) {
2865
	define('PR_AB_SEARCH_PATH', 0x3D051102);
2866
}
2867
if (!defined('PR_AB_DEFAULT_DIR')) {
2868
	define('PR_AB_DEFAULT_DIR', 0x3D060102);
2869
}
2870
if (!defined('PR_AB_DEFAULT_PAB')) {
2871
	define('PR_AB_DEFAULT_PAB', 0x3D070102);
2872
}
2873
if (!defined('PR_FILTERING_HOOKS')) {
2874
	define('PR_FILTERING_HOOKS', 0x3D080102);
2875
}
2876
if (!defined('PR_SERVICE_NAME')) {
2877
	define('PR_SERVICE_NAME', 0x3D09001E);
2878
}
2879
if (!defined('PR_SERVICE_DLL_NAME')) {
2880
	define('PR_SERVICE_DLL_NAME', 0x3D0A001E);
2881
}
2882
if (!defined('PR_SERVICE_ENTRY_NAME')) {
2883
	define('PR_SERVICE_ENTRY_NAME', 0x3D0B001E);
2884
}
2885
if (!defined('PR_SERVICE_UID')) {
2886
	define('PR_SERVICE_UID', 0x3D0C0102);
2887
}
2888
if (!defined('PR_SERVICE_EXTRA_UIDS')) {
2889
	define('PR_SERVICE_EXTRA_UIDS', 0x3D0D0102);
2890
}
2891
if (!defined('PR_SERVICES')) {
2892
	define('PR_SERVICES', 0x3D0E0102);
2893
}
2894
if (!defined('PR_SERVICE_SUPPORT_FILES')) {
2895
	define('PR_SERVICE_SUPPORT_FILES', 0x3D0F101E);
2896
}
2897
if (!defined('PR_SERVICE_DELETE_FILES')) {
2898
	define('PR_SERVICE_DELETE_FILES', 0x3D10101E);
2899
}
2900
if (!defined('PR_AB_SEARCH_PATH_UPDATE')) {
2901
	define('PR_AB_SEARCH_PATH_UPDATE', 0x3D110102);
2902
}
2903
if (!defined('PR_PROFILE_NAME')) {
2904
	define('PR_PROFILE_NAME', 0x3D12001E);
2905
}
2906
if (!defined('PR_EMSMDB_SECTION_UID')) {
2907
	define('PR_EMSMDB_SECTION_UID', 0x3D150102);
2908
}
2909
if (!defined('PR_EMSMDB_LEGACY')) {
2910
	define('PR_EMSMDB_LEGACY', 0x3D18000B);
2911
}
2912
if (!defined('PR_EMSABP_USER_UID')) {
2913
	define('PR_EMSABP_USER_UID', 0x3D1A0102);
2914
}
2915
if (!defined('PR_AB_CHOOSE_DIRECTORY_AUTOMATICALLY')) {
2916
	define('PR_AB_CHOOSE_DIRECTORY_AUTOMATICALLY', 0x3D1C000B);
2917
}
2918
if (!defined('PR_IDENTITY_DISPLAY')) {
2919
	define('PR_IDENTITY_DISPLAY', 0x3E00001E);
2920
}
2921
if (!defined('PR_IDENTITY_ENTRYID')) {
2922
	define('PR_IDENTITY_ENTRYID', 0x3E010102);
2923
}
2924
if (!defined('PR_RESOURCE_METHODS')) {
2925
	define('PR_RESOURCE_METHODS', 0x3E020003);
2926
}
2927
if (!defined('PR_RESOURCE_TYPE')) {
2928
	define('PR_RESOURCE_TYPE', 0x3E030003);
2929
}
2930
if (!defined('PR_STATUS_CODE')) {
2931
	define('PR_STATUS_CODE', 0x3E040003);
2932
}
2933
if (!defined('PR_IDENTITY_SEARCH_KEY')) {
2934
	define('PR_IDENTITY_SEARCH_KEY', 0x3E050102);
2935
}
2936
if (!defined('PR_OWN_STORE_ENTRYID')) {
2937
	define('PR_OWN_STORE_ENTRYID', 0x3E060102);
2938
}
2939
if (!defined('PR_RESOURCE_PATH')) {
2940
	define('PR_RESOURCE_PATH', 0x3E07001E);
2941
}
2942
if (!defined('PR_STATUS_STRING')) {
2943
	define('PR_STATUS_STRING', 0x3E08001E);
2944
}
2945
if (!defined('PR_X400_DEFERRED_DELIVERY_CANCEL')) {
2946
	define('PR_X400_DEFERRED_DELIVERY_CANCEL', 0x3E09000B);
2947
}
2948
if (!defined('PR_HEADER_FOLDER_ENTRYID')) {
2949
	define('PR_HEADER_FOLDER_ENTRYID', 0x3E0A0102);
2950
}
2951
if (!defined('PR_REMOTE_PROGRESS')) {
2952
	define('PR_REMOTE_PROGRESS', 0x3E0B0003);
2953
}
2954
if (!defined('PR_REMOTE_PROGRESS_TEXT')) {
2955
	define('PR_REMOTE_PROGRESS_TEXT', 0x3E0C001E);
2956
}
2957
if (!defined('PR_REMOTE_VALIDATE_OK')) {
2958
	define('PR_REMOTE_VALIDATE_OK', 0x3E0D000B);
2959
}
2960
if (!defined('PR_CONTROL_FLAGS')) {
2961
	define('PR_CONTROL_FLAGS', 0x3F000003);
2962
}
2963
if (!defined('PR_CONTROL_STRUCTURE')) {
2964
	define('PR_CONTROL_STRUCTURE', 0x3F010102);
2965
}
2966
if (!defined('PR_CONTROL_TYPE')) {
2967
	define('PR_CONTROL_TYPE', 0x3F020003);
2968
}
2969
if (!defined('PR_DELTAX')) {
2970
	define('PR_DELTAX', 0x3F030003);
2971
}
2972
if (!defined('PR_DELTAY')) {
2973
	define('PR_DELTAY', 0x3F040003);
2974
}
2975
if (!defined('PR_XPOS')) {
2976
	define('PR_XPOS', 0x3F050003);
2977
}
2978
if (!defined('PR_YPOS')) {
2979
	define('PR_YPOS', 0x3F060003);
2980
}
2981
if (!defined('PR_CONTROL_ID')) {
2982
	define('PR_CONTROL_ID', 0x3F070102);
2983
}
2984
if (!defined('PR_INITIAL_DETAILS_PANE')) {
2985
	define('PR_INITIAL_DETAILS_PANE', 0x3F080003);
2986
}
2987
if (!defined('PR_PREVIEW_UNREAD')) {
2988
	define('PR_PREVIEW_UNREAD', 0x3FD8001E);
2989
}
2990
if (!defined('PR_PREVIEW')) {
2991
	define('PR_PREVIEW', 0x3FD9001E);
2992
}
2993
if (!defined('PR_INTERNET_CPID')) {
2994
	define('PR_INTERNET_CPID', 0x3FDE0003);
2995
}
2996
if (!defined('PR_AUTO_RESPONSE_SUPPRESS')) {
2997
	define('PR_AUTO_RESPONSE_SUPPRESS', 0x3FDF0003);
2998
}
2999
if (!defined('PR_ACL_DATA')) {
3000
	define('PR_ACL_DATA', 0x3FE00102);
3001
}
3002
if (!defined('PR_ACL_TABLE')) {
3003
	define('PR_ACL_TABLE', 0x3FE0000D);
3004
}
3005
if (!defined('PR_RULES_DATA')) {
3006
	define('PR_RULES_DATA', 0x3FE10102);
3007
}
3008
if (!defined('PR_RULES_TABLE')) {
3009
	define('PR_RULES_TABLE', 0x3FE1000D);
3010
}
3011
if (!defined('PR_DELEGATED_BY_RULE')) {
3012
	define('PR_DELEGATED_BY_RULE', 0x3FE3000B);
3013
}
3014
if (!defined('PR_RESOLVE_METHOD')) {
3015
	define('PR_RESOLVE_METHOD', 0x3FE70003);
3016
}
3017
if (!defined('PR_HAS_DAMS')) {
3018
	define('PR_HAS_DAMS', 0x3FEA000B);
3019
}
3020
if (!defined('PR_DEFERRED_SEND_NUMBER')) {
3021
	define('PR_DEFERRED_SEND_NUMBER', 0x3FEB0003);
3022
}
3023
if (!defined('PR_DEFERRED_SEND_UNITS')) {
3024
	define('PR_DEFERRED_SEND_UNITS', 0x3FEC0003);
3025
}
3026
if (!defined('PR_EXPIRY_NUMBER')) {
3027
	define('PR_EXPIRY_NUMBER', 0x3FED0003);
3028
}
3029
if (!defined('PR_EXPIRY_UNITS')) {
3030
	define('PR_EXPIRY_UNITS', 0x3FEE0003);
3031
}
3032
if (!defined('PR_DEFERRED_SEND_TIME')) {
3033
	define('PR_DEFERRED_SEND_TIME', 0x3FEF0040);
3034
}
3035
if (!defined('PR_CONFLICT_ENTRYID')) {
3036
	define('PR_CONFLICT_ENTRYID', 0x3FF00102);
3037
}
3038
if (!defined('PR_MESSAGE_LOCALE_ID')) {
3039
	define('PR_MESSAGE_LOCALE_ID', 0x3FF10003);
3040
}
3041
if (!defined('PR_STORAGE_QUOTA_LIMIT')) {
3042
	define('PR_STORAGE_QUOTA_LIMIT', 0x3FF50003);
3043
}
3044
if (!defined('PR_CREATOR_NAME')) {
3045
	define('PR_CREATOR_NAME', 0x3FF8001E);
3046
}
3047
if (!defined('PR_CREATOR_ENTRYID')) {
3048
	define('PR_CREATOR_ENTRYID', 0x3FF90102);
3049
}
3050
if (!defined('PR_LAST_MODIFIER_NAME')) {
3051
	define('PR_LAST_MODIFIER_NAME', 0x3FFA001E);
3052
}
3053
if (!defined('PR_LAST_MODIFIER_ENTRYID')) {
3054
	define('PR_LAST_MODIFIER_ENTRYID', 0x3FFB0102);
3055
}
3056
if (!defined('PR_MESSAGE_CODEPAGE')) {
3057
	define('PR_MESSAGE_CODEPAGE', 0x3FFD0003);
3058
}
3059
if (!defined('PR_SENT_REPRESENTING_FLAGS')) {
3060
	define('PR_SENT_REPRESENTING_FLAGS', 0x401A0003);
3061
}
3062
if (!defined('PR_CONTENT_FILTER_SCL')) {
3063
	define('PR_CONTENT_FILTER_SCL', 0x40760003);
3064
}
3065
if (!defined('PR_SENDER_ID_STATUS')) {
3066
	define('PR_SENDER_ID_STATUS', 0x40790003);
3067
}
3068
if (!defined('PR_HIER_REV')) {
3069
	define('PR_HIER_REV', 0x40820040);
3070
}
3071
if (!defined('PR_PURPORTED_SENDER_DOMAIN')) {
3072
	define('PR_PURPORTED_SENDER_DOMAIN', 0x4083001E);
3073
}
3074
if (!defined('PR_PURPORTED_SENDER_DOMAIN_A')) {
3075
	define('PR_PURPORTED_SENDER_DOMAIN_A', 0x4083001E);
3076
}
3077
if (!defined('PR_INETMAIL_OVERRIDE_FORMAT')) {
3078
	define('PR_INETMAIL_OVERRIDE_FORMAT', 0x59020003);
3079
}
3080
if (!defined('PR_MSG_EDITOR_FORMAT')) {
3081
	define('PR_MSG_EDITOR_FORMAT', 0x59090003);
3082
}
3083
if (!defined('PR_SENDER_SMTP_ADDRESS')) {
3084
	define('PR_SENDER_SMTP_ADDRESS', 0x5D01001E);
3085
}
3086
if (!defined('PR_SENT_REPRESENTING_SMTP_ADDRESS')) {
3087
	define('PR_SENT_REPRESENTING_SMTP_ADDRESS', 0x5D02001E);
3088
}
3089
if (!defined('PR_RECIPIENT_ORDER')) {
3090
	define('PR_RECIPIENT_ORDER', 0x5FDF0003);
3091
}
3092
if (!defined('PR_RECIPIENT_PROPOSED')) {
3093
	define('PR_RECIPIENT_PROPOSED', 0x5FE1000B);
3094
}
3095
if (!defined('PR_RECIPIENT_PROPOSEDSTARTTIME')) {
3096
	define('PR_RECIPIENT_PROPOSEDSTARTTIME', 0x5FE30040);
3097
}
3098
if (!defined('PR_RECIPIENT_PROPOSEDENDTIME')) {
3099
	define('PR_RECIPIENT_PROPOSEDENDTIME', 0x5FE40040);
3100
}
3101
if (!defined('PR_RECIPIENT_DISPLAY_NAME')) {
3102
	define('PR_RECIPIENT_DISPLAY_NAME', 0x5FF6001E);
3103
}
3104
if (!defined('PR_RECIPIENT_ENTRYID')) {
3105
	define('PR_RECIPIENT_ENTRYID', 0x5FF70102);
3106
}
3107
if (!defined('PR_RECIPIENT_TRACKSTATUS_TIME')) {
3108
	define('PR_RECIPIENT_TRACKSTATUS_TIME', 0x5FFB0040);
3109
}
3110
if (!defined('PR_RECIPIENT_FLAGS')) {
3111
	define('PR_RECIPIENT_FLAGS', 0x5FFD0003);
3112
}
3113
if (!defined('PR_RECIPIENT_TRACKSTATUS')) {
3114
	define('PR_RECIPIENT_TRACKSTATUS', 0x5FFF0003);
3115
}
3116
if (!defined('PR_JUNK_INCLUDE_CONTACTS')) {
3117
	define('PR_JUNK_INCLUDE_CONTACTS', 0x61000003);
3118
}
3119
if (!defined('PR_JUNK_THRESHOLD')) {
3120
	define('PR_JUNK_THRESHOLD', 0x61010003);
3121
}
3122
if (!defined('PR_JUNK_PERMANENTLY_DELETE')) {
3123
	define('PR_JUNK_PERMANENTLY_DELETE', 0x61020003);
3124
}
3125
if (!defined('PR_JUNK_ADD_RECIPS_TO_SSL')) {
3126
	define('PR_JUNK_ADD_RECIPS_TO_SSL', 0x61030003);
3127
}
3128
if (!defined('PR_JUNK_PHISHING_ENABLE_LINKS')) {
3129
	define('PR_JUNK_PHISHING_ENABLE_LINKS', 0x6107000B);
3130
}
3131
if (!defined('PR_REPLY_TEMPLATE_ID')) {
3132
	define('PR_REPLY_TEMPLATE_ID', 0x65C20102);
3133
}
3134
if (!defined('PR_SECURE_SUBMIT_FLAGS')) {
3135
	define('PR_SECURE_SUBMIT_FLAGS', 0x65C60003);
3136
}
3137
if (!defined('PR_SOURCE_KEY')) {
3138
	define('PR_SOURCE_KEY', 0x65E00102);
3139
}
3140
if (!defined('PR_PARENT_SOURCE_KEY')) {
3141
	define('PR_PARENT_SOURCE_KEY', 0x65E10102);
3142
}
3143
if (!defined('PR_CHANGE_KEY')) {
3144
	define('PR_CHANGE_KEY', 0x65E20102);
3145
}
3146
if (!defined('PR_PREDECESSOR_CHANGE_LIST')) {
3147
	define('PR_PREDECESSOR_CHANGE_LIST', 0x65E30102);
3148
}
3149
if (!defined('PR_RULE_MSG_STATE')) {
3150
	define('PR_RULE_MSG_STATE', 0x65E90003);
3151
}
3152
if (!defined('PR_RULE_MSG_USER_FLAGS')) {
3153
	define('PR_RULE_MSG_USER_FLAGS', 0x65EA0003);
3154
}
3155
if (!defined('PR_RULE_MSG_PROVIDER')) {
3156
	define('PR_RULE_MSG_PROVIDER', 0x65EB001E);
3157
}
3158
if (!defined('PR_RULE_MSG_NAME')) {
3159
	define('PR_RULE_MSG_NAME', 0x65EC001E);
3160
}
3161
if (!defined('PR_RULE_MSG_LEVEL')) {
3162
	define('PR_RULE_MSG_LEVEL', 0x65ED0003);
3163
}
3164
if (!defined('PR_RULE_MSG_PROVIDER_DATA')) {
3165
	define('PR_RULE_MSG_PROVIDER_DATA', 0x65EE0102);
3166
}
3167
if (!defined('PR_RULE_MSG_SEQUENCE')) {
3168
	define('PR_RULE_MSG_SEQUENCE', 0x65F30003);
3169
}
3170
if (!defined('PR_PST_RECEIVE_FOLDER_NID')) {
3171
	define('PR_PST_RECEIVE_FOLDER_NID', 0x66050003);
3172
}
3173
if (!defined('PR_PROFILE_TRANSPORT_FLAGS')) {
3174
	define('PR_PROFILE_TRANSPORT_FLAGS', 0x66050003);
3175
}
3176
if (!defined('PR_USER_ENTRYID')) {
3177
	define('PR_USER_ENTRYID', 0x66190102);
3178
}
3179
if (!defined('PR_USER_NAME')) {
3180
	define('PR_USER_NAME', 0x661A001E);
3181
}
3182
if (!defined('PR_MAILBOX_OWNER_ENTRYID')) {
3183
	define('PR_MAILBOX_OWNER_ENTRYID', 0x661B0102);
3184
}
3185
if (!defined('PR_MAILBOX_OWNER_NAME')) {
3186
	define('PR_MAILBOX_OWNER_NAME', 0x661C001E);
3187
}
3188
if (!defined('PR_MAILBOX_OWNER_NAME_A')) {
3189
	define('PR_MAILBOX_OWNER_NAME_A', 0x661C001E);
3190
}
3191
if (!defined('PR_OOF_STATE')) {
3192
	define('PR_OOF_STATE', 0x661D000B);
3193
}
3194
if (!defined('PR_SCHEDULE_FOLDER_ENTRYID')) {
3195
	define('PR_SCHEDULE_FOLDER_ENTRYID', 0x661E0102);
3196
}
3197
if (!defined('PR_IPM_DAF_ENTRYID')) {
3198
	define('PR_IPM_DAF_ENTRYID', 0x661F0102);
3199
}
3200
if (!defined('PR_NON_IPM_SUBTREE_ENTRYID')) {
3201
	define('PR_NON_IPM_SUBTREE_ENTRYID', 0x66200102);
3202
}
3203
if (!defined('PR_EFORMS_REGISTRY_ENTRYID')) {
3204
	define('PR_EFORMS_REGISTRY_ENTRYID', 0x66210102);
3205
}
3206
if (!defined('PR_SPLUS_FREE_BUSY_ENTRYID')) {
3207
	define('PR_SPLUS_FREE_BUSY_ENTRYID', 0x66220102);
3208
}
3209
if (!defined('PR_OFFLINE_ADDRBOOK_ENTRYID')) {
3210
	define('PR_OFFLINE_ADDRBOOK_ENTRYID', 0x66230102);
3211
}
3212
if (!defined('PR_TEST_LINE_SPEED')) {
3213
	define('PR_TEST_LINE_SPEED', 0x662B0102);
3214
}
3215
if (!defined('PR_HIERARCHY_SYNCHRONIZER')) {
3216
	define('PR_HIERARCHY_SYNCHRONIZER', 0x662C000D);
3217
}
3218
if (!defined('PR_CONTENTS_SYNCHRONIZER')) {
3219
	define('PR_CONTENTS_SYNCHRONIZER', 0x662D000D);
3220
}
3221
if (!defined('PR_COLLECTOR')) {
3222
	define('PR_COLLECTOR', 0x662E000D);
3223
}
3224
if (!defined('PR_IPM_FAVORITES_ENTRYID')) {
3225
	define('PR_IPM_FAVORITES_ENTRYID', 0x66300102);
3226
}
3227
if (!defined('PR_IPM_PUBLIC_FOLDERS_ENTRYID')) {
3228
	define('PR_IPM_PUBLIC_FOLDERS_ENTRYID', 0x66310102);
3229
}
3230
if (!defined('PR_STORE_OFFLINE')) {
3231
	define('PR_STORE_OFFLINE', 0x6632000B);
3232
}
3233
if (!defined('PR_HIERARCHY_SERVER')) {
3234
	define('PR_HIERARCHY_SERVER', 0x6633001E);
3235
}
3236
if (!defined('PR_PST_LRNORESTRICTIONS')) {
3237
	define('PR_PST_LRNORESTRICTIONS', 0x6633000B);
3238
}
3239
if (!defined('PR_FAVORITES_DEFAULT_NAME')) {
3240
	define('PR_FAVORITES_DEFAULT_NAME', 0x6635001E);
3241
}
3242
if (!defined('PR_PROFILE_OAB_COUNT_ATTEMPTED_FULLDN')) {
3243
	define('PR_PROFILE_OAB_COUNT_ATTEMPTED_FULLDN', 0x66350003);
3244
}
3245
if (!defined('PR_PST_HIDDEN_COUNT')) {
3246
	define('PR_PST_HIDDEN_COUNT', 0x66350003);
3247
}
3248
if (!defined('PR_PROFILE_OAB_COUNT_ATTEMPTED_INCRDN')) {
3249
	define('PR_PROFILE_OAB_COUNT_ATTEMPTED_INCRDN', 0x66360003);
3250
}
3251
if (!defined('PR_PST_HIDDEN_UNREAD')) {
3252
	define('PR_PST_HIDDEN_UNREAD', 0x66360003);
3253
}
3254
if (!defined('PR_FOLDER_CHILD_COUNT')) {
3255
	define('PR_FOLDER_CHILD_COUNT', 0x66380003);
3256
}
3257
if (!defined('PR_RIGHTS')) {
3258
	define('PR_RIGHTS', 0x66390003);
3259
}
3260
if (!defined('PR_HAS_RULES')) {
3261
	define('PR_HAS_RULES', 0x663A000B);
3262
}
3263
if (!defined('PR_ADDRESS_BOOK_ENTRYID')) {
3264
	define('PR_ADDRESS_BOOK_ENTRYID', 0x663B0102);
3265
}
3266
if (!defined('PR_HIERARCHY_CHANGE_NUM')) {
3267
	define('PR_HIERARCHY_CHANGE_NUM', 0x663E0003);
3268
}
3269
if (!defined('PR_DELETED_MSG_COUNT')) {
3270
	define('PR_DELETED_MSG_COUNT', 0x66400003);
3271
}
3272
if (!defined('PR_DELETED_FOLDER_COUNT')) {
3273
	define('PR_DELETED_FOLDER_COUNT', 0x66410003);
3274
}
3275
if (!defined('PR_DELETED_ASSOC_MSG_COUNT')) {
3276
	define('PR_DELETED_ASSOC_MSG_COUNT', 0x66430003);
3277
}
3278
if (!defined('PR_REPLICA_SERVER')) {
3279
	define('PR_REPLICA_SERVER', 0x6644001E);
3280
}
3281
if (!defined('PR_CLIENT_ACTIONS')) {
3282
	define('PR_CLIENT_ACTIONS', 0x66450102);
3283
}
3284
if (!defined('PR_DAM_ORIGINAL_ENTRYID')) {
3285
	define('PR_DAM_ORIGINAL_ENTRYID', 0x66460102);
3286
}
3287
if (!defined('PR_DAM_BACK_PATCHED')) {
3288
	define('PR_DAM_BACK_PATCHED', 0x6647000B);
3289
}
3290
if (!defined('PR_RULE_ERROR')) {
3291
	define('PR_RULE_ERROR', 0x66480003);
3292
}
3293
if (!defined('PR_RULE_ACTION_TYPE')) {
3294
	define('PR_RULE_ACTION_TYPE', 0x66490003);
3295
}
3296
if (!defined('PR_HAS_NAMED_PROPERTIES')) {
3297
	define('PR_HAS_NAMED_PROPERTIES', 0x664A000B);
3298
}
3299
if (!defined('PR_RULE_ACTION_NUMBER')) {
3300
	define('PR_RULE_ACTION_NUMBER', 0x66500003);
3301
}
3302
if (!defined('PR_RULE_FOLDER_ENTRYID')) {
3303
	define('PR_RULE_FOLDER_ENTRYID', 0x66510102);
3304
}
3305
if (!defined('PR_PROHIBIT_RECEIVE_QUOTA')) {
3306
	define('PR_PROHIBIT_RECEIVE_QUOTA', 0x666A0003);
3307
}
3308
if (!defined('PR_IN_CONFLICT')) {
3309
	define('PR_IN_CONFLICT', 0x666C000B);
3310
}
3311
if (!defined('PR_MAX_SUBMIT_MESSAGE_SIZE')) {
3312
	define('PR_MAX_SUBMIT_MESSAGE_SIZE', 0x666D0003);
3313
}
3314
if (!defined('PR_PROHIBIT_SEND_QUOTA')) {
3315
	define('PR_PROHIBIT_SEND_QUOTA', 0x666E0003);
3316
}
3317
if (!defined('PR_EC_USER_LANGUAGE')) {
3318
	define('PR_EC_USER_LANGUAGE', 0x6670001E);
3319
}
3320
if (!defined('PR_EC_USER_TIMEZONE')) {
3321
	define('PR_EC_USER_TIMEZONE', 0x6671001E);
3322
}
3323
if (!defined('PR_MEMBER_ID')) {
3324
	define('PR_MEMBER_ID', 0x66710014);
3325
}
3326
if (!defined('PR_MEMBER_NAME')) {
3327
	define('PR_MEMBER_NAME', 0x6672001E);
3328
}
3329
if (!defined('PR_MEMBER_NAME_A')) {
3330
	define('PR_MEMBER_NAME_A', 0x6672001E);
3331
}
3332
if (!defined('PR_MEMBER_RIGHTS')) {
3333
	define('PR_MEMBER_RIGHTS', 0x66730003);
3334
}
3335
if (!defined('PR_RULE_ID')) {
3336
	define('PR_RULE_ID', 0x66740014);
3337
}
3338
if (!defined('PR_RULE_IDS')) {
3339
	define('PR_RULE_IDS', 0x66750102);
3340
}
3341
if (!defined('PR_RULE_SEQUENCE')) {
3342
	define('PR_RULE_SEQUENCE', 0x66760003);
3343
}
3344
if (!defined('PR_RULE_STATE')) {
3345
	define('PR_RULE_STATE', 0x66770003);
3346
}
3347
if (!defined('PR_RULE_USER_FLAGS')) {
3348
	define('PR_RULE_USER_FLAGS', 0x66780003);
3349
}
3350
if (!defined('PR_RULE_CONDITION')) {
3351
	define('PR_RULE_CONDITION', 0x667900FD);
3352
}
3353
if (!defined('PR_RULE_ACTIONS')) {
3354
	define('PR_RULE_ACTIONS', 0x668000FE);
3355
}
3356
if (!defined('PR_RULE_PROVIDER')) {
3357
	define('PR_RULE_PROVIDER', 0x6681001E);
3358
}
3359
if (!defined('PR_RULE_PROVIDER_A')) {
3360
	define('PR_RULE_PROVIDER_A', 0x6681001E);
3361
}
3362
if (!defined('PR_RULE_NAME')) {
3363
	define('PR_RULE_NAME', 0x6682001E);
3364
}
3365
if (!defined('PR_RULE_NAME_A')) {
3366
	define('PR_RULE_NAME_A', 0x6682001E);
3367
}
3368
if (!defined('PR_RULE_LEVEL')) {
3369
	define('PR_RULE_LEVEL', 0x66830003);
3370
}
3371
if (!defined('PR_RULE_PROVIDER_DATA')) {
3372
	define('PR_RULE_PROVIDER_DATA', 0x66840102);
3373
}
3374
if (!defined('PR_RULE_VERSION')) {
3375
	define('PR_RULE_VERSION', 0x668D0002);
3376
}
3377
if (!defined('PR_DELETED_ON')) {
3378
	define('PR_DELETED_ON', 0x668F0040);
3379
}
3380
if (!defined('PR_DELETED_MESSAGE_SIZE')) {
3381
	define('PR_DELETED_MESSAGE_SIZE', 0x669B0003);
3382
}
3383
if (!defined('PR_DELETED_MESSAGE_SIZE_EXTENDED')) {
3384
	define('PR_DELETED_MESSAGE_SIZE_EXTENDED', 0x669B0014);
3385
}
3386
if (!defined('PR_DELETED_NORMAL_MESSAGE_SIZE')) {
3387
	define('PR_DELETED_NORMAL_MESSAGE_SIZE', 0x669C0003);
3388
}
3389
if (!defined('PR_DELETED_NORMAL_MESSAGE_SIZE_EXTENDED')) {
3390
	define('PR_DELETED_NORMAL_MESSAGE_SIZE_EXTENDED', 0x669C0014);
3391
}
3392
if (!defined('PR_DELETED_ASSOC_MESSAGE_SIZE')) {
3393
	define('PR_DELETED_ASSOC_MESSAGE_SIZE', 0x669D0003);
3394
}
3395
if (!defined('PR_DELETED_ASSOC_MESSAGE_SIZE_EXTENDED')) {
3396
	define('PR_DELETED_ASSOC_MESSAGE_SIZE_EXTENDED', 0x669D0014);
3397
}
3398
if (!defined('PR_LOCALE_ID')) {
3399
	define('PR_LOCALE_ID', 0x66A10003);
3400
}
3401
if (!defined('PR_FOLDER_FLAGS')) {
3402
	define('PR_FOLDER_FLAGS', 0x66A80003);
3403
}
3404
if (!defined('PR_NORMAL_MSG_W_ATTACH_COUNT')) {
3405
	define('PR_NORMAL_MSG_W_ATTACH_COUNT', 0x66AD0003);
3406
}
3407
if (!defined('PR_ASSOC_MSG_W_ATTACH_COUNT')) {
3408
	define('PR_ASSOC_MSG_W_ATTACH_COUNT', 0x66AE0003);
3409
}
3410
if (!defined('PR_NORMAL_MESSAGE_SIZE')) {
3411
	define('PR_NORMAL_MESSAGE_SIZE', 0x66B30003);
3412
}
3413
if (!defined('PR_NORMAL_MESSAGE_SIZE_EXTENDED')) {
3414
	define('PR_NORMAL_MESSAGE_SIZE_EXTENDED', 0x66B30014);
3415
}
3416
if (!defined('PR_ASSOC_MESSAGE_SIZE')) {
3417
	define('PR_ASSOC_MESSAGE_SIZE', 0x66B40003);
3418
}
3419
if (!defined('PR_ASSOC_MESSAGE_SIZE_EXTENDED')) {
3420
	define('PR_ASSOC_MESSAGE_SIZE_EXTENDED', 0x66B40014);
3421
}
3422
if (!defined('PR_FOLDER_PATHNAME')) {
3423
	define('PR_FOLDER_PATHNAME', 0x66B5001E);
3424
}
3425
if (!defined('PR_CODE_PAGE_ID')) {
3426
	define('PR_CODE_PAGE_ID', 0x66C30003);
3427
}
3428
if (!defined('PR_LATEST_PST_ENSURE')) {
3429
	define('PR_LATEST_PST_ENSURE', 0x66FA0003);
3430
}
3431
if (!defined('PR_EMS_AB_MANAGE_DL')) {
3432
	define('PR_EMS_AB_MANAGE_DL', 0x6704000D);
3433
}
3434
if (!defined('PR_SORT_LOCALE_ID')) {
3435
	define('PR_SORT_LOCALE_ID', 0x67050003);
3436
}
3437
if (!defined('PR_EC_SSLKEY_PASS')) {
3438
	define('PR_EC_SSLKEY_PASS', 0x6706001E);
3439
}
3440
if (!defined('PR_LOCAL_COMMIT_TIME')) {
3441
	define('PR_LOCAL_COMMIT_TIME', 0x67090040);
3442
}
3443
if (!defined('PR_LOCAL_COMMIT_TIME_MAX')) {
3444
	define('PR_LOCAL_COMMIT_TIME_MAX', 0x670A0040);
3445
}
3446
if (!defined('PR_DELETED_COUNT_TOTAL')) {
3447
	define('PR_DELETED_COUNT_TOTAL', 0x670B0003);
3448
}
3449
if (!defined('PR_FLAT_URL_NAME')) {
3450
	define('PR_FLAT_URL_NAME', 0x670E001E);
3451
}
3452
if (!defined('PR_ZC_CONTACT_STORE_ENTRYIDS')) {
3453
	define('PR_ZC_CONTACT_STORE_ENTRYIDS', 0x67111102);
3454
}
3455
if (!defined('PR_ZC_CONTACT_FOLDER_ENTRYIDS')) {
3456
	define('PR_ZC_CONTACT_FOLDER_ENTRYIDS', 0x67121102);
3457
}
3458
if (!defined('PR_ZC_CONTACT_FOLDER_NAMES')) {
3459
	define('PR_ZC_CONTACT_FOLDER_NAMES', 0x6713101E);
3460
}
3461
if (!defined('PR_EC_SERVER_VERSION')) {
3462
	define('PR_EC_SERVER_VERSION', 0x6716001E);
3463
}
3464
if (!defined('PR_QUOTA_WARNING_THRESHOLD')) {
3465
	define('PR_QUOTA_WARNING_THRESHOLD', 0x67210003);
3466
}
3467
if (!defined('PR_QUOTA_SEND_THRESHOLD')) {
3468
	define('PR_QUOTA_SEND_THRESHOLD', 0x67220003);
3469
}
3470
if (!defined('PR_QUOTA_RECEIVE_THRESHOLD')) {
3471
	define('PR_QUOTA_RECEIVE_THRESHOLD', 0x67230003);
3472
}
3473
if (!defined('PR_EC_MESSAGE_BCC_ME')) {
3474
	define('PR_EC_MESSAGE_BCC_ME', 0x6725000B);
3475
}
3476
if (!defined('PR_MANAGED_FOLDER_INFORMATION')) {
3477
	define('PR_MANAGED_FOLDER_INFORMATION', 0x672D0003);
3478
}
3479
if (!defined('PR_MANAGED_FOLDER_SIZE')) {
3480
	define('PR_MANAGED_FOLDER_SIZE', 0x67300003);
3481
}
3482
if (!defined('PR_MANAGED_FOLDER_STORAGE_QUOTA')) {
3483
	define('PR_MANAGED_FOLDER_STORAGE_QUOTA', 0x67310003);
3484
}
3485
if (!defined('PR_MANAGED_FOLDER_ID')) {
3486
	define('PR_MANAGED_FOLDER_ID', 0x6732001E);
3487
}
3488
if (!defined('PR_MANAGED_FOLDER_COMMENT')) {
3489
	define('PR_MANAGED_FOLDER_COMMENT', 0x6733001E);
3490
}
3491
if (!defined('PR_DAM_ORIG_MSG_SVREID')) {
3492
	define('PR_DAM_ORIG_MSG_SVREID', 0x67410102);
3493
}
3494
if (!defined('PR_RULE_FOLDER_FID')) {
3495
	define('PR_RULE_FOLDER_FID', 0x67420014);
3496
}
3497
if (!defined('PR_INTERNET_ARTICLE_NUMBER_NEXT')) {
3498
	define('PR_INTERNET_ARTICLE_NUMBER_NEXT', 0x67510003);
3499
}
3500
if (!defined('PR_EC_OUTOFOFFICE')) {
3501
	define('PR_EC_OUTOFOFFICE', 0x67600003);
3502
}
3503
if (!defined('PR_EC_OUTOFOFFICE_MSG')) {
3504
	define('PR_EC_OUTOFOFFICE_MSG', 0x6761001E);
3505
}
3506
if (!defined('PR_EC_OUTOFOFFICE_SUBJECT')) {
3507
	define('PR_EC_OUTOFOFFICE_SUBJECT', 0x6762001E);
3508
}
3509
if (!defined('PR_EC_OUTOFOFFICE_FROM')) {
3510
	define('PR_EC_OUTOFOFFICE_FROM', 0x67630040);
3511
}
3512
if (!defined('PR_EC_OUTOFOFFICE_UNTIL')) {
3513
	define('PR_EC_OUTOFOFFICE_UNTIL', 0x67640040);
3514
}
3515
if (!defined('PR_EC_ALLOW_EXTERNAL')) {
3516
	define('PR_EC_ALLOW_EXTERNAL', 0x6765000B);
3517
}
3518
if (!defined('PR_EC_EXTERNAL_AUDIENCE')) {
3519
	define('PR_EC_EXTERNAL_AUDIENCE', 0x6766000B);
3520
}
3521
if (!defined('PR_EC_EXTERNAL_REPLY')) {
3522
	define('PR_EC_EXTERNAL_REPLY', 0x6767001E);
3523
}
3524
if (!defined('PR_EC_EXTERNAL_SUBJECT')) {
3525
	define('PR_EC_EXTERNAL_SUBJECT', 0x6768001E);
3526
}
3527
if (!defined('PR_EC_WEBACCESS_SETTINGS_JSON')) {
3528
	define('PR_EC_WEBACCESS_SETTINGS_JSON', 0x6772001E);
3529
}
3530
if (!defined('PR_EC_WEBAPP_PERSISTENT_SETTINGS_JSON')) {
3531
	define('PR_EC_WEBAPP_PERSISTENT_SETTINGS_JSON', 0x6774001E);
3532
}
3533
if (!defined('PR_EC_OUTGOING_FLAGS')) {
3534
	define('PR_EC_OUTGOING_FLAGS', 0x67800003);
3535
}
3536
if (!defined('PR_EC_IMAP_ID')) {
3537
	define('PR_EC_IMAP_ID', 0x67820003);
3538
}
3539
if (!defined('PR_EC_IMAP_SUBSCRIBED')) {
3540
	define('PR_EC_IMAP_SUBSCRIBED', 0x67840102);
3541
}
3542
if (!defined('PR_EC_IMAP_MAX_ID')) {
3543
	define('PR_EC_IMAP_MAX_ID', 0x67850003);
3544
}
3545
if (!defined('PR_EC_CLIENT_SUBMIT_DATE')) {
3546
	define('PR_EC_CLIENT_SUBMIT_DATE', 0x67860040);
3547
}
3548
if (!defined('PR_EC_MESSAGE_DELIVERY_DATE')) {
3549
	define('PR_EC_MESSAGE_DELIVERY_DATE', 0x67870040);
3550
}
3551
if (!defined('PR_EC_IMAP_EMAIL_SIZE')) {
3552
	define('PR_EC_IMAP_EMAIL_SIZE', 0x678D0003);
3553
}
3554
if (!defined('PR_EC_IMAP_BODY')) {
3555
	define('PR_EC_IMAP_BODY', 0x678E001E);
3556
}
3557
if (!defined('PR_EC_IMAP_BODYSTRUCTURE')) {
3558
	define('PR_EC_IMAP_BODYSTRUCTURE', 0x678F001E);
3559
}
3560
if (!defined('PR_ASSOCIATED')) {
3561
	define('PR_ASSOCIATED', 0x67AA000B);
3562
}
3563
if (!defined('PR_EC_ENABLED_FEATURES_L')) {
3564
	define('PR_EC_ENABLED_FEATURES_L', 0x67B30003);
3565
}
3566
if (!defined('PR_LTP_ROW_ID')) {
3567
	define('PR_LTP_ROW_ID', 0x67F20003);
3568
}
3569
if (!defined('PR_LTP_ROW_VER')) {
3570
	define('PR_LTP_ROW_VER', 0x67F30003);
3571
}
3572
if (!defined('PR_PST_PASSWORD')) {
3573
	define('PR_PST_PASSWORD', 0x67FF0003);
3574
}
3575
if (!defined('PR_OAB_NAME')) {
3576
	define('PR_OAB_NAME', 0x6800001E);
3577
}
3578
if (!defined('PR_OAB_SEQUENCE')) {
3579
	define('PR_OAB_SEQUENCE', 0x68010003);
3580
}
3581
if (!defined('PR_RW_RULES_STREAM')) {
3582
	define('PR_RW_RULES_STREAM', 0x68020102);
3583
}
3584
if (!defined('PR_SENDER_TELEPHONE_NUMBER')) {
3585
	define('PR_SENDER_TELEPHONE_NUMBER', 0x6802001E);
3586
}
3587
if (!defined('PR_SENDER_TELEPHONE_NUMBER_A')) {
3588
	define('PR_SENDER_TELEPHONE_NUMBER_A', 0x6802001E);
3589
}
3590
if (!defined('PR_OAB_CONTAINER_GUID')) {
3591
	define('PR_OAB_CONTAINER_GUID', 0x6802001E);
3592
}
3593
if (!defined('PR_OAB_MESSAGE_CLASS')) {
3594
	define('PR_OAB_MESSAGE_CLASS', 0x68030003);
3595
}
3596
if (!defined('PR_OAB_DN')) {
3597
	define('PR_OAB_DN', 0x6804001E);
3598
}
3599
if (!defined('PR_OAB_TRUNCATED_PROPS')) {
3600
	define('PR_OAB_TRUNCATED_PROPS', 0x68051003);
3601
}
3602
if (!defined('PR_WB_SF_LAST_USED')) {
3603
	define('PR_WB_SF_LAST_USED', 0x68340003);
3604
}
3605
if (!defined('PR_WB_SF_EXPIRATION')) {
3606
	define('PR_WB_SF_EXPIRATION', 0x683A0003);
3607
}
3608
if (!defined('PR_WB_SF_TEMPLATE_ID')) {
3609
	define('PR_WB_SF_TEMPLATE_ID', 0x68410003);
3610
}
3611
if (!defined('PR_SCHDINFO_BOSS_WANTS_COPY')) {
3612
	define('PR_SCHDINFO_BOSS_WANTS_COPY', 0x6842000B);
3613
}
3614
if (!defined('PR_WB_SF_ID')) {
3615
	define('PR_WB_SF_ID', 0x68420102);
3616
}
3617
if (!defined('PR_SCHDINFO_DONT_MAIL_DELEGATES')) {
3618
	define('PR_SCHDINFO_DONT_MAIL_DELEGATES', 0x6843000B);
3619
}
3620
if (!defined('PR_SCHDINFO_DELEGATE_NAMES')) {
3621
	define('PR_SCHDINFO_DELEGATE_NAMES', 0x6844101E);
3622
}
3623
if (!defined('PR_WB_SF_RECREATE_INFO')) {
3624
	define('PR_WB_SF_RECREATE_INFO', 0x68440102);
3625
}
3626
if (!defined('PR_SCHDINFO_DELEGATE_ENTRYIDS')) {
3627
	define('PR_SCHDINFO_DELEGATE_ENTRYIDS', 0x68451102);
3628
}
3629
if (!defined('PR_WB_SF_DEFINITION')) {
3630
	define('PR_WB_SF_DEFINITION', 0x68450102);
3631
}
3632
if (!defined('PR_GATEWAY_NEEDS_TO_REFRESH')) {
3633
	define('PR_GATEWAY_NEEDS_TO_REFRESH', 0x6846000B);
3634
}
3635
if (!defined('PR_WB_SF_STORAGE_TYPE')) {
3636
	define('PR_WB_SF_STORAGE_TYPE', 0x68460003);
3637
}
3638
if (!defined('PR_FREEBUSY_PUBLISH_START')) {
3639
	define('PR_FREEBUSY_PUBLISH_START', 0x68470003);
3640
}
3641
if (!defined('PR_FREEBUSY_PUBLISH_END')) {
3642
	define('PR_FREEBUSY_PUBLISH_END', 0x68480003);
3643
}
3644
if (!defined('PR_FREEBUSY_EMA')) {
3645
	define('PR_FREEBUSY_EMA', 0x6849001E);
3646
}
3647
if (!defined('PR_WLINK_TYPE')) {
3648
	define('PR_WLINK_TYPE', 0x68490003);
3649
}
3650
if (!defined('PR_SCHDINFO_DELEGATE_NAMES_W')) {
3651
	define('PR_SCHDINFO_DELEGATE_NAMES_W', 0x684A101E);
3652
}
3653
if (!defined('PR_WLINK_FLAGS')) {
3654
	define('PR_WLINK_FLAGS', 0x684A0003);
3655
}
3656
if (!defined('PR_SCHDINFO_BOSS_WANTS_INFO')) {
3657
	define('PR_SCHDINFO_BOSS_WANTS_INFO', 0x684B000B);
3658
}
3659
if (!defined('PR_WLINK_ORDINAL')) {
3660
	define('PR_WLINK_ORDINAL', 0x684B0102);
3661
}
3662
if (!defined('PR_WLINK_ENTRYID')) {
3663
	define('PR_WLINK_ENTRYID', 0x684C0102);
3664
}
3665
if (!defined('PR_WLINK_RECKEY')) {
3666
	define('PR_WLINK_RECKEY', 0x684D0102);
3667
}
3668
if (!defined('PR_WLINK_STORE_ENTRYID')) {
3669
	define('PR_WLINK_STORE_ENTRYID', 0x684E0102);
3670
}
3671
if (!defined('PR_SCHDINFO_MONTHS_MERGED')) {
3672
	define('PR_SCHDINFO_MONTHS_MERGED', 0x684F1003);
3673
}
3674
if (!defined('PR_WLINK_FOLDER_TYPE')) {
3675
	define('PR_WLINK_FOLDER_TYPE', 0x684F0102);
3676
}
3677
if (!defined('PR_SCHDINFO_FREEBUSY_MERGED')) {
3678
	define('PR_SCHDINFO_FREEBUSY_MERGED', 0x68501102);
3679
}
3680
if (!defined('PR_WLINK_GROUP_CLSID')) {
3681
	define('PR_WLINK_GROUP_CLSID', 0x68500102);
3682
}
3683
if (!defined('PR_SCHDINFO_MONTHS_TENTATIVE')) {
3684
	define('PR_SCHDINFO_MONTHS_TENTATIVE', 0x68511003);
3685
}
3686
if (!defined('PR_WLINK_GROUP_NAME')) {
3687
	define('PR_WLINK_GROUP_NAME', 0x6851001E);
3688
}
3689
if (!defined('PR_SCHDINFO_FREEBUSY_TENTATIVE')) {
3690
	define('PR_SCHDINFO_FREEBUSY_TENTATIVE', 0x68521102);
3691
}
3692
if (!defined('PR_WLINK_SECTION')) {
3693
	define('PR_WLINK_SECTION', 0x68520003);
3694
}
3695
if (!defined('PR_SCHDINFO_MONTHS_BUSY')) {
3696
	define('PR_SCHDINFO_MONTHS_BUSY', 0x68531003);
3697
}
3698
if (!defined('PR_WLINK_CALENDAR_COLOR')) {
3699
	define('PR_WLINK_CALENDAR_COLOR', 0x68530003);
3700
}
3701
if (!defined('PR_SCHDINFO_FREEBUSY_BUSY')) {
3702
	define('PR_SCHDINFO_FREEBUSY_BUSY', 0x68541102);
3703
}
3704
if (!defined('PR_WLINK_ABEID')) {
3705
	define('PR_WLINK_ABEID', 0x68540102);
3706
}
3707
if (!defined('PR_SCHDINFO_MONTHS_OOF')) {
3708
	define('PR_SCHDINFO_MONTHS_OOF', 0x68551003);
3709
}
3710
if (!defined('PR_SCHDINFO_FREEBUSY_OOF')) {
3711
	define('PR_SCHDINFO_FREEBUSY_OOF', 0x68561102);
3712
}
3713
if (!defined('PR_FREEBUSY_RANGE_TIMESTAMP')) {
3714
	define('PR_FREEBUSY_RANGE_TIMESTAMP', 0x68680040);
3715
}
3716
if (!defined('PR_FREEBUSY_COUNT_MONTHS')) {
3717
	define('PR_FREEBUSY_COUNT_MONTHS', 0x68690003);
3718
}
3719
if (!defined('PR_SCHDINFO_APPT_TOMBSTONE')) {
3720
	define('PR_SCHDINFO_APPT_TOMBSTONE', 0x686A0102);
3721
}
3722
if (!defined('PR_DELEGATE_FLAGS')) {
3723
	define('PR_DELEGATE_FLAGS', 0x686B1003);
3724
}
3725
if (!defined('PR_SCHDINFO_FREEBUSY')) {
3726
	define('PR_SCHDINFO_FREEBUSY', 0x686C0102);
3727
}
3728
if (!defined('PR_SCHDINFO_AUTO_ACCEPT_APPTS')) {
3729
	define('PR_SCHDINFO_AUTO_ACCEPT_APPTS', 0x686D000B);
3730
}
3731
if (!defined('PR_SCHDINFO_DISALLOW_RECURRING_APPTS')) {
3732
	define('PR_SCHDINFO_DISALLOW_RECURRING_APPTS', 0x686E000B);
3733
}
3734
if (!defined('PR_SCHDINFO_DISALLOW_OVERLAPPING_APPTS')) {
3735
	define('PR_SCHDINFO_DISALLOW_OVERLAPPING_APPTS', 0x686F000B);
3736
}
3737
if (!defined('PR_WLINK_CLIENTID')) {
3738
	define('PR_WLINK_CLIENTID', 0x68900102);
3739
}
3740
if (!defined('PR_WLINK_AB_EXSTOREEID')) {
3741
	define('PR_WLINK_AB_EXSTOREEID', 0x68910102);
3742
}
3743
if (!defined('PR_WLINK_RO_GROUP_TYPE')) {
3744
	define('PR_WLINK_RO_GROUP_TYPE', 0x68920003);
3745
}
3746
if (!defined('PR_SECURITY_FLAGS')) {
3747
	define('PR_SECURITY_FLAGS', 0x6E010003);
3748
}
3749
if (!defined('PR_VD_BINARY')) {
3750
	define('PR_VD_BINARY', 0x70010102);
3751
}
3752
if (!defined('PR_VD_STRINGS')) {
3753
	define('PR_VD_STRINGS', 0x7002001E);
3754
}
3755
if (!defined('PR_VD_NAME')) {
3756
	define('PR_VD_NAME', 0x7006001E);
3757
}
3758
if (!defined('PR_VD_VERSION')) {
3759
	define('PR_VD_VERSION', 0x70070003);
3760
}
3761
if (!defined('PR_FAV_DISPLAY_NAME')) {
3762
	define('PR_FAV_DISPLAY_NAME', 0x7C00001E);
3763
}
3764
if (!defined('PR_FAV_DISPLAY_ALIAS')) {
3765
	define('PR_FAV_DISPLAY_ALIAS', 0x7C01001E);
3766
}
3767
if (!defined('PR_FAV_PUBLIC_SOURCE_KEY')) {
3768
	define('PR_FAV_PUBLIC_SOURCE_KEY', 0x7C020102);
3769
}
3770
if (!defined('PR_OST_OSTID')) {
3771
	define('PR_OST_OSTID', 0x7C040102);
3772
}
3773
if (!defined('PR_OFFLINE_FOLDER')) {
3774
	define('PR_OFFLINE_FOLDER', 0x7C050102);
3775
}
3776
if (!defined('PR_ROAMING_DATATYPES')) {
3777
	define('PR_ROAMING_DATATYPES', 0x7C060003);
3778
}
3779
if (!defined('PR_ROAMING_DICTIONARY')) {
3780
	define('PR_ROAMING_DICTIONARY', 0x7C070102);
3781
}
3782
if (!defined('PR_ROAMING_BINARYSTREAM')) {
3783
	define('PR_ROAMING_BINARYSTREAM', 0x7C090102);
3784
}
3785
if (!defined('PR_STORE_SLOWLINK')) {
3786
	define('PR_STORE_SLOWLINK', 0x7C0A000B);
3787
}
3788
if (!defined('PR_OSC_SYNC_ENABLEDONSERVER')) {
3789
	define('PR_OSC_SYNC_ENABLEDONSERVER', 0x7C24000B);
3790
}
3791
if (!defined('PR_FORCE_USE_ENTRYID_SERVER')) {
3792
	define('PR_FORCE_USE_ENTRYID_SERVER', 0x7CFE000B);
3793
}
3794
if (!defined('PR_PROFILE_MDB_DN')) {
3795
	define('PR_PROFILE_MDB_DN', 0x7CFF001E);
3796
}
3797
if (!defined('PR_FAV_AUTOSUBFOLDERS')) {
3798
	define('PR_FAV_AUTOSUBFOLDERS', 0x7D010003);
3799
}
3800
if (!defined('PR_PROCESSED')) {
3801
	define('PR_PROCESSED', 0x7D01000B);
3802
}
3803
if (!defined('PR_FAV_PARENT_SOURCE_KEY')) {
3804
	define('PR_FAV_PARENT_SOURCE_KEY', 0x7D020102);
3805
}
3806
if (!defined('PR_FAV_LEVEL_MASK')) {
3807
	define('PR_FAV_LEVEL_MASK', 0x7D030003);
3808
}
3809
if (!defined('PR_FAV_KNOWN_SUBS')) {
3810
	define('PR_FAV_KNOWN_SUBS', 0x7D040102);
3811
}
3812
if (!defined('PR_FAV_GUID_MAP')) {
3813
	define('PR_FAV_GUID_MAP', 0x7D050102);
3814
}
3815
if (!defined('PR_FAV_KNOWN_DELS_OLD')) {
3816
	define('PR_FAV_KNOWN_DELS_OLD', 0x7D060102);
3817
}
3818
if (!defined('PR_FAV_INHERIT_AUTO')) {
3819
	define('PR_FAV_INHERIT_AUTO', 0x7D070003);
3820
}
3821
if (!defined('PR_FAV_DEL_SUBS')) {
3822
	define('PR_FAV_DEL_SUBS', 0x7D080102);
3823
}
3824
if (!defined('PR_FAV_CONTAINER_CLASS')) {
3825
	define('PR_FAV_CONTAINER_CLASS', 0x7D09001E);
3826
}
3827
if (!defined('PR_EXCEPTION_REPLACETIME')) {
3828
	define('PR_EXCEPTION_REPLACETIME', 0x7FF90040);
3829
}
3830
if (!defined('PR_ATTACHMENT_LINKID')) {
3831
	define('PR_ATTACHMENT_LINKID', 0x7FFA0003);
3832
}
3833
if (!defined('PR_EXCEPTION_STARTTIME')) {
3834
	define('PR_EXCEPTION_STARTTIME', 0x7FFB0040);
3835
}
3836
if (!defined('PR_EXCEPTION_ENDTIME')) {
3837
	define('PR_EXCEPTION_ENDTIME', 0x7FFC0040);
3838
}
3839
if (!defined('PR_ATTACHMENT_FLAGS')) {
3840
	define('PR_ATTACHMENT_FLAGS', 0x7FFD0003);
3841
}
3842
if (!defined('PR_ATTACHMENT_HIDDEN')) {
3843
	define('PR_ATTACHMENT_HIDDEN', 0x7FFE000B);
3844
}
3845
if (!defined('PR_ATTACHMENT_CONTACTPHOTO')) {
3846
	define('PR_ATTACHMENT_CONTACTPHOTO', 0x7FFF000B);
3847
}
3848
if (!defined('PR_EMS_AB_FOLDER_PATHNAME')) {
3849
	define('PR_EMS_AB_FOLDER_PATHNAME', 0x8004001E);
3850
}
3851
if (!defined('PR_EMS_AB_MANAGER')) {
3852
	define('PR_EMS_AB_MANAGER', 0x8005000D);
3853
}
3854
if (!defined('PR_EMS_AB_MANAGER_T')) {
3855
	define('PR_EMS_AB_MANAGER_T', 0x8005001E);
3856
}
3857
if (!defined('PR_EMS_AB_HOME_MDB')) {
3858
	define('PR_EMS_AB_HOME_MDB', 0x8006001E);
3859
}
3860
if (!defined('PR_EMS_AB_HOME_MDB_A')) {
3861
	define('PR_EMS_AB_HOME_MDB_A', 0x8006001E);
3862
}
3863
if (!defined('PR_EMS_AB_IS_MEMBER_OF_DL')) {
3864
	define('PR_EMS_AB_IS_MEMBER_OF_DL', 0x8008001E);
3865
}
3866
if (!defined('PR_EMS_AB_MEMBER')) {
3867
	define('PR_EMS_AB_MEMBER', 0x8009000D);
3868
}
3869
if (!defined('PR_EMS_AB_OWNER')) {
3870
	define('PR_EMS_AB_OWNER', 0x800C0102);
3871
}
3872
if (!defined('PR_EMS_AB_OWNER_O')) {
3873
	define('PR_EMS_AB_OWNER_O', 0x800C000D);
3874
}
3875
if (!defined('PR_EMS_AB_REPORTS')) {
3876
	define('PR_EMS_AB_REPORTS', 0x800E000D);
3877
}
3878
if (!defined('PR_EMS_AB_REPORTS_MV')) {
3879
	define('PR_EMS_AB_REPORTS_MV', 0x800E1102);
3880
}
3881
if (!defined('PR_EMS_AB_PROXY_ADDRESSES')) {
3882
	define('PR_EMS_AB_PROXY_ADDRESSES', 0x800F101E);
3883
}
3884
if (!defined('PR_EMS_AB_PROXY_ADDRESSES_A')) {
3885
	define('PR_EMS_AB_PROXY_ADDRESSES_A', 0x800F101E);
3886
}
3887
if (!defined('PR_EMS_AB_PROXY_ADDRESSES_MV')) {
3888
	define('PR_EMS_AB_PROXY_ADDRESSES_MV', 0x800F101E);
3889
}
3890
if (!defined('PR_EMS_AB_TARGET_ADDRESS')) {
3891
	define('PR_EMS_AB_TARGET_ADDRESS', 0x8011001E);
3892
}
3893
if (!defined('PR_EMS_AB_PUBLIC_DELEGATES')) {
3894
	define('PR_EMS_AB_PUBLIC_DELEGATES', 0x8015000D);
3895
}
3896
if (!defined('PR_EMS_AB_OWNER_BL_O')) {
3897
	define('PR_EMS_AB_OWNER_BL_O', 0x8024000D);
3898
}
3899
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_1')) {
3900
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_1', 0x802D001E);
3901
}
3902
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_2')) {
3903
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_2', 0x802E001E);
3904
}
3905
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_3')) {
3906
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_3', 0x802F001E);
3907
}
3908
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_4')) {
3909
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_4', 0x8030001E);
3910
}
3911
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_5')) {
3912
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_5', 0x8031001E);
3913
}
3914
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_6')) {
3915
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_6', 0x8032001E);
3916
}
3917
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_7')) {
3918
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_7', 0x8033001E);
3919
}
3920
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_8')) {
3921
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_8', 0x8034001E);
3922
}
3923
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_9')) {
3924
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_9', 0x8035001E);
3925
}
3926
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_10')) {
3927
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_10', 0x8036001E);
3928
}
3929
if (!defined('PR_EMS_AB_OBJ_DIST_NAME')) {
3930
	define('PR_EMS_AB_OBJ_DIST_NAME', 0x803C001E);
3931
}
3932
if (!defined('PR_EMS_AB_DELIV_CONT_LENGTH')) {
3933
	define('PR_EMS_AB_DELIV_CONT_LENGTH', 0x806A0003);
3934
}
3935
if (!defined('PR_EMS_AB_DL_MEM_SUBMIT_PERMS_BL_O')) {
3936
	define('PR_EMS_AB_DL_MEM_SUBMIT_PERMS_BL_O', 0x8073000D);
3937
}
3938
if (!defined('PR_EMS_AB_NETWORK_ADDRESS')) {
3939
	define('PR_EMS_AB_NETWORK_ADDRESS', 0x8170101E);
3940
}
3941
if (!defined('PR_EMS_AB_NETWORK_ADDRESS_A')) {
3942
	define('PR_EMS_AB_NETWORK_ADDRESS_A', 0x8170101E);
3943
}
3944
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_11')) {
3945
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_11', 0x8C57001E);
3946
}
3947
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_12')) {
3948
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_12', 0x8C58001E);
3949
}
3950
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_13')) {
3951
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_13', 0x8C59001E);
3952
}
3953
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_14')) {
3954
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_14', 0x8C60001E);
3955
}
3956
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_15')) {
3957
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_15', 0x8C61001E);
3958
}
3959
if (!defined('PR_EMS_AB_X509_CERT')) {
3960
	define('PR_EMS_AB_X509_CERT', 0x8C6A1102);
3961
}
3962
if (!defined('PR_EMS_AB_OBJECT_GUID')) {
3963
	define('PR_EMS_AB_OBJECT_GUID', 0x8C6D0102);
3964
}
3965
if (!defined('PR_EMS_AB_PHONETIC_GIVEN_NAME')) {
3966
	define('PR_EMS_AB_PHONETIC_GIVEN_NAME', 0x8C8E001E);
3967
}
3968
if (!defined('PR_EMS_AB_PHONETIC_SURNAME')) {
3969
	define('PR_EMS_AB_PHONETIC_SURNAME', 0x8C8F001E);
3970
}
3971
if (!defined('PR_EMS_AB_PHONETIC_DEPARTMENT_NAME')) {
3972
	define('PR_EMS_AB_PHONETIC_DEPARTMENT_NAME', 0x8C90001E);
3973
}
3974
if (!defined('PR_EMS_AB_PHONETIC_COMPANY_NAME')) {
3975
	define('PR_EMS_AB_PHONETIC_COMPANY_NAME', 0x8C91001E);
3976
}
3977
if (!defined('PR_EMS_AB_PHONETIC_DISPLAY_NAME')) {
3978
	define('PR_EMS_AB_PHONETIC_DISPLAY_NAME', 0x8C92001E);
3979
}
3980
if (!defined('PR_EMS_AB_PHONETIC_DISPLAY_NAME_A')) {
3981
	define('PR_EMS_AB_PHONETIC_DISPLAY_NAME_A', 0x8C92001E);
3982
}
3983
if (!defined('PR_EMS_AB_DISPLAY_TYPE_EX')) {
3984
	define('PR_EMS_AB_DISPLAY_TYPE_EX', 0x8C930003);
3985
}
3986
if (!defined('PR_EMS_AB_HAB_SHOW_IN_DEPARTMENTS')) {
3987
	define('PR_EMS_AB_HAB_SHOW_IN_DEPARTMENTS', 0x8C94000D);
3988
}
3989
if (!defined('PR_EMS_AB_ROOM_CONTAINERS')) {
3990
	define('PR_EMS_AB_ROOM_CONTAINERS', 0x8C96101E);
3991
}
3992
if (!defined('PR_EMS_AB_HAB_DEPARTMENT_MEMBERS')) {
3993
	define('PR_EMS_AB_HAB_DEPARTMENT_MEMBERS', 0x8C97000D);
3994
}
3995
if (!defined('PR_EMS_AB_HAB_ROOT_DEPARTMENT')) {
3996
	define('PR_EMS_AB_HAB_ROOT_DEPARTMENT', 0x8C98001E);
3997
}
3998
if (!defined('PR_EMS_AB_HAB_PARENT_DEPARTMENT')) {
3999
	define('PR_EMS_AB_HAB_PARENT_DEPARTMENT', 0x8C99000D);
4000
}
4001
if (!defined('PR_EMS_AB_HAB_CHILD_DEPARTMENTS')) {
4002
	define('PR_EMS_AB_HAB_CHILD_DEPARTMENTS', 0x8C9A000D);
4003
}
4004
if (!defined('PR_EMS_AB_THUMBNAIL_PHOTO')) {
4005
	define('PR_EMS_AB_THUMBNAIL_PHOTO', 0x8C9E0102);
4006
}
4007
if (!defined('PR_EMS_AB_HAB_SENIORITY_INDEX')) {
4008
	define('PR_EMS_AB_HAB_SENIORITY_INDEX', 0x8CA00003);
4009
}
4010
if (!defined('PR_EMS_AB_ORG_UNIT_ROOT_DN')) {
4011
	define('PR_EMS_AB_ORG_UNIT_ROOT_DN', 0x8CA8001E);
4012
}
4013
if (!defined('PR_EMS_AB_DL_SENDER_HINT_TRANSLATIONS')) {
4014
	define('PR_EMS_AB_DL_SENDER_HINT_TRANSLATIONS', 0x8CAC101E);
4015
}
4016
if (!defined('PR_EMS_AB_ENABLE_MODERATION')) {
4017
	define('PR_EMS_AB_ENABLE_MODERATION', 0x8CB5000B);
4018
}
4019
if (!defined('PR_EMS_AB_UM_SPOKEN_NAME')) {
4020
	define('PR_EMS_AB_UM_SPOKEN_NAME', 0x8CC20102);
4021
}
4022
if (!defined('PR_EMS_AB_AUTH_ORIG')) {
4023
	define('PR_EMS_AB_AUTH_ORIG', 0x8CD8000D);
4024
}
4025
if (!defined('PR_EMS_AB_UNAUTH_ORIG')) {
4026
	define('PR_EMS_AB_UNAUTH_ORIG', 0x8CD9000D);
4027
}
4028
if (!defined('PR_EMS_AB_DL_MEM_SUBMIT_PERMS')) {
4029
	define('PR_EMS_AB_DL_MEM_SUBMIT_PERMS', 0x8CDA000D);
4030
}
4031
if (!defined('PR_EMS_AB_DL_MEM_REJECT_PERMS')) {
4032
	define('PR_EMS_AB_DL_MEM_REJECT_PERMS', 0x8CDB000D);
4033
}
4034
if (!defined('PR_EMS_AB_HAB_IS_HIERARCHICAL_GROUP')) {
4035
	define('PR_EMS_AB_HAB_IS_HIERARCHICAL_GROUP', 0x8CDD000B);
4036
}
4037
if (!defined('PR_EMS_AB_DL_TOTAL_MEMBER_COUNT')) {
4038
	define('PR_EMS_AB_DL_TOTAL_MEMBER_COUNT', 0x8CE20003);
4039
}
4040
if (!defined('PR_EMS_AB_DL_EXTERNAL_MEMBER_COUNT')) {
4041
	define('PR_EMS_AB_DL_EXTERNAL_MEMBER_COUNT', 0x8CE30003);
4042
}
4043
if (!defined('PR_EMS_AB_IS_MASTER')) {
4044
	define('PR_EMS_AB_IS_MASTER', 0xFFFB000B);
4045
}
4046
if (!defined('PR_EMS_AB_PARENT_ENTRYID')) {
4047
	define('PR_EMS_AB_PARENT_ENTRYID', 0xFFFC0102);
4048
}
4049
if (!defined('PR_EMS_AB_CONTAINERID')) {
4050
	define('PR_EMS_AB_CONTAINERID', 0xFFFD0003);
4051
}
4052
if (!defined('PidLidAttendeeCriticalChange')) {
4053
	define('PidLidAttendeeCriticalChange', 0x00000001);
4054
}
4055
if (!defined('PidLidGlobalObjectId')) {
4056
	define('PidLidGlobalObjectId', 0x00000003);
4057
}
4058
if (!defined('PidLidIsException')) {
4059
	define('PidLidIsException', 0x0000000A);
4060
}
4061
if (!defined('PidLidStartRecurrenceTime')) {
4062
	define('PidLidStartRecurrenceTime', 0x0000000E);
4063
}
4064
if (!defined('PidLidOwnerCriticalChange')) {
4065
	define('PidLidOwnerCriticalChange', 0x0000001A);
4066
}
4067
if (!defined('PidLidCleanGlobalObjectId')) {
4068
	define('PidLidCleanGlobalObjectId', 0x00000023);
4069
}
4070
if (!defined('PidLidCategories')) {
4071
	define('PidLidCategories', 0x00002328);
4072
}
4073
if (!defined('PidLidFileAs')) {
4074
	define('PidLidFileAs', 0x00008005);
4075
}
4076
if (!defined('PidLidHomeAddress')) {
4077
	define('PidLidHomeAddress', 0x0000801A);
4078
}
4079
if (!defined('PidLidBusinessAddress')) {
4080
	define('PidLidBusinessAddress', 0x0000801B);
4081
}
4082
if (!defined('PidLidOtherAddress')) {
4083
	define('PidLidOtherAddress', 0x0000801C);
4084
}
4085
if (!defined('PidLidMailingAdress')) {
4086
	define('PidLidMailingAdress', 0x00008022);
4087
}
4088
if (!defined('PidLidPostalAddressIndex')) {
4089
	define('PidLidPostalAddressIndex', 0x00008022);
4090
}
4091
if (!defined('PidLidBusinessCardDisplayDefinition')) {
4092
	define('PidLidBusinessCardDisplayDefinition', 0x00008040);
4093
}
4094
if (!defined('PidLidWorkAddressStreet')) {
4095
	define('PidLidWorkAddressStreet', 0x00008045);
4096
}
4097
if (!defined('PidLidWorkAddressCity')) {
4098
	define('PidLidWorkAddressCity', 0x00008046);
4099
}
4100
if (!defined('PidLidWorkAddressState')) {
4101
	define('PidLidWorkAddressState', 0x00008047);
4102
}
4103
if (!defined('PidLidWorkAddressPostalCode')) {
4104
	define('PidLidWorkAddressPostalCode', 0x00008048);
4105
}
4106
if (!defined('PidLidWorkAddressCountry')) {
4107
	define('PidLidWorkAddressCountry', 0x00008049);
4108
}
4109
if (!defined('PidLidWorkAddressPostOfficeBox')) {
4110
	define('PidLidWorkAddressPostOfficeBox', 0x0000804A);
4111
}
4112
if (!defined('PidLidContactUserField1')) {
4113
	define('PidLidContactUserField1', 0x0000804F);
4114
}
4115
if (!defined('PidLidContactUserField2')) {
4116
	define('PidLidContactUserField2', 0x00008050);
4117
}
4118
if (!defined('PidLidContactUserField3')) {
4119
	define('PidLidContactUserField3', 0x00008051);
4120
}
4121
if (!defined('PidLidContactUserField4')) {
4122
	define('PidLidContactUserField4', 0x00008052);
4123
}
4124
if (!defined('PidLidInstantMessagingAddress')) {
4125
	define('PidLidInstantMessagingAddress', 0x00008062);
4126
}
4127
if (!defined('PidLidEmail1DisplayName')) {
4128
	define('PidLidEmail1DisplayName', 0x00008080);
4129
}
4130
if (!defined('PidLidEmail1AddressType')) {
4131
	define('PidLidEmail1AddressType', 0x00008082);
4132
}
4133
if (!defined('PidLidEmail1EmailAddress')) {
4134
	define('PidLidEmail1EmailAddress', 0x00008083);
4135
}
4136
if (!defined('PidLidEmail2DisplayName')) {
4137
	define('PidLidEmail2DisplayName', 0x00008090);
4138
}
4139
if (!defined('PidLidEmail2AddressType')) {
4140
	define('PidLidEmail2AddressType', 0x00008092);
4141
}
4142
if (!defined('PidLidEmail2EmailAddress')) {
4143
	define('PidLidEmail2EmailAddress', 0x00008093);
4144
}
4145
if (!defined('PidLidEmail3DisplayName')) {
4146
	define('PidLidEmail3DisplayName', 0x000080A0);
4147
}
4148
if (!defined('PidLidEmail3AddressType')) {
4149
	define('PidLidEmail3AddressType', 0x000080A2);
4150
}
4151
if (!defined('PidLidEmail3EmailAddress')) {
4152
	define('PidLidEmail3EmailAddress', 0x000080A3);
4153
}
4154
if (!defined('PidLidFreeBusyLocation')) {
4155
	define('PidLidFreeBusyLocation', 0x000080D8);
4156
}
4157
if (!defined('PidLidTaskStatus')) {
4158
	define('PidLidTaskStatus', 0x00008101);
4159
}
4160
if (!defined('PidLidPercentComplete')) {
4161
	define('PidLidPercentComplete', 0x00008102);
4162
}
4163
if (!defined('PidLidTaskStartDate')) {
4164
	define('PidLidTaskStartDate', 0x00008104);
4165
}
4166
if (!defined('PidLidTaskDueDate')) {
4167
	define('PidLidTaskDueDate', 0x00008105);
4168
}
4169
if (!defined('PidLidTaskDateCompleted')) {
4170
	define('PidLidTaskDateCompleted', 0x0000810F);
4171
}
4172
if (!defined('PidLidTaskActualEffort')) {
4173
	define('PidLidTaskActualEffort', 0x00008110);
4174
}
4175
if (!defined('PidLidTaskEstimatedEffort')) {
4176
	define('PidLidTaskEstimatedEffort', 0x00008111);
4177
}
4178
if (!defined('PidLidTaskRecurrence')) {
4179
	define('PidLidTaskRecurrence', 0x00008116);
4180
}
4181
if (!defined('PidLidTaskComplete')) {
4182
	define('PidLidTaskComplete', 0x0000811C);
4183
}
4184
if (!defined('PidLidTaskOwner')) {
4185
	define('PidLidTaskOwner', 0x0000811F);
4186
}
4187
if (!defined('PidLidTaskFRecurring')) {
4188
	define('PidLidTaskFRecurring', 0x00008126);
4189
}
4190
if (!defined('PidLidAppointmentSequence')) {
4191
	define('PidLidAppointmentSequence', 0x00008201);
4192
}
4193
if (!defined('PidLidBusyStatus')) {
4194
	define('PidLidBusyStatus', 0x00008205);
4195
}
4196
if (!defined('PidLidLocation')) {
4197
	define('PidLidLocation', 0x00008208);
4198
}
4199
if (!defined('PidLidAppointmentReplyTime')) {
4200
	define('PidLidAppointmentReplyTime', 0x00008220);
4201
}
4202
if (!defined('PidLidAppointmentStartWhole')) {
4203
	define('PidLidAppointmentStartWhole', 0x0000820D);
4204
}
4205
if (!defined('PidLidAppointmentEndWhole')) {
4206
	define('PidLidAppointmentEndWhole', 0x0000820E);
4207
}
4208
if (!defined('PidLidAppointmentDuration')) {
4209
	define('PidLidAppointmentDuration', 0x00008213);
4210
}
4211
if (!defined('PidLidAppointmentSubType')) {
4212
	define('PidLidAppointmentSubType', 0x00008215);
4213
}
4214
if (!defined('PidLidAppointmentRecur')) {
4215
	define('PidLidAppointmentRecur', 0x00008216);
4216
}
4217
if (!defined('PidLidAppointmentStateFlags')) {
4218
	define('PidLidAppointmentStateFlags', 0x00008217);
4219
}
4220
if (!defined('PidLidResponseStatus')) {
4221
	define('PidLidResponseStatus', 0x00008218);
4222
}
4223
if (!defined('PidLidRecurring')) {
4224
	define('PidLidRecurring', 0x00008223);
4225
}
4226
if (!defined('PidLidIntendedBusyStatus')) {
4227
	define('PidLidIntendedBusyStatus', 0x00008224);
4228
}
4229
if (!defined('PidLidExceptionReplaceTime')) {
4230
	define('PidLidExceptionReplaceTime', 0x00008228);
4231
}
4232
if (!defined('PidLidFInvited')) {
4233
	define('PidLidFInvited', 0x00008229);
4234
}
4235
if (!defined('PidLidRecurrenceType')) {
4236
	define('PidLidRecurrenceType', 0x00008231);
4237
}
4238
if (!defined('PidLidRecurrencePattern')) {
4239
	define('PidLidRecurrencePattern', 0x00008232);
4240
}
4241
if (!defined('PidLidTimeZoneStruct')) {
4242
	define('PidLidTimeZoneStruct', 0x00008233);
4243
}
4244
if (!defined('PidLidTimeZoneDescription')) {
4245
	define('PidLidTimeZoneDescription', 0x00008234);
4246
}
4247
if (!defined('PidLidClipStart')) {
4248
	define('PidLidClipStart', 0x00008235);
4249
}
4250
if (!defined('PidLidClipEnd')) {
4251
	define('PidLidClipEnd', 0x00008236);
4252
}
4253
if (!defined('PidLidAppointmentProposedStartWhole')) {
4254
	define('PidLidAppointmentProposedStartWhole', 0x00008250);
4255
}
4256
if (!defined('PidLidAppointmentProposedEndWhole')) {
4257
	define('PidLidAppointmentProposedEndWhole', 0x00008251);
4258
}
4259
if (!defined('PidLidAppointmentCounterProposal')) {
4260
	define('PidLidAppointmentCounterProposal', 0x00008257);
4261
}
4262
if (!defined('PidLidAppointmentNotAllowPropose')) {
4263
	define('PidLidAppointmentNotAllowPropose', 0x0000825A);
4264
}
4265
if (!defined('PidLidAppointmentTimeZoneDefinitionStartDisplay')) {
4266
	define('PidLidAppointmentTimeZoneDefinitionStartDisplay', 0x0000825E);
4267
}
4268
if (!defined('PidLidAppointmentTimeZoneDefinitionEndDisplay')) {
4269
	define('PidLidAppointmentTimeZoneDefinitionEndDisplay', 0x0000825F);
4270
}
4271
if (!defined('PidLidAppointmentTimeZoneDefinitionRecur')) {
4272
	define('PidLidAppointmentTimeZoneDefinitionRecur', 0x00008260);
4273
}
4274
if (!defined('PidLidReminderDelta')) {
4275
	define('PidLidReminderDelta', 0x00008501);
4276
}
4277
if (!defined('PidLidReminderTime')) {
4278
	define('PidLidReminderTime', 0x00008502);
4279
}
4280
if (!defined('PidLidReminderSet')) {
4281
	define('PidLidReminderSet', 0x00008503);
4282
}
4283
if (!defined('PidLidPrivate')) {
4284
	define('PidLidPrivate', 0x00008506);
4285
}
4286
if (!defined('PidLidSmartNoAttach')) {
4287
	define('PidLidSmartNoAttach', 0x00008514);
4288
}
4289
if (!defined('PidLidCommonStart')) {
4290
	define('PidLidCommonStart', 0x00008516);
4291
}
4292
if (!defined('PidLidCommonEnd')) {
4293
	define('PidLidCommonEnd', 0x00008517);
4294
}
4295
if (!defined('PidLidFlagRequest')) {
4296
	define('PidLidFlagRequest', 0x00008530);
4297
}
4298
if (!defined('PidLidMileage')) {
4299
	define('PidLidMileage', 0x00008534);
4300
}
4301
if (!defined('PidLidBilling')) {
4302
	define('PidLidBilling', 0x00008535);
4303
}
4304
if (!defined('PidLidCompanies')) {
4305
	define('PidLidCompanies', 0x00008539);
4306
}
4307
if (!defined('PidLidReminderSignalTime')) {
4308
	define('PidLidReminderSignalTime', 0x00008560);
4309
}
4310
if (!defined('PidLidToDoTitle')) {
4311
	define('PidLidToDoTitle', 0x000085A4);
4312
}
4313
if (!defined('PidLidInfoPathFromName')) {
4314
	define('PidLidInfoPathFromName', 0x000085B1);
4315
}
4316
if (!defined('PidLidClassified')) {
4317
	define('PidLidClassified', 0x000085B5);
4318
}
4319
if (!defined('PidLidClassification')) {
4320
	define('PidLidClassification', 0x000085B6);
4321
}
4322
if (!defined('PidLidClassificationDescription')) {
4323
	define('PidLidClassificationDescription', 0x000085B7);
4324
}
4325
if (!defined('PidLidClassificationGuid')) {
4326
	define('PidLidClassificationGuid', 0x000085B8);
4327
}
4328
if (!defined('PidLidClassificationKeep')) {
4329
	define('PidLidClassificationKeep', 0x000085BA);
4330
}
4331
if (!defined('ecSuccess')) {
4332
	define('ecSuccess', 0x00000000);
4333
}
4334
if (!defined('MAPI_E_USER_ABORT')) {
4335
	define('MAPI_E_USER_ABORT', 0x00000001);
4336
}
4337
if (!defined('MAPI_E_FAILURE')) {
4338
	define('MAPI_E_FAILURE', 0x00000002);
4339
}
4340
if (!defined('MAPI_E_LOGON_FAILURE')) {
4341
	define('MAPI_E_LOGON_FAILURE', 0x00000003);
4342
}
4343
if (!defined('MAPI_E_DISK_FULL')) {
4344
	define('MAPI_E_DISK_FULL', 0x00000004);
4345
}
4346
if (!defined('MAPI_E_INSUFFICIENT_MEMORY')) {
4347
	define('MAPI_E_INSUFFICIENT_MEMORY', 0x00000005);
4348
}
4349
if (!defined('MAPI_E_ACCESS_DENIED')) {
4350
	define('MAPI_E_ACCESS_DENIED', 0x00000006);
4351
}
4352
if (!defined('MAPI_E_TOO_MANY_SESSIONS')) {
4353
	define('MAPI_E_TOO_MANY_SESSIONS', 0x00000008);
4354
}
4355
if (!defined('MAPI_E_TOO_MANY_FILES')) {
4356
	define('MAPI_E_TOO_MANY_FILES', 0x00000009);
4357
}
4358
if (!defined('MAPI_E_TOO_MANY_RECIPIENTS')) {
4359
	define('MAPI_E_TOO_MANY_RECIPIENTS', 0x0000000A);
4360
}
4361
if (!defined('MAPI_E_ATTACHMENT_NOT_FOUND')) {
4362
	define('MAPI_E_ATTACHMENT_NOT_FOUND', 0x0000000B);
4363
}
4364
if (!defined('MAPI_E_ATTACHMENT_OPEN_FAILURE')) {
4365
	define('MAPI_E_ATTACHMENT_OPEN_FAILURE', 0x0000000C);
4366
}
4367
if (!defined('MAPI_E_ATTACHMENT_WRITE_FAILURE')) {
4368
	define('MAPI_E_ATTACHMENT_WRITE_FAILURE', 0x0000000D);
4369
}
4370
if (!defined('MAPI_E_UNKNOWN_RECIPIENT')) {
4371
	define('MAPI_E_UNKNOWN_RECIPIENT', 0x0000000E);
4372
}
4373
if (!defined('MAPI_E_BAD_RECIPTYPE')) {
4374
	define('MAPI_E_BAD_RECIPTYPE', 0x0000000F);
4375
}
4376
if (!defined('MAPI_E_NO_MESSAGES')) {
4377
	define('MAPI_E_NO_MESSAGES', 0x00000010);
4378
}
4379
if (!defined('MAPI_E_INVALID_MESSAGE')) {
4380
	define('MAPI_E_INVALID_MESSAGE', 0x00000011);
4381
}
4382
if (!defined('MAPI_E_TEXT_TOO_LARGE')) {
4383
	define('MAPI_E_TEXT_TOO_LARGE', 0x00000012);
4384
}
4385
if (!defined('MAPI_E_INVALID_SESSION')) {
4386
	define('MAPI_E_INVALID_SESSION', 0x00000013);
4387
}
4388
if (!defined('MAPI_E_TYPE_NOT_SUPPORTED')) {
4389
	define('MAPI_E_TYPE_NOT_SUPPORTED', 0x00000014);
4390
}
4391
if (!defined('MAPI_E_AMBIGUOUS_RECIPIENT')) {
4392
	define('MAPI_E_AMBIGUOUS_RECIPIENT', 0x00000015);
4393
}
4394
if (!defined('MAPI_E_MESSAGE_IN_USE')) {
4395
	define('MAPI_E_MESSAGE_IN_USE', 0x00000016);
4396
}
4397
if (!defined('MAPI_E_NETWORK_FAILURE')) {
4398
	define('MAPI_E_NETWORK_FAILURE', 0x00000017);
4399
}
4400
if (!defined('MAPI_E_INVALID_EDITFIELDS')) {
4401
	define('MAPI_E_INVALID_EDITFIELDS', 0x00000018);
4402
}
4403
if (!defined('MAPI_E_INVALID_RECIPS')) {
4404
	define('MAPI_E_INVALID_RECIPS', 0x00000019);
4405
}
4406
if (!defined('MAPI_E_NOT_SUPPORTED')) {
4407
	define('MAPI_E_NOT_SUPPORTED', 0x0000001A);
4408
}
4409
if (!defined('ecJetError')) {
4410
	define('ecJetError', 0x000003EA);
4411
}
4412
if (!defined('ecUnknownUser')) {
4413
	define('ecUnknownUser', 0x000003EB);
4414
}
4415
if (!defined('ecExiting')) {
4416
	define('ecExiting', 0x000003ED);
4417
}
4418
if (!defined('ecBadConfig')) {
4419
	define('ecBadConfig', 0x000003EE);
4420
}
4421
if (!defined('ecUnknownCodePage')) {
4422
	define('ecUnknownCodePage', 0x000003EF);
4423
}
4424
if (!defined('ecServerOOM')) {
4425
	define('ecServerOOM', 0x000003F0);
4426
}
4427
if (!defined('ecLoginPerm')) {
4428
	define('ecLoginPerm', 0x000003F2);
4429
}
4430
if (!defined('ecDatabaseRolledBack')) {
4431
	define('ecDatabaseRolledBack', 0x000003F3);
4432
}
4433
if (!defined('ecDatabaseCopiedError')) {
4434
	define('ecDatabaseCopiedError', 0x000003F4);
4435
}
4436
if (!defined('ecAuditNotAllowed')) {
4437
	define('ecAuditNotAllowed', 0x000003F5);
4438
}
4439
if (!defined('ecZombieUser')) {
4440
	define('ecZombieUser', 0x000003F6);
4441
}
4442
if (!defined('ecUnconvertableACL')) {
4443
	define('ecUnconvertableACL', 0x000003F7);
4444
}
4445
if (!defined('ecNoFreeJses')) {
4446
	define('ecNoFreeJses', 0x0000044C);
4447
}
4448
if (!defined('ecDifferentJses')) {
4449
	define('ecDifferentJses', 0x0000044D);
4450
}
4451
if (!defined('ecFileRemove')) {
4452
	define('ecFileRemove', 0x0000044F);
4453
}
4454
if (!defined('ecParameterOverflow')) {
4455
	define('ecParameterOverflow', 0x00000450);
4456
}
4457
if (!defined('ecBadVersion')) {
4458
	define('ecBadVersion', 0x00000451);
4459
}
4460
if (!defined('ecTooManyCols')) {
4461
	define('ecTooManyCols', 0x00000452);
4462
}
4463
if (!defined('ecHaveMore')) {
4464
	define('ecHaveMore', 0x00000453);
4465
}
4466
if (!defined('ecDatabaseError')) {
4467
	define('ecDatabaseError', 0x00000454);
4468
}
4469
if (!defined('ecIndexNameTooBig')) {
4470
	define('ecIndexNameTooBig', 0x00000455);
4471
}
4472
if (!defined('ecUnsupportedProp')) {
4473
	define('ecUnsupportedProp', 0x00000456);
4474
}
4475
if (!defined('ecMsgNotSaved')) {
4476
	define('ecMsgNotSaved', 0x00000457);
4477
}
4478
if (!defined('ecUnpubNotif')) {
4479
	define('ecUnpubNotif', 0x00000459);
4480
}
4481
if (!defined('ecDifferentRoot')) {
4482
	define('ecDifferentRoot', 0x0000045B);
4483
}
4484
if (!defined('ecBadFolderName')) {
4485
	define('ecBadFolderName', 0x0000045C);
4486
}
4487
if (!defined('ecAttachOpen')) {
4488
	define('ecAttachOpen', 0x0000045D);
4489
}
4490
if (!defined('ecInvClpsState')) {
4491
	define('ecInvClpsState', 0x0000045E);
4492
}
4493
if (!defined('ecSkipMyChildren')) {
4494
	define('ecSkipMyChildren', 0x0000045F);
4495
}
4496
if (!defined('ecSearchFolder')) {
4497
	define('ecSearchFolder', 0x00000460);
4498
}
4499
if (!defined('ecNotSearchFolder')) {
4500
	define('ecNotSearchFolder', 0x00000461);
4501
}
4502
if (!defined('ecFolderSetReceive')) {
4503
	define('ecFolderSetReceive', 0x00000462);
4504
}
4505
if (!defined('ecNoReceiveFolder')) {
4506
	define('ecNoReceiveFolder', 0x00000463);
4507
}
4508
if (!defined('ecNoDelSubmitMsg')) {
4509
	define('ecNoDelSubmitMsg', 0x00000465);
4510
}
4511
if (!defined('ecInvalidRecips')) {
4512
	define('ecInvalidRecips', 0x00000467);
4513
}
4514
if (!defined('ecNoReplicaHere')) {
4515
	define('ecNoReplicaHere', 0x00000468);
4516
}
4517
if (!defined('ecNoReplicaAvailable')) {
4518
	define('ecNoReplicaAvailable', 0x00000469);
4519
}
4520
if (!defined('ecPublicMDB')) {
4521
	define('ecPublicMDB', 0x0000046A);
4522
}
4523
if (!defined('ecNotPublicMDB')) {
4524
	define('ecNotPublicMDB', 0x0000046B);
4525
}
4526
if (!defined('ecRecordNotFound')) {
4527
	define('ecRecordNotFound', 0x0000046C);
4528
}
4529
if (!defined('ecReplConflict')) {
4530
	define('ecReplConflict', 0x0000046D);
4531
}
4532
if (!defined('ecFxBufferOverrun')) {
4533
	define('ecFxBufferOverrun', 0x00000470);
4534
}
4535
if (!defined('ecFxBufferEmpty')) {
4536
	define('ecFxBufferEmpty', 0x00000471);
4537
}
4538
if (!defined('ecFxPartialValue')) {
4539
	define('ecFxPartialValue', 0x00000472);
4540
}
4541
if (!defined('ecFxNoRoom')) {
4542
	define('ecFxNoRoom', 0x00000473);
4543
}
4544
if (!defined('ecMaxTimeExpired')) {
4545
	define('ecMaxTimeExpired', 0x00000474);
4546
}
4547
if (!defined('ecDstError')) {
4548
	define('ecDstError', 0x00000475);
4549
}
4550
if (!defined('ecMDBNotInit')) {
4551
	define('ecMDBNotInit', 0x00000476);
4552
}
4553
if (!defined('ecWrongServer')) {
4554
	define('ecWrongServer', 0x00000478);
4555
}
4556
if (!defined('ecBufferTooSmall')) {
4557
	define('ecBufferTooSmall', 0x0000047D);
4558
}
4559
if (!defined('ecRequiresRefResolve')) {
4560
	define('ecRequiresRefResolve', 0x0000047E);
4561
}
4562
if (!defined('ecServerPaused')) {
4563
	define('ecServerPaused', 0x0000047F);
4564
}
4565
if (!defined('ecServerBusy')) {
4566
	define('ecServerBusy', 0x00000480);
4567
}
4568
if (!defined('ecNoSuchLogon')) {
4569
	define('ecNoSuchLogon', 0x00000481);
4570
}
4571
if (!defined('ecLoadLibFailed')) {
4572
	define('ecLoadLibFailed', 0x00000482);
4573
}
4574
if (!defined('ecObjAlreadyConfig')) {
4575
	define('ecObjAlreadyConfig', 0x00000483);
4576
}
4577
if (!defined('ecObjNotConfig')) {
4578
	define('ecObjNotConfig', 0x00000484);
4579
}
4580
if (!defined('ecDataLoss')) {
4581
	define('ecDataLoss', 0x00000485);
4582
}
4583
if (!defined('ecMaxSendThreadExceeded')) {
4584
	define('ecMaxSendThreadExceeded', 0x00000488);
4585
}
4586
if (!defined('ecFxErrorMarker')) {
4587
	define('ecFxErrorMarker', 0x00000489);
4588
}
4589
if (!defined('ecNoFreeJtabs')) {
4590
	define('ecNoFreeJtabs', 0x0000048A);
4591
}
4592
if (!defined('ecNotPrivateMDB')) {
4593
	define('ecNotPrivateMDB', 0x0000048B);
4594
}
4595
if (!defined('ecIsintegMDB')) {
4596
	define('ecIsintegMDB', 0x0000048C);
4597
}
4598
if (!defined('ecRecoveryMDBMismatch')) {
4599
	define('ecRecoveryMDBMismatch', 0x0000048D);
4600
}
4601
if (!defined('ecTableMayNotBeDeleted')) {
4602
	define('ecTableMayNotBeDeleted', 0x0000048E);
4603
}
4604
if (!defined('ecSearchFolderScopeViolation')) {
4605
	define('ecSearchFolderScopeViolation', 0x00000490);
4606
}
4607
if (!defined('ecRpcRegisterIf')) {
4608
	define('ecRpcRegisterIf', 0x000004B1);
4609
}
4610
if (!defined('ecRpcListen')) {
4611
	define('ecRpcListen', 0x000004B2);
4612
}
4613
if (!defined('ecRpcFormat')) {
4614
	define('ecRpcFormat', 0x000004B6);
4615
}
4616
if (!defined('ecNoCopyTo')) {
4617
	define('ecNoCopyTo', 0x000004B7);
4618
}
4619
if (!defined('ecNullObject')) {
4620
	define('ecNullObject', 0x000004B9);
4621
}
4622
if (!defined('ecRpcAuthentication')) {
4623
	define('ecRpcAuthentication', 0x000004BC);
4624
}
4625
if (!defined('ecRpcBadAuthenticationLevel')) {
4626
	define('ecRpcBadAuthenticationLevel', 0x000004BD);
4627
}
4628
if (!defined('ecNullCommentRestriction')) {
4629
	define('ecNullCommentRestriction', 0x000004BE);
4630
}
4631
if (!defined('ecRulesLoadError')) {
4632
	define('ecRulesLoadError', 0x000004CC);
4633
}
4634
if (!defined('ecRulesDelivErr')) {
4635
	define('ecRulesDelivErr', 0x000004CD);
4636
}
4637
if (!defined('ecRulesParsingErr')) {
4638
	define('ecRulesParsingErr', 0x000004CE);
4639
}
4640
if (!defined('ecRulesCreateDaeErr')) {
4641
	define('ecRulesCreateDaeErr', 0x000004CF);
4642
}
4643
if (!defined('ecRulesCreateDamErr')) {
4644
	define('ecRulesCreateDamErr', 0x000004D0);
4645
}
4646
if (!defined('ecRulesNoMoveCopyFolder')) {
4647
	define('ecRulesNoMoveCopyFolder', 0x000004D1);
4648
}
4649
if (!defined('ecRulesNoFolderRights')) {
4650
	define('ecRulesNoFolderRights', 0x000004D2);
4651
}
4652
if (!defined('ecMessageTooBig')) {
4653
	define('ecMessageTooBig', 0x000004D4);
4654
}
4655
if (!defined('ecFormNotValid')) {
4656
	define('ecFormNotValid', 0x000004D5);
4657
}
4658
if (!defined('ecNotAuthorized')) {
4659
	define('ecNotAuthorized', 0x000004D6);
4660
}
4661
if (!defined('ecDeleteMessage')) {
4662
	define('ecDeleteMessage', 0x000004D7);
4663
}
4664
if (!defined('ecBounceMessage')) {
4665
	define('ecBounceMessage', 0x000004D8);
4666
}
4667
if (!defined('ecQuotaExceeded')) {
4668
	define('ecQuotaExceeded', 0x000004D9);
4669
}
4670
if (!defined('ecMaxSubmissionExceeded')) {
4671
	define('ecMaxSubmissionExceeded', 0x000004DA);
4672
}
4673
if (!defined('ecMaxAttachmentExceeded')) {
4674
	define('ecMaxAttachmentExceeded', 0x000004DB);
4675
}
4676
if (!defined('ecSendAsDenied')) {
4677
	define('ecSendAsDenied', 0x000004DC);
4678
}
4679
if (!defined('ecShutoffQuotaExceeded')) {
4680
	define('ecShutoffQuotaExceeded', 0x000004DD);
4681
}
4682
if (!defined('ecMaxObjsExceeded')) {
4683
	define('ecMaxObjsExceeded', 0x000004DE);
4684
}
4685
if (!defined('ecClientVerDisallowed')) {
4686
	define('ecClientVerDisallowed', 0x000004DF);
4687
}
4688
if (!defined('ecRpcHttpDisallowed')) {
4689
	define('ecRpcHttpDisallowed', 0x000004E0);
4690
}
4691
if (!defined('ecCachedModeRequired')) {
4692
	define('ecCachedModeRequired', 0x000004E1);
4693
}
4694
if (!defined('ecFolderNotCleanedUp')) {
4695
	define('ecFolderNotCleanedUp', 0x000004E3);
4696
}
4697
if (!defined('ecFmtError')) {
4698
	define('ecFmtError', 0x000004ED);
4699
}
4700
if (!defined('ecNotExpanded')) {
4701
	define('ecNotExpanded', 0x000004F7);
4702
}
4703
if (!defined('ecNotCollapsed')) {
4704
	define('ecNotCollapsed', 0x000004F8);
4705
}
4706
if (!defined('ecLeaf')) {
4707
	define('ecLeaf', 0x000004F9);
4708
}
4709
if (!defined('ecUnregisteredNamedProp')) {
4710
	define('ecUnregisteredNamedProp', 0x000004FA);
4711
}
4712
if (!defined('ecFolderDisabled')) {
4713
	define('ecFolderDisabled', 0x000004FB);
4714
}
4715
if (!defined('ecDomainError')) {
4716
	define('ecDomainError', 0x000004FC);
4717
}
4718
if (!defined('ecNoCreateRight')) {
4719
	define('ecNoCreateRight', 0x000004FF);
4720
}
4721
if (!defined('ecPublicRoot')) {
4722
	define('ecPublicRoot', 0x00000500);
4723
}
4724
if (!defined('ecNoReadRight')) {
4725
	define('ecNoReadRight', 0x00000501);
4726
}
4727
if (!defined('ecNoCreateSubfolderRight')) {
4728
	define('ecNoCreateSubfolderRight', 0x00000502);
4729
}
4730
if (!defined('ecDstNullObject')) {
4731
	define('ecDstNullObject', 0x00000503);
4732
}
4733
if (!defined('ecMsgCycle')) {
4734
	define('ecMsgCycle', 0x00000504);
4735
}
4736
if (!defined('ecTooManyRecips')) {
4737
	define('ecTooManyRecips', 0x00000505);
4738
}
4739
if (!defined('ecVirusScanInProgress')) {
4740
	define('ecVirusScanInProgress', 0x0000050A);
4741
}
4742
if (!defined('ecVirusDetected')) {
4743
	define('ecVirusDetected', 0x0000050B);
4744
}
4745
if (!defined('ecMailboxInTransit')) {
4746
	define('ecMailboxInTransit', 0x0000050C);
4747
}
4748
if (!defined('ecBackupInProgress')) {
4749
	define('ecBackupInProgress', 0x0000050D);
4750
}
4751
if (!defined('ecVirusMessageDeleted')) {
4752
	define('ecVirusMessageDeleted', 0x0000050E);
4753
}
4754
if (!defined('ecInvalidBackupSequence')) {
4755
	define('ecInvalidBackupSequence', 0x0000050F);
4756
}
4757
if (!defined('ecInvalidBackupType')) {
4758
	define('ecInvalidBackupType', 0x00000510);
4759
}
4760
if (!defined('ecTooManyBackupsInProgress')) {
4761
	define('ecTooManyBackupsInProgress', 0x00000511);
4762
}
4763
if (!defined('ecRestoreInProgress')) {
4764
	define('ecRestoreInProgress', 0x00000512);
4765
}
4766
if (!defined('ecDuplicateObject')) {
4767
	define('ecDuplicateObject', 0x00000579);
4768
}
4769
if (!defined('ecObjectNotFound')) {
4770
	define('ecObjectNotFound', 0x0000057A);
4771
}
4772
if (!defined('ecFixupReplyRule')) {
4773
	define('ecFixupReplyRule', 0x0000057B);
4774
}
4775
if (!defined('ecTemplateNotFound')) {
4776
	define('ecTemplateNotFound', 0x0000057C);
4777
}
4778
if (!defined('ecRuleException')) {
4779
	define('ecRuleException', 0x0000057D);
4780
}
4781
if (!defined('ecDSNoSuchObject')) {
4782
	define('ecDSNoSuchObject', 0x0000057E);
4783
}
4784
if (!defined('ecMessageAlreadyTombstoned')) {
4785
	define('ecMessageAlreadyTombstoned', 0x0000057F);
4786
}
4787
if (!defined('ecRequiresRWTransaction')) {
4788
	define('ecRequiresRWTransaction', 0x00000596);
4789
}
4790
if (!defined('ecPaused')) {
4791
	define('ecPaused', 0x0000060E);
4792
}
4793
if (!defined('ecNotPaused')) {
4794
	define('ecNotPaused', 0x0000060F);
4795
}
4796
if (!defined('ecWrongMailbox')) {
4797
	define('ecWrongMailbox', 0x00000648);
4798
}
4799
if (!defined('ecChgPassword')) {
4800
	define('ecChgPassword', 0x0000064C);
4801
}
4802
if (!defined('ecPwdExpired')) {
4803
	define('ecPwdExpired', 0x0000064D);
4804
}
4805
if (!defined('ecInvWkstn')) {
4806
	define('ecInvWkstn', 0x0000064E);
4807
}
4808
if (!defined('ecInvLogonHrs')) {
4809
	define('ecInvLogonHrs', 0x0000064F);
4810
}
4811
if (!defined('ecAcctDisabled')) {
4812
	define('ecAcctDisabled', 0x00000650);
4813
}
4814
if (!defined('ecRuleVersion')) {
4815
	define('ecRuleVersion', 0x000006A4);
4816
}
4817
if (!defined('ecRuleFormat')) {
4818
	define('ecRuleFormat', 0x000006A5);
4819
}
4820
if (!defined('ecRuleSendAsDenied')) {
4821
	define('ecRuleSendAsDenied', 0x000006A6);
4822
}
4823
if (!defined('ecNoServerSupport')) {
4824
	define('ecNoServerSupport', 0x000006B9);
4825
}
4826
if (!defined('ecLockTimedOut')) {
4827
	define('ecLockTimedOut', 0x000006BA);
4828
}
4829
if (!defined('ecObjectLocked')) {
4830
	define('ecObjectLocked', 0x000006BB);
4831
}
4832
if (!defined('ecInvalidLockNamespace')) {
4833
	define('ecInvalidLockNamespace', 0x000006BD);
4834
}
4835
if (!defined('RPC_X_BAD_STUB_DATA')) {
4836
	define('RPC_X_BAD_STUB_DATA', 0x000006F7);
4837
}
4838
if (!defined('ecMessageDeleted')) {
4839
	define('ecMessageDeleted', 0x000007D6);
4840
}
4841
if (!defined('ecProtocolDisabled')) {
4842
	define('ecProtocolDisabled', 0x000007D8);
4843
}
4844
if (!defined('ecClearTextLogonDisabled')) {
4845
	define('ecClearTextLogonDisabled', 0x000007D9);
4846
}
4847
if (!defined('ecRejected')) {
4848
	define('ecRejected', 0x000007EE);
4849
}
4850
if (!defined('ecAmbiguousAlias')) {
4851
	define('ecAmbiguousAlias', 0x0000089A);
4852
}
4853
if (!defined('ecUnknownMailbox')) {
4854
	define('ecUnknownMailbox', 0x0000089B);
4855
}
4856
if (!defined('ecExpReserved')) {
4857
	define('ecExpReserved', 0x000008FC);
4858
}
4859
if (!defined('ecExpParseDepth')) {
4860
	define('ecExpParseDepth', 0x000008FD);
4861
}
4862
if (!defined('ecExpFuncArgType')) {
4863
	define('ecExpFuncArgType', 0x000008FE);
4864
}
4865
if (!defined('ecExpSyntax')) {
4866
	define('ecExpSyntax', 0x000008FF);
4867
}
4868
if (!defined('ecExpBadStrToken')) {
4869
	define('ecExpBadStrToken', 0x00000900);
4870
}
4871
if (!defined('ecExpBadColToken')) {
4872
	define('ecExpBadColToken', 0x00000901);
4873
}
4874
if (!defined('ecExpTypeMismatch')) {
4875
	define('ecExpTypeMismatch', 0x00000902);
4876
}
4877
if (!defined('ecExpOpNotSupported')) {
4878
	define('ecExpOpNotSupported', 0x00000903);
4879
}
4880
if (!defined('ecExpDivByZero')) {
4881
	define('ecExpDivByZero', 0x00000904);
4882
}
4883
if (!defined('ecExpUnaryArgType')) {
4884
	define('ecExpUnaryArgType', 0x00000905);
4885
}
4886
if (!defined('ecNotLocked')) {
4887
	define('ecNotLocked', 0x00000960);
4888
}
4889
if (!defined('ecClientEvent')) {
4890
	define('ecClientEvent', 0x00000961);
4891
}
4892
if (!defined('ecCorruptEvent')) {
4893
	define('ecCorruptEvent', 0x00000965);
4894
}
4895
if (!defined('ecCorruptWatermark')) {
4896
	define('ecCorruptWatermark', 0x00000966);
4897
}
4898
if (!defined('ecEventError')) {
4899
	define('ecEventError', 0x00000967);
4900
}
4901
if (!defined('ecWatermarkError')) {
4902
	define('ecWatermarkError', 0x00000968);
4903
}
4904
if (!defined('ecNonCanonicalACL')) {
4905
	define('ecNonCanonicalACL', 0x00000969);
4906
}
4907
if (!defined('ecMailboxDisabled')) {
4908
	define('ecMailboxDisabled', 0x0000096C);
4909
}
4910
if (!defined('ecRulesFolderOverQuota')) {
4911
	define('ecRulesFolderOverQuota', 0x0000096D);
4912
}
4913
if (!defined('ecADUnavailable')) {
4914
	define('ecADUnavailable', 0x0000096E);
4915
}
4916
if (!defined('ecADError')) {
4917
	define('ecADError', 0x0000096F);
4918
}
4919
if (!defined('ecNotEncrypted')) {
4920
	define('ecNotEncrypted', 0x00000970);
4921
}
4922
if (!defined('ecADNotFound')) {
4923
	define('ecADNotFound', 0x00000971);
4924
}
4925
if (!defined('ecADPropertyError')) {
4926
	define('ecADPropertyError', 0x00000972);
4927
}
4928
if (!defined('ecRpcServerTooBusy')) {
4929
	define('ecRpcServerTooBusy', 0x00000973);
4930
}
4931
if (!defined('ecRpcOutOfMemory')) {
4932
	define('ecRpcOutOfMemory', 0x00000974);
4933
}
4934
if (!defined('ecRpcServerOutOfMemory')) {
4935
	define('ecRpcServerOutOfMemory', 0x00000975);
4936
}
4937
if (!defined('ecRpcOutOfResources')) {
4938
	define('ecRpcOutOfResources', 0x00000976);
4939
}
4940
if (!defined('ecRpcServerUnavailable')) {
4941
	define('ecRpcServerUnavailable', 0x00000977);
4942
}
4943
if (!defined('ecSecureSubmitError')) {
4944
	define('ecSecureSubmitError', 0x0000097A);
4945
}
4946
if (!defined('ecEventsDeleted')) {
4947
	define('ecEventsDeleted', 0x0000097C);
4948
}
4949
if (!defined('ecSubsystemStopping')) {
4950
	define('ecSubsystemStopping', 0x0000097D);
4951
}
4952
if (!defined('ecSAUnavailable')) {
4953
	define('ecSAUnavailable', 0x0000097E);
4954
}
4955
if (!defined('ecCIStopping')) {
4956
	define('ecCIStopping', 0x00000A28);
4957
}
4958
if (!defined('ecFxInvalidState')) {
4959
	define('ecFxInvalidState', 0x00000A29);
4960
}
4961
if (!defined('ecFxUnexpectedMarker')) {
4962
	define('ecFxUnexpectedMarker', 0x00000A2A);
4963
}
4964
if (!defined('ecDuplicateDelivery')) {
4965
	define('ecDuplicateDelivery', 0x00000A2B);
4966
}
4967
if (!defined('ecConditionViolation')) {
4968
	define('ecConditionViolation', 0x00000A2C);
4969
}
4970
if (!defined('ecMaxPoolExceeded')) {
4971
	define('ecMaxPoolExceeded', 0x00000A2D);
4972
}
4973
if (!defined('ecRpcInvalidHandle')) {
4974
	define('ecRpcInvalidHandle', 0x00000A2E);
4975
}
4976
if (!defined('ecEventNotFound')) {
4977
	define('ecEventNotFound', 0x00000A2F);
4978
}
4979
if (!defined('ecPropNotPromoted')) {
4980
	define('ecPropNotPromoted', 0x00000A30);
4981
}
4982
if (!defined('ecLowMdbSpace')) {
4983
	define('ecLowMdbSpace', 0x00000A31);
4984
}
4985
if (!defined('MAPI_W_NO_SERVICE')) {
4986
	define('MAPI_W_NO_SERVICE', 0x00040203);
4987
}
4988
if (!defined('MAPI_W_ERRORS_RETURNED')) {
4989
	define('MAPI_W_ERRORS_RETURNED', 0x00040380);
4990
}
4991
if (!defined('MAPI_W_POSITION_CHANGED')) {
4992
	define('MAPI_W_POSITION_CHANGED', 0x00040481);
4993
}
4994
if (!defined('MAPI_W_APPROX_COUNT')) {
4995
	define('MAPI_W_APPROX_COUNT', 0x00040482);
4996
}
4997
if (!defined('MAPI_W_CANCEL_MESSAGE')) {
4998
	define('MAPI_W_CANCEL_MESSAGE', 0x00040580);
4999
}
5000
if (!defined('MAPI_W_PARTIAL_COMPLETION')) {
5001
	define('MAPI_W_PARTIAL_COMPLETION', 0x00040680);
5002
}
5003
if (!defined('SYNC_W_PROGRESS')) {
5004
	define('SYNC_W_PROGRESS', 0x00040820);
5005
}
5006
if (!defined('SYNC_W_CLIENT_CHANGE_NEWER')) {
5007
	define('SYNC_W_CLIENT_CHANGE_NEWER', 0x00040821);
5008
}
5009
if (!defined('MAPI_E_INTERFACE_NOT_SUPPORTED')) {
5010
	define('MAPI_E_INTERFACE_NOT_SUPPORTED', 0x80004002);
5011
}
5012
if (!defined('MAPI_E_CALL_FAILED')) {
5013
	define('MAPI_E_CALL_FAILED', 0x80004005);
5014
}
5015
if (!defined('SYNC_E_ERROR')) {
5016
	define('SYNC_E_ERROR', 0x80004005);
5017
}
5018
if (!defined('MAPI_E_NO_SUPPORT')) {
5019
	define('MAPI_E_NO_SUPPORT', 0x80040102);
5020
}
5021
if (!defined('MAPI_E_BAD_CHARWIDTH')) {
5022
	define('MAPI_E_BAD_CHARWIDTH', 0x80040103);
5023
}
5024
if (!defined('MAPI_E_STRING_TOO_LONG')) {
5025
	define('MAPI_E_STRING_TOO_LONG', 0x80040105);
5026
}
5027
if (!defined('MAPI_E_UNKNOWN_FLAGS')) {
5028
	define('MAPI_E_UNKNOWN_FLAGS', 0x80040106);
5029
}
5030
if (!defined('SYNC_E_UNKNOWN_FLAGS')) {
5031
	define('SYNC_E_UNKNOWN_FLAGS', 0x80040106);
5032
}
5033
if (!defined('MAPI_E_INVALID_ENTRYID')) {
5034
	define('MAPI_E_INVALID_ENTRYID', 0x80040107);
5035
}
5036
if (!defined('MAPI_E_INVALID_OBJECT')) {
5037
	define('MAPI_E_INVALID_OBJECT', 0x80040108);
5038
}
5039
if (!defined('MAPI_E_OBJECT_CHANGED')) {
5040
	define('MAPI_E_OBJECT_CHANGED', 0x80040109);
5041
}
5042
if (!defined('MAPI_E_OBJECT_DELETED')) {
5043
	define('MAPI_E_OBJECT_DELETED', 0x8004010A);
5044
}
5045
if (!defined('MAPI_E_BUSY')) {
5046
	define('MAPI_E_BUSY', 0x8004010B);
5047
}
5048
if (!defined('MAPI_E_NOT_ENOUGH_DISK')) {
5049
	define('MAPI_E_NOT_ENOUGH_DISK', 0x8004010D);
5050
}
5051
if (!defined('MAPI_E_NOT_ENOUGH_RESOURCES')) {
5052
	define('MAPI_E_NOT_ENOUGH_RESOURCES', 0x8004010E);
5053
}
5054
if (!defined('MAPI_E_NOT_FOUND')) {
5055
	define('MAPI_E_NOT_FOUND', 0x8004010F);
5056
}
5057
if (!defined('MAPI_E_VERSION')) {
5058
	define('MAPI_E_VERSION', 0x80040110);
5059
}
5060
if (!defined('MAPI_E_LOGON_FAILED')) {
5061
	define('MAPI_E_LOGON_FAILED', 0x80040111);
5062
}
5063
if (!defined('MAPI_E_SESSION_LIMIT')) {
5064
	define('MAPI_E_SESSION_LIMIT', 0x80040112);
5065
}
5066
if (!defined('MAPI_E_USER_CANCEL')) {
5067
	define('MAPI_E_USER_CANCEL', 0x80040113);
5068
}
5069
if (!defined('MAPI_E_UNABLE_TO_ABORT')) {
5070
	define('MAPI_E_UNABLE_TO_ABORT', 0x80040114);
5071
}
5072
if (!defined('ecRpcFailed')) {
5073
	define('ecRpcFailed', 0x80040115);
5074
}
5075
if (!defined('MAPI_E_NETWORK_ERROR')) {
5076
	define('MAPI_E_NETWORK_ERROR', 0x80040115);
5077
}
5078
if (!defined('MAPI_E_DISK_ERROR')) {
5079
	define('MAPI_E_DISK_ERROR', 0x80040116);
5080
}
5081
if (!defined('MAPI_E_TOO_COMPLEX')) {
5082
	define('MAPI_E_TOO_COMPLEX', 0x80040117);
5083
}
5084
if (!defined('MAPI_E_BAD_COLUMN')) {
5085
	define('MAPI_E_BAD_COLUMN', 0x80040118);
5086
}
5087
if (!defined('MAPI_E_EXTENDED_ERROR')) {
5088
	define('MAPI_E_EXTENDED_ERROR', 0x80040119);
5089
}
5090
if (!defined('MAPI_E_COMPUTED')) {
5091
	define('MAPI_E_COMPUTED', 0x8004011A);
5092
}
5093
if (!defined('MAPI_E_CORRUPT_DATA')) {
5094
	define('MAPI_E_CORRUPT_DATA', 0x8004011B);
5095
}
5096
if (!defined('MAPI_E_UNCONFIGURED')) {
5097
	define('MAPI_E_UNCONFIGURED', 0x8004011C);
5098
}
5099
if (!defined('MAPI_E_FAILONEPROVIDER')) {
5100
	define('MAPI_E_FAILONEPROVIDER', 0x8004011D);
5101
}
5102
if (!defined('MAPI_E_UNKNOWN_CPID')) {
5103
	define('MAPI_E_UNKNOWN_CPID', 0x8004011E);
5104
}
5105
if (!defined('MAPI_E_UNKNOWN_LCID')) {
5106
	define('MAPI_E_UNKNOWN_LCID', 0x8004011F);
5107
}
5108
if (!defined('MAPI_E_PASSWORD_CHANGE_REQUIRED')) {
5109
	define('MAPI_E_PASSWORD_CHANGE_REQUIRED', 0x80040120);
5110
}
5111
if (!defined('MAPI_E_PASSWORD_EXPIRED')) {
5112
	define('MAPI_E_PASSWORD_EXPIRED', 0x80040121);
5113
}
5114
if (!defined('MAPI_E_INVALID_WORKSTATION_ACCOUNT')) {
5115
	define('MAPI_E_INVALID_WORKSTATION_ACCOUNT', 0x80040122);
5116
}
5117
if (!defined('MAPI_E_INVALID_ACCESS_TIME')) {
5118
	define('MAPI_E_INVALID_ACCESS_TIME', 0x80040123);
5119
}
5120
if (!defined('MAPI_E_ACCOUNT_DISABLED')) {
5121
	define('MAPI_E_ACCOUNT_DISABLED', 0x80040124);
5122
}
5123
if (!defined('MAPI_E_END_OF_SESSION')) {
5124
	define('MAPI_E_END_OF_SESSION', 0x80040200);
5125
}
5126
if (!defined('MAPI_E_UNKNOWN_ENTRYID')) {
5127
	define('MAPI_E_UNKNOWN_ENTRYID', 0x80040201);
5128
}
5129
if (!defined('MAPI_E_MISSING_REQUIRED_COLUMN')) {
5130
	define('MAPI_E_MISSING_REQUIRED_COLUMN', 0x80040202);
5131
}
5132
if (!defined('MAPI_E_BAD_VALUE')) {
5133
	define('MAPI_E_BAD_VALUE', 0x80040301);
5134
}
5135
if (!defined('MAPI_E_INVALID_TYPE')) {
5136
	define('MAPI_E_INVALID_TYPE', 0x80040302);
5137
}
5138
if (!defined('MAPI_E_TYPE_NO_SUPPORT')) {
5139
	define('MAPI_E_TYPE_NO_SUPPORT', 0x80040303);
5140
}
5141
if (!defined('MAPI_E_UNEXPECTED_TYPE')) {
5142
	define('MAPI_E_UNEXPECTED_TYPE', 0x80040304);
5143
}
5144
if (!defined('MAPI_E_TOO_BIG')) {
5145
	define('MAPI_E_TOO_BIG', 0x80040305);
5146
}
5147
if (!defined('MAPI_E_DECLINE_COPY')) {
5148
	define('MAPI_E_DECLINE_COPY', 0x80040306);
5149
}
5150
if (!defined('MAPI_E_UNEXPECTED_ID')) {
5151
	define('MAPI_E_UNEXPECTED_ID', 0x80040307);
5152
}
5153
if (!defined('MAPI_E_UNABLE_TO_COMPLETE')) {
5154
	define('MAPI_E_UNABLE_TO_COMPLETE', 0x80040400);
5155
}
5156
if (!defined('MAPI_E_TIMEOUT')) {
5157
	define('MAPI_E_TIMEOUT', 0x80040401);
5158
}
5159
if (!defined('MAPI_E_TABLE_EMPTY')) {
5160
	define('MAPI_E_TABLE_EMPTY', 0x80040402);
5161
}
5162
if (!defined('MAPI_E_TABLE_TOO_BIG')) {
5163
	define('MAPI_E_TABLE_TOO_BIG', 0x80040403);
5164
}
5165
if (!defined('MAPI_E_INVALID_BOOKMARK')) {
5166
	define('MAPI_E_INVALID_BOOKMARK', 0x80040405);
5167
}
5168
if (!defined('MAPI_E_WAIT')) {
5169
	define('MAPI_E_WAIT', 0x80040500);
5170
}
5171
if (!defined('MAPI_E_CANCEL')) {
5172
	define('MAPI_E_CANCEL', 0x80040501);
5173
}
5174
if (!defined('MAPI_E_NOT_ME')) {
5175
	define('MAPI_E_NOT_ME', 0x80040502);
5176
}
5177
if (!defined('MAPI_E_CORRUPT_STORE')) {
5178
	define('MAPI_E_CORRUPT_STORE', 0x80040600);
5179
}
5180
if (!defined('MAPI_E_NOT_IN_QUEUE')) {
5181
	define('MAPI_E_NOT_IN_QUEUE', 0x80040601);
5182
}
5183
if (!defined('MAPI_E_NO_SUPPRESS')) {
5184
	define('MAPI_E_NO_SUPPRESS', 0x80040602);
5185
}
5186
if (!defined('MAPI_E_COLLISION')) {
5187
	define('MAPI_E_COLLISION', 0x80040604);
5188
}
5189
if (!defined('MAPI_E_NOT_INITIALIZED')) {
5190
	define('MAPI_E_NOT_INITIALIZED', 0x80040605);
5191
}
5192
if (!defined('MAPI_E_NON_STANDARD')) {
5193
	define('MAPI_E_NON_STANDARD', 0x80040606);
5194
}
5195
if (!defined('MAPI_E_NO_RECIPIENTS')) {
5196
	define('MAPI_E_NO_RECIPIENTS', 0x80040607);
5197
}
5198
if (!defined('MAPI_E_SUBMITTED')) {
5199
	define('MAPI_E_SUBMITTED', 0x80040608);
5200
}
5201
if (!defined('MAPI_E_HAS_FOLDERS')) {
5202
	define('MAPI_E_HAS_FOLDERS', 0x80040609);
5203
}
5204
if (!defined('MAPI_E_HAS_MESSAGES')) {
5205
	define('MAPI_E_HAS_MESSAGES', 0x8004060A);
5206
}
5207
if (!defined('MAPI_E_FOLDER_CYCLE')) {
5208
	define('MAPI_E_FOLDER_CYCLE', 0x8004060B);
5209
}
5210
if (!defined('MAPI_E_STORE_FULL')) {
5211
	define('MAPI_E_STORE_FULL', 0x8004060C);
5212
}
5213
if (!defined('MAPI_E_LOCKID_LIMIT')) {
5214
	define('MAPI_E_LOCKID_LIMIT', 0x8004060D);
5215
}
5216
if (!defined('MAPI_E_AMBIGUOUS_RECIP')) {
5217
	define('MAPI_E_AMBIGUOUS_RECIP', 0x80040700);
5218
}
5219
if (!defined('SYNC_E_OBJECT_DELETED')) {
5220
	define('SYNC_E_OBJECT_DELETED', 0x80040800);
5221
}
5222
if (!defined('SYNC_E_IGNORE')) {
5223
	define('SYNC_E_IGNORE', 0x80040801);
5224
}
5225
if (!defined('SYNC_E_CONFLICT')) {
5226
	define('SYNC_E_CONFLICT', 0x80040802);
5227
}
5228
if (!defined('SYNC_E_NO_PARENT')) {
5229
	define('SYNC_E_NO_PARENT', 0x80040803);
5230
}
5231
if (!defined('SYNC_E_CYCLE_DETECTED')) {
5232
	define('SYNC_E_CYCLE_DETECTED', 0x80040804);
5233
}
5234
if (!defined('SYNC_E_CYCLE')) {
5235
	define('SYNC_E_CYCLE', 0x80040804);
5236
}
5237
if (!defined('SYNC_E_INCEST')) {
5238
	define('SYNC_E_INCEST', 0x80040804);
5239
}
5240
if (!defined('SYNC_E_UNSYNCHRONIZED')) {
5241
	define('SYNC_E_UNSYNCHRONIZED', 0x80040805);
5242
}
5243
if (!defined('MAPI_E_NAMED_PROP_QUOTA_EXCEEDED')) {
5244
	define('MAPI_E_NAMED_PROP_QUOTA_EXCEEDED', 0x80040900);
5245
}
5246
if (!defined('MAPI_E_NO_ACCESS')) {
5247
	define('MAPI_E_NO_ACCESS', 0x80070005);
5248
}
5249
if (!defined('MAPI_E_NOT_ENOUGH_MEMORY')) {
5250
	define('MAPI_E_NOT_ENOUGH_MEMORY', 0x8007000E);
5251
}
5252
if (!defined('MAPI_E_INVALID_PARAMETER')) {
5253
	define('MAPI_E_INVALID_PARAMETER', 0x80070057);
5254
}
5255
if (!defined('SYNC_E_INVALID_PARAMETER')) {
5256
	define('SYNC_E_INVALID_PARAMETER', 0x80070057);
5257
}
5258
if (!defined('ecZNullObject')) {
5259
	define('ecZNullObject', 0xFFFFFC00);
5260
}
5261
if (!defined('ecZOutOfHandles')) {
5262
	define('ecZOutOfHandles', 0xFFFFFC04);
5263
}
5264
?>
0 ignored issues
show
It is not recommended to use PHP's closing tag ?> in files other than templates.

Using a closing tag in PHP files that only contain PHP code is not recommended as you might accidentally add whitespace after the closing tag which would then be output by PHP. This can cause severe problems, for example headers cannot be sent anymore.

A simple precaution is to leave off the closing tag as it is not required, and it also has no negative effects whatsoever.

Loading history...