Passed
Push — master ( f66da6...7a87af )
by
unknown
02:36 queued 15s
created

mapi_createoneoff()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 4
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
class Resource {}
4
5
/**
6
 * @param ?int $level
7
 */
8
function mapi_load_mapidefs(?int $level): void {}
9
10
function mapi_last_hresult(): int {
11
	return 0;
12
}
13
14
function mapi_prop_type(int $proptag): false|int {
15
	return 0;
16
}
17
18
function mapi_prop_id(int $proptag): false|int {
19
	return 0;
20
}
21
22
function mapi_is_error(int $errcode): bool|false {
23
	return false;
24
}
25
26
function mapi_make_scode(int $sev, int $code): false|int {
27
	return 0;
28
}
29
30
function mapi_prop_tag(int $proptype, int $propid): false|int {
31
	return 0;
32
}
33
34
/**
35
 * @param ?string $displayname
36
 * @param ?int    $flags
37
 */
38
function mapi_createoneoff(?string $displayname, string $type, string $address, ?int $flags = 0): false|string {
39
	return '';
40
}
41
42
function mapi_parseoneoff(string $entryid): array|false {
43
	return [];
44
}
45
46
/**
47
 * @param ?string $server
48
 * @param ?string $sslcert
49
 * @param ?string $sslpass
50
 * @param ?int    $flags
51
 * @param ?string $wa_version
52
 * @param ?string $misc_version
53
 */
54
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): false|Resource {
55
	return null;
56
}
57
58
function mapi_logon_ex(string $username, string $password, int $flags): false|Resource {
59
	return null;
60
}
61
62
function mapi_logon_token(string $token): false|Resource {
63
	return null;
64
}
65
66
function mapi_getmsgstorestable(Resource $session): false|Resource {
67
	return null;
68
}
69
70
function mapi_openmsgstore(Resource $ses, string $entryid): false|Resource {
71
	return null;
72
}
73
74
function mapi_openprofilesection(Resource $ses, string $uid): false|Resource {
75
	return null;
76
}
77
78
function mapi_openaddressbook(Resource $session): false|Resource {
79
	return null;
80
}
81
82
/**
83
 * @param ?string $entryid
84
 * @param ?int    $flags
85
 */
86
function mapi_openentry(Resource $ses, ?string $entryid = null, ?int $flags = 0): false|Resource {
87
	return null;
88
}
89
90
/**
91
 * @param ?string $entryid
92
 * @param ?int    $flags
93
 */
94
function mapi_ab_openentry(Resource $abk, ?string $entryid = null, ?int $flags = 0): false|Resource {
95
	return null;
96
}
97
98
/**
99
 * @param ?int $flags
100
 */
101
function mapi_ab_resolvename(Resource $abk, array $names, ?int $flags = 0): mixed {
102
	return null;
103
}
104
105
function mapi_ab_getdefaultdir(Resource $abk): false|string {
106
	return '';
107
}
108
109
function mapi_msgstore_createentryid(Resource $store, string $mailbox_dn): false|string {
110
	return '';
111
}
112
113
function mapi_msgstore_getarchiveentryid(Resource $store, string $user, string $server): bool {
114
	return false;
115
}
116
117
/**
118
 * @param ?string $entryid
119
 * @param ?int    $flags
120
 */
121
function mapi_msgstore_openentry(Resource $store, ?string $entryid = null, ?int $flags = 0): false|Resource {
122
	return null;
123
}
124
125
function mapi_msgstore_getreceivefolder(Resource $store): false|Resource {
126
	return null;
127
}
128
129
/**
130
 * @param ?string $sk_msg
131
 */
132
function mapi_msgstore_entryidfromsourcekey(Resource $store, string $sk_fld, ?string $sk_msg = null): false|string {
133
	return '';
134
}
135
136
function mapi_msgstore_advise(Resource $store, string $entryid, int $event_mask, Resource $sink): false|int {
137
	return 0;
138
}
139
140
function mapi_msgstore_unadvise(Resource $store, int $sub_id): bool {
141
	return false;
142
}
143
144
/**
145
 * @param ?Resource $store
146
 * @param ?string   $entryid
147
 */
148
function mapi_msgstore_abortsubmit(?Resource $store, ?string $entryid = null): true {
149
	return null;
150
}
151
152
function mapi_sink_create(): false|Resource {
153
	return null;
154
}
155
156
function mapi_sink_timedwait(Resource $sink, int $time): mixed {
157
	return null;
158
}
159
160
/**
161
 * @param ?array $proptags
162
 * @param ?array $restrict
163
 */
164
function mapi_table_queryallrows(Resource $table, ?array $proptags = null, ?array $restrict = null): mixed {
165
	return null;
166
}
167
168
/**
169
 * @param ?array $proptags
170
 * @param ?int   $start
171
 * @param ?int   $limit
172
 */
173
function mapi_table_queryrows(Resource $table, ?array $proptags = null, ?int $start = 0, ?int $limit = 0): mixed {
174
	return null;
175
}
176
177
function mapi_table_getrowcount(Resource $table): false|int {
178
	return 0;
179
}
180
181
/**
182
 * @param ?int $flags
183
 */
184
function mapi_table_setcolumns(Resource $table, array $columns, ?int $flags = 0): bool {
185
	return false;
186
}
187
188
function mapi_table_seekrow(Resource $table, int $bookmark, int $rowcount): false|int {
189
	return 0;
190
}
191
192
/**
193
 * @param ?int $flags
194
 */
195
function mapi_table_sort(Resource $table, array $sortcrit, ?int $flags = 0): bool {
196
	return false;
197
}
198
199
/**
200
 * @param ?int $flags
201
 */
202
function mapi_table_restrict(Resource $table, array $restrict, ?int $flags = 0): bool {
203
	return false;
204
}
205
206
/**
207
 * @param ?int $bookmark
208
 * @param ?int $flags
209
 */
210
function mapi_table_findrow(Resource $table, array $restrict, ?int $bookmark = 0, ?int $flags = 0): false|int {
211
	return 0;
212
}
213
214
function mapi_table_createbookmark(Resource $table): false|int {
215
	return 0;
216
}
217
218
function mapi_table_freebookmark(Resource $table, int $bookmark): bool {
219
	return false;
220
}
221
222
/**
223
 * @param ?int $flags
224
 */
225
function mapi_folder_gethierarchytable(Resource $fld, ?int $flags = 0): false|Resource {
226
	return null;
227
}
228
229
/**
230
 * @param ?int $flags
231
 */
232
function mapi_folder_getcontentstable(Resource $fld, ?int $flags = 0): false|Resource {
233
	return null;
234
}
235
236
function mapi_folder_getrulestable(Resource $fld): false|Resource {
237
	return null;
238
}
239
240
/**
241
 * @param ?int $flags
242
 */
243
function mapi_folder_createmessage(Resource $fld, ?int $flags = 0): false|Resource {
244
	return null;
245
}
246
247
/**
248
 * @param ?string $comment
249
 * @param ?int    $flags
250
 * @param ?int    $folder_type
251
 */
252
function mapi_folder_createfolder(Resource $fld, string $fname, ?string $comment = null, ?int $flags = 0, ?int $folder_type = 0): false|Resource {
253
	return null;
254
}
255
256
/**
257
 * @param ?int $flags
258
 */
259
function mapi_folder_deletemessages(Resource $fld, array $entryids, ?int $flags = 0): bool {
260
	return false;
261
}
262
263
/**
264
 * @param ?int $flags
265
 */
266
function mapi_folder_copymessages(Resource $srcfld, array $entryids, Resource $dstfld, ?int $flags = 0): bool {
267
	return false;
268
}
269
270
/**
271
 * @param ?int $flags
272
 */
273
function mapi_folder_emptyfolder(Resource $fld, ?int $flags = 0): bool {
274
	return false;
275
}
276
277
/**
278
 * @param ?string $name
279
 * @param ?int    $flags
280
 */
281
function mapi_folder_copyfolder(Resource $srcfld, string $entryid, Resource $dstfld, ?string $name, ?int $flags = 0): bool {
282
	return false;
283
}
284
285
/**
286
 * @param ?int $flags
287
 */
288
function mapi_folder_deletefolder(Resource $fld, string $entryid, ?int $flags = 0): bool {
289
	return false;
290
}
291
292
/**
293
 * @param ?int $flags
294
 */
295
function mapi_folder_setreadflags(Resource $fld, array $entryids, ?int $flags = 0): bool {
296
	return false;
297
}
298
299
function mapi_folder_setsearchcriteria(Resource $fld, array $restriction, array $folderlist, int $flags): bool {
300
	return false;
301
}
302
303
/**
304
 * @param ?int $flags
305
 */
306
function mapi_folder_getsearchcriteria(Resource $fld, ?int $flags = 0): mixed {
307
	return null;
308
}
309
310
/**
311
 * @param ?int $flags
312
 */
313
function mapi_folder_modifyrules(Resource $fld, array $rows, ?int $flags = 0): bool {
314
	return false;
315
}
316
317
function mapi_message_getattachmenttable(Resource $msg): false|Resource {
318
	return null;
319
}
320
321
function mapi_message_getrecipienttable(Resource $msg): false|Resource {
322
	return null;
323
}
324
325
function mapi_message_openattach(Resource $msg, int $id): false|Resource {
326
	return null;
327
}
328
329
/**
330
 * @param ?int $flags
331
 */
332
function mapi_message_createattach(Resource $msg, ?int $flags = 0): false|Resource {
333
	return null;
334
}
335
336
/**
337
 * @param ?int $flags
338
 */
339
function mapi_message_deleteattach(Resource $msg, int $id = 0, ?int $flags = 0): bool {
340
	return false;
341
}
342
343
function mapi_message_modifyrecipients(Resource $msg, int $flags, array $adrlist): bool {
344
	return false;
345
}
346
347
function mapi_message_submitmessage(Resource $msg): bool {
348
	return false;
349
}
350
351
function mapi_message_setreadflag(Resource $msg, int $flags): bool {
352
	return false;
353
}
354
355
/**
356
 * @param ?int    $flags
357
 * @param ?string $guid
358
 */
359
function mapi_openpropertytostream(Resource $any, int $proptag, ?int $flags = 0, ?string $guid = null): false|Resource {
360
	return null;
361
}
362
363
function mapi_stream_write(Resource $stream, string $data): false|int {
364
	return 0;
365
}
366
367
function mapi_stream_read(Resource $stream, int $size): false|string {
368
	return '';
369
}
370
371
function mapi_stream_stat(Resource $stream): array|false {
372
	return [];
373
}
374
375
/**
376
 * @param ?int $flags
377
 */
378
function mapi_stream_seek(Resource $stream, int $offset, ?int $flags = 0): bool {
379
	return false;
380
}
381
382
function mapi_stream_commit(Resource $stream): bool {
383
	return false;
384
}
385
386
function mapi_stream_setsize(Resource $stream, int $size): bool {
387
	return false;
388
}
389
390
function mapi_stream_create(): false|Resource {
391
	return null;
392
}
393
394
/**
395
 * @param ?int $flags
396
 */
397
function mapi_attach_openobj(Resource $attach, ?int $flags = 0): bool|Resource {
398
	return null;
399
}
400
401
/**
402
 * @param ?int $flags
403
 */
404
function mapi_savechanges(Resource $any, ?int $flags = 0): bool {
405
	return false;
406
}
407
408
/**
409
 * @param ?array $proptags
410
 */
411
function mapi_getprops(Resource $any, ?array $proptags = null): mixed {
412
	return null;
413
}
414
415
function mapi_setprops(Resource $any, array $propvals): bool {
416
	return false;
417
}
418
419
/**
420
 * @param ?int $flags
421
 */
422
function mapi_copyto(Resource $src, array $excliid, array $exclprop, Resource $dst, ?int $flags = 0): bool {
423
	return false;
424
}
425
426
function mapi_openproperty(Resource $any, int $proptag /* [more] */): false|Resource {
427
	return null;
428
}
429
430
function mapi_deleteprops(Resource $any, array $proptags): bool {
431
	return false;
432
}
433
434
/**
435
 * @param ?array $names
436
 */
437
function mapi_getnamesfromids(Resource $any, ?array $names = null): array|false {
438
	return [];
439
}
440
441
/**
442
 * @param ?array $guids
443
 */
444
function mapi_getidsfromnames(Resource $store, array $names, ?array $guids = null): array|false {
445
	return [];
446
}
447
448
function mapi_decompressrtf(string $data): false|string {
449
	return '';
450
}
451
452
function mapi_zarafa_getpermissionrules(Resource $any, int $type): array|false {
453
	return [];
454
}
455
456
function mapi_zarafa_setpermissionrules(Resource $any, array $perms): bool {
457
	return false;
458
}
459
460
function mapi_getuserfreebusy(Resource $ses, string $entryid, int $start, int $end): array|false {
461
	return [];
462
}
463
464
function mapi_getuserfreebusyical(Resource $ses, string $entryid, int $start, int $end): false|string {
465
	return '';
466
}
467
468
function mapi_exportchanges_config(Resource $e, Resource $stream, int $flags, mixed $i, mixed $restrict, mixed $inclprop, mixed $exclprop, int $bufsize): bool {
469
	return false;
470
}
471
472
function mapi_exportchanges_synchronize(Resource $x): mixed {
473
	return null;
474
}
475
476
function mapi_exportchanges_updatestate(Resource $e, Resource $stream): bool {
477
	return false;
478
}
479
480
function mapi_exportchanges_getchangecount(Resource $r): false|int {
481
	return 0;
482
}
483
484
function mapi_importcontentschanges_config(Resource $i, Resource $stream, int $flags): bool {
485
	return false;
486
}
487
488
/**
489
 * @param ?Resource $stream
490
 */
491
function mapi_importcontentschanges_updatestate(Resource $i, ?Resource $stream = null): bool {
492
	return false;
493
}
494
495
function mapi_importcontentschanges_importmessagechange(Resource $i, array $props, int $flags, mixed &$msg): bool {
496
	return false;
497
}
498
499
function mapi_importcontentschanges_importmessagedeletion(Resource $i, int $flags, array $msgs): bool {
500
	return false;
501
}
502
503
function mapi_importcontentschanges_importperuserreadstatechange(Resource $i, array $readst): bool {
504
	return false;
505
}
506
507
function mapi_importcontentschanges_importmessagemove(Resource $r, string $a, string $b, string $c, string $d, string $e): bool {
508
	return false;
509
}
510
511
function mapi_importhierarchychanges_config(Resource $i, Resource $stream, int $flags): bool {
512
	return false;
513
}
514
515
/**
516
 * @param ?Resource $stream
517
 */
518
function mapi_importhierarchychanges_updatestate(Resource $i, ?Resource $stream): bool {
519
	return false;
520
}
521
522
function mapi_importhierarchychanges_importfolderchange(Resource $i, array $props): bool {
523
	return false;
524
}
525
526
function mapi_importhierarchychanges_importfolderdeletion(Resource $i, int $flags, array $folders): bool {
527
	return false;
528
}
529
530
function mapi_wrap_importcontentschanges(object &$object): false|Resource {
531
	return null;
532
}
533
534
function mapi_wrap_importhierarchychanges(object &$object): false|Resource {
535
	return null;
536
}
537
538
function mapi_inetmapi_imtoinet(Resource $ses, Resource $abk, Resource $msg, array $opts): false|Resource {
539
	return null;
540
}
541
542
function mapi_inetmapi_imtomapi(Resource $ses, Resource $store, Resource $abk, Resource $msg, string $str, array $opts): bool {
543
	return false;
544
}
545
546
function mapi_icaltomapi(Resource $ses, Resource $store, Resource $abk, Resource $msg, string $str, bool $norecip): bool {
547
	return false;
548
}
549
550
function mapi_icaltomapi2(Resource $abk, Resource $fld, string $ics): array|false {
551
	return [];
552
}
553
554
function mapi_mapitoical(Resource $ses, Resource $abk, Resource $msg, array $opts): false|string {
555
	return '';
556
}
557
558
function mapi_vcftomapi(Resource $ses, Resource $store, Resource $msg, string $str): bool {
559
	return false;
560
}
561
562
function mapi_vcftomapi2(Resource $fld, string $vcard): array|false {
563
	return [];
564
}
565
566
function mapi_mapitovcf(Resource $ses, Resource $abk, Resource $msg, array $opts): false|string {
567
	return '';
568
}
569
570
function mapi_enable_exceptions(string $cls): bool {
571
	return false;
572
}
573
574
function mapi_feature(string $ft): bool {
575
	return false;
576
}
577
578
function kc_session_save(Resource $ses, string &$data): int {
579
	return 0;
580
}
581
582
function kc_session_restore(mixed $data, mixed &$res): int {
583
	return 0;
584
}
585
586
function nsp_getuserinfo(string $username): array|false {
587
	return [];
588
}
589
590
function nsp_setuserpasswd(string $username, string $oldpass, string $newpass): bool {
591
	return false;
592
}
593
594
function nsp_essdn_to_username(string $essdn): false|string {
595
	return '';
596
}
597
598
/**
599
 * @param ?string $srcheid
600
 * @param ?string $msgeid
601
 */
602
function mapi_linkmessage(Resource $ses, ?string $srcheid = null, ?string $msgeid = null): mixed {
603
	return null;
604
}
605
606
function mapi_ianatz_to_tzdef(string $tz): false|string {
607
	return '';
608
}
609
610
function mapi_strerror(int $code): string {
611
	return '';
612
}
613
614
if (!defined('MAPIDEFS_LOADED')) {
615
	define('MAPIDEFS_LOADED', 1);
616
}
617
if (!defined('PR_NULL')) {
618
	define('PR_NULL', 0);
619
}
620
if (!defined('PR_EMS_TEMPLATE_BLOB')) {
621
	define('PR_EMS_TEMPLATE_BLOB', 65794);
622
}
623
if (!defined('PR_ACKNOWLEDGEMENT_MODE')) {
624
	define('PR_ACKNOWLEDGEMENT_MODE', 65539);
625
}
626
if (!defined('PR_ALTERNATE_RECIPIENT_ALLOWED')) {
627
	define('PR_ALTERNATE_RECIPIENT_ALLOWED', 131330);
628
}
629
if (!defined('PR_AUTHORIZING_USERS')) {
630
	define('PR_AUTHORIZING_USERS', 196866);
631
}
632
if (!defined('PR_AUTO_FORWARD_COMMENT')) {
633
	define('PR_AUTO_FORWARD_COMMENT', 262174);
634
}
635
if (!defined('PR_EMS_SCRIPT_BLOB')) {
636
	define('PR_EMS_SCRIPT_BLOB', 262402);
637
}
638
if (!defined('PR_AUTO_FORWARDED')) {
639
	define('PR_AUTO_FORWARDED', 327691);
640
}
641
if (!defined('PR_CONTENT_CONFIDENTIALITY_ALGORITHM_ID')) {
642
	define('PR_CONTENT_CONFIDENTIALITY_ALGORITHM_ID', 393474);
643
}
644
if (!defined('PR_CONTENT_CORRELATOR')) {
645
	define('PR_CONTENT_CORRELATOR', 459010);
646
}
647
if (!defined('PR_CONTENT_IDENTIFIER')) {
648
	define('PR_CONTENT_IDENTIFIER', 524318);
649
}
650
if (!defined('PR_CONTENT_LENGTH')) {
651
	define('PR_CONTENT_LENGTH', 589827);
652
}
653
if (!defined('PR_CONTENT_RETURN_REQUESTED')) {
654
	define('PR_CONTENT_RETURN_REQUESTED', 655371);
655
}
656
if (!defined('PR_CONVERSATION_KEY')) {
657
	define('PR_CONVERSATION_KEY', 721154);
658
}
659
if (!defined('PR_CONVERSION_EITS')) {
660
	define('PR_CONVERSION_EITS', 786690);
661
}
662
if (!defined('PR_CONVERSION_WITH_LOSS_PROHIBITED')) {
663
	define('PR_CONVERSION_WITH_LOSS_PROHIBITED', 851979);
664
}
665
if (!defined('PR_CONVERTED_EITS')) {
666
	define('PR_CONVERTED_EITS', 917762);
667
}
668
if (!defined('PR_DEFERRED_DELIVERY_TIME')) {
669
	define('PR_DEFERRED_DELIVERY_TIME', 983104);
670
}
671
if (!defined('PR_DELIVER_TIME')) {
672
	define('PR_DELIVER_TIME', 1048640);
673
}
674
if (!defined('PR_DISCARD_REASON')) {
675
	define('PR_DISCARD_REASON', 1114115);
676
}
677
if (!defined('PR_DISCLOSURE_OF_RECIPIENTS')) {
678
	define('PR_DISCLOSURE_OF_RECIPIENTS', 1179659);
679
}
680
if (!defined('PR_DL_EXPANSION_HISTORY')) {
681
	define('PR_DL_EXPANSION_HISTORY', 1245442);
682
}
683
if (!defined('PR_DL_EXPANSION_PROHIBITED')) {
684
	define('PR_DL_EXPANSION_PROHIBITED', 1310731);
685
}
686
if (!defined('PR_EXPIRY_TIME')) {
687
	define('PR_EXPIRY_TIME', 1376320);
688
}
689
if (!defined('PR_IMPLICIT_CONVERSION_PROHIBITED')) {
690
	define('PR_IMPLICIT_CONVERSION_PROHIBITED', 1441803);
691
}
692
if (!defined('PR_IMPORTANCE')) {
693
	define('PR_IMPORTANCE', 1507331);
694
}
695
if (!defined('PR_IPM_ID')) {
696
	define('PR_IPM_ID', 1573122);
697
}
698
if (!defined('PR_LATEST_DELIVERY_TIME')) {
699
	define('PR_LATEST_DELIVERY_TIME', 1638464);
700
}
701
if (!defined('PR_MESSAGE_CLASS')) {
702
	define('PR_MESSAGE_CLASS', 1703966);
703
}
704
if (!defined('PR_MESSAGE_CLASS_A')) {
705
	define('PR_MESSAGE_CLASS_A', 1703966);
706
}
707
if (!defined('PR_MESSAGE_DELIVERY_ID')) {
708
	define('PR_MESSAGE_DELIVERY_ID', 1769730);
709
}
710
if (!defined('PR_MESSAGE_SECURITY_LABEL')) {
711
	define('PR_MESSAGE_SECURITY_LABEL', 1966338);
712
}
713
if (!defined('PR_OBSOLETED_IPMS')) {
714
	define('PR_OBSOLETED_IPMS', 2031874);
715
}
716
if (!defined('PR_ORIGINALLY_INTENDED_RECIPIENT_NAME')) {
717
	define('PR_ORIGINALLY_INTENDED_RECIPIENT_NAME', 2097410);
718
}
719
if (!defined('PR_ORIGINAL_EITS')) {
720
	define('PR_ORIGINAL_EITS', 2162946);
721
}
722
if (!defined('PR_ORIGINATOR_CERTIFICATE')) {
723
	define('PR_ORIGINATOR_CERTIFICATE', 2228482);
724
}
725
if (!defined('PR_ORIGINATOR_DELIVERY_REPORT_REQUESTED')) {
726
	define('PR_ORIGINATOR_DELIVERY_REPORT_REQUESTED', 2293771);
727
}
728
if (!defined('PR_ORIGINATOR_RETURN_ADDRESS')) {
729
	define('PR_ORIGINATOR_RETURN_ADDRESS', 2359554);
730
}
731
if (!defined('PR_PARENT_KEY')) {
732
	define('PR_PARENT_KEY', 2425090);
733
}
734
if (!defined('PR_PRIORITY')) {
735
	define('PR_PRIORITY', 2490371);
736
}
737
if (!defined('PR_ORIGIN_CHECK')) {
738
	define('PR_ORIGIN_CHECK', 2556162);
739
}
740
if (!defined('PR_PROOF_OF_SUBMISSION_REQUESTED')) {
741
	define('PR_PROOF_OF_SUBMISSION_REQUESTED', 2621451);
742
}
743
if (!defined('PR_READ_RECEIPT_REQUESTED')) {
744
	define('PR_READ_RECEIPT_REQUESTED', 2686987);
745
}
746
if (!defined('PR_RECEIPT_TIME')) {
747
	define('PR_RECEIPT_TIME', 2752576);
748
}
749
if (!defined('PR_RECIPIENT_REASSIGNMENT_PROHIBITED')) {
750
	define('PR_RECIPIENT_REASSIGNMENT_PROHIBITED', 2818059);
751
}
752
if (!defined('PR_REDIRECTION_HISTORY')) {
753
	define('PR_REDIRECTION_HISTORY', 2883842);
754
}
755
if (!defined('PR_RELATED_IPMS')) {
756
	define('PR_RELATED_IPMS', 2949378);
757
}
758
if (!defined('PR_ORIGINAL_SENSITIVITY')) {
759
	define('PR_ORIGINAL_SENSITIVITY', 3014659);
760
}
761
if (!defined('PR_LANGUAGES')) {
762
	define('PR_LANGUAGES', 3080222);
763
}
764
if (!defined('PR_REPLY_TIME')) {
765
	define('PR_REPLY_TIME', 3145792);
766
}
767
if (!defined('PR_REPORT_TAG')) {
768
	define('PR_REPORT_TAG', 3211522);
769
}
770
if (!defined('PR_REPORT_TIME')) {
771
	define('PR_REPORT_TIME', 3276864);
772
}
773
if (!defined('PR_RETURNED_IPM')) {
774
	define('PR_RETURNED_IPM', 3342347);
775
}
776
if (!defined('PR_SECURITY')) {
777
	define('PR_SECURITY', 3407875);
778
}
779
if (!defined('PR_INCOMPLETE_COPY')) {
780
	define('PR_INCOMPLETE_COPY', 3473419);
781
}
782
if (!defined('PR_SENSITIVITY')) {
783
	define('PR_SENSITIVITY', 3538947);
784
}
785
if (!defined('PR_SUBJECT')) {
786
	define('PR_SUBJECT', 3604510);
787
}
788
if (!defined('PR_SUBJECT_A')) {
789
	define('PR_SUBJECT_A', 3604510);
790
}
791
if (!defined('PR_SUBJECT_IPM')) {
792
	define('PR_SUBJECT_IPM', 3670274);
793
}
794
if (!defined('PR_CLIENT_SUBMIT_TIME')) {
795
	define('PR_CLIENT_SUBMIT_TIME', 3735616);
796
}
797
if (!defined('PR_REPORT_NAME')) {
798
	define('PR_REPORT_NAME', 3801118);
799
}
800
if (!defined('PR_SENT_REPRESENTING_SEARCH_KEY')) {
801
	define('PR_SENT_REPRESENTING_SEARCH_KEY', 3866882);
802
}
803
if (!defined('PR_X400_CONTENT_TYPE')) {
804
	define('PR_X400_CONTENT_TYPE', 3932418);
805
}
806
if (!defined('PR_SUBJECT_PREFIX')) {
807
	define('PR_SUBJECT_PREFIX', 3997726);
808
}
809
if (!defined('PR_SUBJECT_PREFIX_A')) {
810
	define('PR_SUBJECT_PREFIX_A', 3997726);
811
}
812
if (!defined('PR_NON_RECEIPT_REASON')) {
813
	define('PR_NON_RECEIPT_REASON', 4063235);
814
}
815
if (!defined('PR_RECEIVED_BY_ENTRYID')) {
816
	define('PR_RECEIVED_BY_ENTRYID', 4129026);
817
}
818
if (!defined('PR_RECEIVED_BY_NAME')) {
819
	define('PR_RECEIVED_BY_NAME', 4194334);
820
}
821
if (!defined('PR_SENT_REPRESENTING_ENTRYID')) {
822
	define('PR_SENT_REPRESENTING_ENTRYID', 4260098);
823
}
824
if (!defined('PR_SENT_REPRESENTING_NAME')) {
825
	define('PR_SENT_REPRESENTING_NAME', 4325406);
826
}
827
if (!defined('PR_SENT_REPRESENTING_NAME_A')) {
828
	define('PR_SENT_REPRESENTING_NAME_A', 4325406);
829
}
830
if (!defined('PR_RCVD_REPRESENTING_ENTRYID')) {
831
	define('PR_RCVD_REPRESENTING_ENTRYID', 4391170);
832
}
833
if (!defined('PR_RCVD_REPRESENTING_NAME')) {
834
	define('PR_RCVD_REPRESENTING_NAME', 4456478);
835
}
836
if (!defined('PR_RCVD_REPRESENTING_NAME_A')) {
837
	define('PR_RCVD_REPRESENTING_NAME_A', 4456478);
838
}
839
if (!defined('PR_REPORT_ENTRYID')) {
840
	define('PR_REPORT_ENTRYID', 4522242);
841
}
842
if (!defined('PR_READ_RECEIPT_ENTRYID')) {
843
	define('PR_READ_RECEIPT_ENTRYID', 4587778);
844
}
845
if (!defined('PR_MESSAGE_SUBMISSION_ID')) {
846
	define('PR_MESSAGE_SUBMISSION_ID', 4653314);
847
}
848
if (!defined('PR_PROVIDER_SUBMIT_TIME')) {
849
	define('PR_PROVIDER_SUBMIT_TIME', 4718656);
850
}
851
if (!defined('PR_ORIGINAL_SUBJECT')) {
852
	define('PR_ORIGINAL_SUBJECT', 4784158);
853
}
854
if (!defined('PR_DISC_VAL')) {
855
	define('PR_DISC_VAL', 4849675);
856
}
857
if (!defined('PR_ORIG_MESSAGE_CLASS')) {
858
	define('PR_ORIG_MESSAGE_CLASS', 4915230);
859
}
860
if (!defined('PR_ORIG_MESSAGE_CLASS_A')) {
861
	define('PR_ORIG_MESSAGE_CLASS_A', 4915230);
862
}
863
if (!defined('PR_ORIGINAL_AUTHOR_ENTRYID')) {
864
	define('PR_ORIGINAL_AUTHOR_ENTRYID', 4980994);
865
}
866
if (!defined('PR_ORIGINAL_AUTHOR_NAME')) {
867
	define('PR_ORIGINAL_AUTHOR_NAME', 5046302);
868
}
869
if (!defined('PR_ORIGINAL_SUBMIT_TIME')) {
870
	define('PR_ORIGINAL_SUBMIT_TIME', 5111872);
871
}
872
if (!defined('PR_REPLY_RECIPIENT_ENTRIES')) {
873
	define('PR_REPLY_RECIPIENT_ENTRIES', 5177602);
874
}
875
if (!defined('PR_REPLY_RECIPIENT_NAMES')) {
876
	define('PR_REPLY_RECIPIENT_NAMES', 5242910);
877
}
878
if (!defined('PR_RECEIVED_BY_SEARCH_KEY')) {
879
	define('PR_RECEIVED_BY_SEARCH_KEY', 5308674);
880
}
881
if (!defined('PR_RCVD_REPRESENTING_SEARCH_KEY')) {
882
	define('PR_RCVD_REPRESENTING_SEARCH_KEY', 5374210);
883
}
884
if (!defined('PR_READ_RECEIPT_SEARCH_KEY')) {
885
	define('PR_READ_RECEIPT_SEARCH_KEY', 5439746);
886
}
887
if (!defined('PR_REPORT_SEARCH_KEY')) {
888
	define('PR_REPORT_SEARCH_KEY', 5505282);
889
}
890
if (!defined('PR_ORIGINAL_DELIVERY_TIME')) {
891
	define('PR_ORIGINAL_DELIVERY_TIME', 5570624);
892
}
893
if (!defined('PR_ORIGINAL_AUTHOR_SEARCH_KEY')) {
894
	define('PR_ORIGINAL_AUTHOR_SEARCH_KEY', 5636354);
895
}
896
if (!defined('PR_MESSAGE_TO_ME')) {
897
	define('PR_MESSAGE_TO_ME', 5701643);
898
}
899
if (!defined('PR_MESSAGE_CC_ME')) {
900
	define('PR_MESSAGE_CC_ME', 5767179);
901
}
902
if (!defined('PR_MESSAGE_RECIP_ME')) {
903
	define('PR_MESSAGE_RECIP_ME', 5832715);
904
}
905
if (!defined('PR_ORIGINAL_SENDER_NAME')) {
906
	define('PR_ORIGINAL_SENDER_NAME', 5898270);
907
}
908
if (!defined('PR_ORIGINAL_SENDER_ENTRYID')) {
909
	define('PR_ORIGINAL_SENDER_ENTRYID', 5964034);
910
}
911
if (!defined('PR_ORIGINAL_SENDER_SEARCH_KEY')) {
912
	define('PR_ORIGINAL_SENDER_SEARCH_KEY', 6029570);
913
}
914
if (!defined('PR_ORIGINAL_SENT_REPRESENTING_NAME')) {
915
	define('PR_ORIGINAL_SENT_REPRESENTING_NAME', 6094878);
916
}
917
if (!defined('PR_ORIGINAL_SENT_REPRESENTING_ENTRYID')) {
918
	define('PR_ORIGINAL_SENT_REPRESENTING_ENTRYID', 6160642);
919
}
920
if (!defined('PR_ORIGINAL_SENT_REPRESENTING_SEARCH_KEY')) {
921
	define('PR_ORIGINAL_SENT_REPRESENTING_SEARCH_KEY', 6226178);
922
}
923
if (!defined('PR_START_DATE')) {
924
	define('PR_START_DATE', 6291520);
925
}
926
if (!defined('PR_END_DATE')) {
927
	define('PR_END_DATE', 6357056);
928
}
929
if (!defined('PR_OWNER_APPT_ID')) {
930
	define('PR_OWNER_APPT_ID', 6422531);
931
}
932
if (!defined('PR_RESPONSE_REQUESTED')) {
933
	define('PR_RESPONSE_REQUESTED', 6488075);
934
}
935
if (!defined('PR_SENT_REPRESENTING_ADDRTYPE')) {
936
	define('PR_SENT_REPRESENTING_ADDRTYPE', 6553630);
937
}
938
if (!defined('PR_SENT_REPRESENTING_ADDRTYPE_A')) {
939
	define('PR_SENT_REPRESENTING_ADDRTYPE_A', 6553630);
940
}
941
if (!defined('PR_SENT_REPRESENTING_EMAIL_ADDRESS')) {
942
	define('PR_SENT_REPRESENTING_EMAIL_ADDRESS', 6619166);
943
}
944
if (!defined('PR_SENT_REPRESENTING_EMAIL_ADDRESS_A')) {
945
	define('PR_SENT_REPRESENTING_EMAIL_ADDRESS_A', 6619166);
946
}
947
if (!defined('PR_ORIGINAL_SENDER_ADDRTYPE')) {
948
	define('PR_ORIGINAL_SENDER_ADDRTYPE', 6684702);
949
}
950
if (!defined('PR_ORIGINAL_SENDER_EMAIL_ADDRESS')) {
951
	define('PR_ORIGINAL_SENDER_EMAIL_ADDRESS', 6750238);
952
}
953
if (!defined('PR_ORIGINAL_SENT_REPRESENTING_ADDRTYPE')) {
954
	define('PR_ORIGINAL_SENT_REPRESENTING_ADDRTYPE', 6815774);
955
}
956
if (!defined('PR_ORIGINAL_SENT_REPRESENTING_EMAIL_ADDRESS')) {
957
	define('PR_ORIGINAL_SENT_REPRESENTING_EMAIL_ADDRESS', 6881310);
958
}
959
if (!defined('PR_CONVERSATION_TOPIC')) {
960
	define('PR_CONVERSATION_TOPIC', 7340062);
961
}
962
if (!defined('PR_CONVERSATION_TOPIC_A')) {
963
	define('PR_CONVERSATION_TOPIC_A', 7340062);
964
}
965
if (!defined('PR_CONVERSATION_INDEX')) {
966
	define('PR_CONVERSATION_INDEX', 7405826);
967
}
968
if (!defined('PR_ORIGINAL_DISPLAY_BCC')) {
969
	define('PR_ORIGINAL_DISPLAY_BCC', 7471134);
970
}
971
if (!defined('PR_ORIGINAL_DISPLAY_CC')) {
972
	define('PR_ORIGINAL_DISPLAY_CC', 7536670);
973
}
974
if (!defined('PR_ORIGINAL_DISPLAY_TO')) {
975
	define('PR_ORIGINAL_DISPLAY_TO', 7602206);
976
}
977
if (!defined('PR_RECEIVED_BY_ADDRTYPE')) {
978
	define('PR_RECEIVED_BY_ADDRTYPE', 7667742);
979
}
980
if (!defined('PR_RECEIVED_BY_EMAIL_ADDRESS')) {
981
	define('PR_RECEIVED_BY_EMAIL_ADDRESS', 7733278);
982
}
983
if (!defined('PR_RCVD_REPRESENTING_ADDRTYPE')) {
984
	define('PR_RCVD_REPRESENTING_ADDRTYPE', 7798814);
985
}
986
if (!defined('PR_RCVD_REPRESENTING_ADDRTYPE_A')) {
987
	define('PR_RCVD_REPRESENTING_ADDRTYPE_A', 7798814);
988
}
989
if (!defined('PR_RCVD_REPRESENTING_EMAIL_ADDRESS')) {
990
	define('PR_RCVD_REPRESENTING_EMAIL_ADDRESS', 7864350);
991
}
992
if (!defined('PR_RCVD_REPRESENTING_EMAIL_ADDRESS_A')) {
993
	define('PR_RCVD_REPRESENTING_EMAIL_ADDRESS_A', 7864350);
994
}
995
if (!defined('PR_ORIGINAL_AUTHOR_ADDRTYPE')) {
996
	define('PR_ORIGINAL_AUTHOR_ADDRTYPE', 7929886);
997
}
998
if (!defined('PR_ORIGINAL_AUTHOR_EMAIL_ADDRESS')) {
999
	define('PR_ORIGINAL_AUTHOR_EMAIL_ADDRESS', 7995422);
1000
}
1001
if (!defined('PR_ORIGINALLY_INTENDED_RECIP_ADDRTYPE')) {
1002
	define('PR_ORIGINALLY_INTENDED_RECIP_ADDRTYPE', 8060958);
1003
}
1004
if (!defined('PR_ORIGINALLY_INTENDED_RECIP_EMAIL_ADDRESS')) {
1005
	define('PR_ORIGINALLY_INTENDED_RECIP_EMAIL_ADDRESS', 8126494);
1006
}
1007
if (!defined('PR_TRANSPORT_MESSAGE_HEADERS')) {
1008
	define('PR_TRANSPORT_MESSAGE_HEADERS', 8192030);
1009
}
1010
if (!defined('PR_TRANSPORT_MESSAGE_HEADERS_A')) {
1011
	define('PR_TRANSPORT_MESSAGE_HEADERS_A', 8192030);
1012
}
1013
if (!defined('PR_DELEGATION')) {
1014
	define('PR_DELEGATION', 8257794);
1015
}
1016
if (!defined('PR_TNEF_CORRELATION_KEY')) {
1017
	define('PR_TNEF_CORRELATION_KEY', 8323330);
1018
}
1019
if (!defined('PR_REPORT_DISPOSITION')) {
1020
	define('PR_REPORT_DISPOSITION', 8388638);
1021
}
1022
if (!defined('PR_REPORT_DISPOSITION_MODE')) {
1023
	define('PR_REPORT_DISPOSITION_MODE', 8454174);
1024
}
1025
if (!defined('PR_EMS_AB_ROOM_CAPACITY')) {
1026
	define('PR_EMS_AB_ROOM_CAPACITY', 134676483);
1027
}
1028
if (!defined('PR_EMS_AB_ROOM_DESCRIPTION')) {
1029
	define('PR_EMS_AB_ROOM_DESCRIPTION', 134807582);
1030
}
1031
if (!defined('PR_CONTENT_INTEGRITY_CHECK')) {
1032
	define('PR_CONTENT_INTEGRITY_CHECK', 201326850);
1033
}
1034
if (!defined('PR_EXPLICIT_CONVERSION')) {
1035
	define('PR_EXPLICIT_CONVERSION', 201392131);
1036
}
1037
if (!defined('PR_IPM_RETURN_REQUESTED')) {
1038
	define('PR_IPM_RETURN_REQUESTED', 201457675);
1039
}
1040
if (!defined('PR_MESSAGE_TOKEN')) {
1041
	define('PR_MESSAGE_TOKEN', 201523458);
1042
}
1043
if (!defined('PR_NDR_REASON_CODE')) {
1044
	define('PR_NDR_REASON_CODE', 201588739);
1045
}
1046
if (!defined('PR_NDR_DIAG_CODE')) {
1047
	define('PR_NDR_DIAG_CODE', 201654275);
1048
}
1049
if (!defined('PR_NON_RECEIPT_NOTIFICATION_REQUESTED')) {
1050
	define('PR_NON_RECEIPT_NOTIFICATION_REQUESTED', 201719819);
1051
}
1052
if (!defined('PR_DELIVERY_POINT')) {
1053
	define('PR_DELIVERY_POINT', 201785347);
1054
}
1055
if (!defined('PR_ORIGINATOR_NON_DELIVERY_REPORT_REQUESTED')) {
1056
	define('PR_ORIGINATOR_NON_DELIVERY_REPORT_REQUESTED', 201850891);
1057
}
1058
if (!defined('PR_ORIGINATOR_REQUESTED_ALTERNATE_RECIPIENT')) {
1059
	define('PR_ORIGINATOR_REQUESTED_ALTERNATE_RECIPIENT', 201916674);
1060
}
1061
if (!defined('PR_PHYSICAL_DELIVERY_BUREAU_FAX_DELIVERY')) {
1062
	define('PR_PHYSICAL_DELIVERY_BUREAU_FAX_DELIVERY', 201981963);
1063
}
1064
if (!defined('PR_PHYSICAL_DELIVERY_MODE')) {
1065
	define('PR_PHYSICAL_DELIVERY_MODE', 202047491);
1066
}
1067
if (!defined('PR_PHYSICAL_DELIVERY_REPORT_REQUEST')) {
1068
	define('PR_PHYSICAL_DELIVERY_REPORT_REQUEST', 202113027);
1069
}
1070
if (!defined('PR_PHYSICAL_FORWARDING_ADDRESS')) {
1071
	define('PR_PHYSICAL_FORWARDING_ADDRESS', 202178818);
1072
}
1073
if (!defined('PR_PHYSICAL_FORWARDING_ADDRESS_REQUESTED')) {
1074
	define('PR_PHYSICAL_FORWARDING_ADDRESS_REQUESTED', 202244107);
1075
}
1076
if (!defined('PR_PHYSICAL_FORWARDING_PROHIBITED')) {
1077
	define('PR_PHYSICAL_FORWARDING_PROHIBITED', 202309643);
1078
}
1079
if (!defined('PR_PHYSICAL_RENDITION_ATTRIBUTES')) {
1080
	define('PR_PHYSICAL_RENDITION_ATTRIBUTES', 202375426);
1081
}
1082
if (!defined('PR_PROOF_OF_DELIVERY')) {
1083
	define('PR_PROOF_OF_DELIVERY', 202440962);
1084
}
1085
if (!defined('PR_PROOF_OF_DELIVERY_REQUESTED')) {
1086
	define('PR_PROOF_OF_DELIVERY_REQUESTED', 202506251);
1087
}
1088
if (!defined('PR_RECIPIENT_CERTIFICATE')) {
1089
	define('PR_RECIPIENT_CERTIFICATE', 202572034);
1090
}
1091
if (!defined('PR_RECIPIENT_NUMBER_FOR_ADVICE')) {
1092
	define('PR_RECIPIENT_NUMBER_FOR_ADVICE', 202637342);
1093
}
1094
if (!defined('PR_RECIPIENT_TYPE')) {
1095
	define('PR_RECIPIENT_TYPE', 202702851);
1096
}
1097
if (!defined('PR_REGISTERED_MAIL_TYPE')) {
1098
	define('PR_REGISTERED_MAIL_TYPE', 202768387);
1099
}
1100
if (!defined('PR_REPLY_REQUESTED')) {
1101
	define('PR_REPLY_REQUESTED', 202833931);
1102
}
1103
if (!defined('PR_REQUESTED_DELIVERY_METHOD')) {
1104
	define('PR_REQUESTED_DELIVERY_METHOD', 202899459);
1105
}
1106
if (!defined('PR_SENDER_ENTRYID')) {
1107
	define('PR_SENDER_ENTRYID', 202965250);
1108
}
1109
if (!defined('PR_SENDER_NAME')) {
1110
	define('PR_SENDER_NAME', 203030558);
1111
}
1112
if (!defined('PR_SENDER_NAME_A')) {
1113
	define('PR_SENDER_NAME_A', 203030558);
1114
}
1115
if (!defined('PR_SUPPLEMENTARY_INFO')) {
1116
	define('PR_SUPPLEMENTARY_INFO', 203096094);
1117
}
1118
if (!defined('PR_TYPE_OF_MTS_USER')) {
1119
	define('PR_TYPE_OF_MTS_USER', 203161603);
1120
}
1121
if (!defined('PR_SENDER_SEARCH_KEY')) {
1122
	define('PR_SENDER_SEARCH_KEY', 203227394);
1123
}
1124
if (!defined('PR_SENDER_ADDRTYPE')) {
1125
	define('PR_SENDER_ADDRTYPE', 203292702);
1126
}
1127
if (!defined('PR_SENDER_ADDRTYPE_A')) {
1128
	define('PR_SENDER_ADDRTYPE_A', 203292702);
1129
}
1130
if (!defined('PR_SENDER_EMAIL_ADDRESS')) {
1131
	define('PR_SENDER_EMAIL_ADDRESS', 203358238);
1132
}
1133
if (!defined('PR_SENDER_EMAIL_ADDRESS_A')) {
1134
	define('PR_SENDER_EMAIL_ADDRESS_A', 203358238);
1135
}
1136
if (!defined('PR_NDR_STATUS_CODE')) {
1137
	define('PR_NDR_STATUS_CODE', 203423747);
1138
}
1139
if (!defined('PR_DSN_REMOTE_MTA')) {
1140
	define('PR_DSN_REMOTE_MTA', 203489310);
1141
}
1142
if (!defined('PR_CURRENT_VERSION')) {
1143
	define('PR_CURRENT_VERSION', 234881044);
1144
}
1145
if (!defined('PR_DELETE_AFTER_SUBMIT')) {
1146
	define('PR_DELETE_AFTER_SUBMIT', 234946571);
1147
}
1148
if (!defined('PR_DISPLAY_BCC')) {
1149
	define('PR_DISPLAY_BCC', 235012126);
1150
}
1151
if (!defined('PR_DISPLAY_BCC_A')) {
1152
	define('PR_DISPLAY_BCC_A', 235012126);
1153
}
1154
if (!defined('PR_DISPLAY_CC')) {
1155
	define('PR_DISPLAY_CC', 235077662);
1156
}
1157
if (!defined('PR_DISPLAY_CC_A')) {
1158
	define('PR_DISPLAY_CC_A', 235077662);
1159
}
1160
if (!defined('PR_DISPLAY_TO')) {
1161
	define('PR_DISPLAY_TO', 235143198);
1162
}
1163
if (!defined('PR_DISPLAY_TO_A')) {
1164
	define('PR_DISPLAY_TO_A', 235143198);
1165
}
1166
if (!defined('PR_PARENT_DISPLAY')) {
1167
	define('PR_PARENT_DISPLAY', 235208734);
1168
}
1169
if (!defined('PR_PARENT_DISPLAY_A')) {
1170
	define('PR_PARENT_DISPLAY_A', 235208734);
1171
}
1172
if (!defined('PR_MESSAGE_DELIVERY_TIME')) {
1173
	define('PR_MESSAGE_DELIVERY_TIME', 235274304);
1174
}
1175
if (!defined('PR_MESSAGE_FLAGS')) {
1176
	define('PR_MESSAGE_FLAGS', 235339779);
1177
}
1178
if (!defined('PR_MESSAGE_SIZE')) {
1179
	define('PR_MESSAGE_SIZE', 235405315);
1180
}
1181
if (!defined('PR_MESSAGE_SIZE_EXTENDED')) {
1182
	define('PR_MESSAGE_SIZE_EXTENDED', 235405332);
1183
}
1184
if (!defined('PR_PARENT_ENTRYID')) {
1185
	define('PR_PARENT_ENTRYID', 235471106);
1186
}
1187
if (!defined('PR_PARENT_SVREID')) {
1188
	define('PR_PARENT_SVREID', 235471099);
1189
}
1190
if (!defined('PR_SENTMAIL_ENTRYID')) {
1191
	define('PR_SENTMAIL_ENTRYID', 235536642);
1192
}
1193
if (!defined('PR_CORRELATE')) {
1194
	define('PR_CORRELATE', 235667467);
1195
}
1196
if (!defined('PR_CORRELATE_MTSID')) {
1197
	define('PR_CORRELATE_MTSID', 235733250);
1198
}
1199
if (!defined('PR_DISCRETE_VALUES')) {
1200
	define('PR_DISCRETE_VALUES', 235798539);
1201
}
1202
if (!defined('PR_RESPONSIBILITY')) {
1203
	define('PR_RESPONSIBILITY', 235864075);
1204
}
1205
if (!defined('PR_SPOOLER_STATUS')) {
1206
	define('PR_SPOOLER_STATUS', 235929603);
1207
}
1208
if (!defined('PR_TRANSPORT_STATUS')) {
1209
	define('PR_TRANSPORT_STATUS', 235995139);
1210
}
1211
if (!defined('PR_MESSAGE_RECIPIENTS')) {
1212
	define('PR_MESSAGE_RECIPIENTS', 236060685);
1213
}
1214
if (!defined('PR_MESSAGE_ATTACHMENTS')) {
1215
	define('PR_MESSAGE_ATTACHMENTS', 236126221);
1216
}
1217
if (!defined('PR_SUBMIT_FLAGS')) {
1218
	define('PR_SUBMIT_FLAGS', 236191747);
1219
}
1220
if (!defined('PR_RECIPIENT_STATUS')) {
1221
	define('PR_RECIPIENT_STATUS', 236257283);
1222
}
1223
if (!defined('PR_TRANSPORT_KEY')) {
1224
	define('PR_TRANSPORT_KEY', 236322819);
1225
}
1226
if (!defined('PR_MSG_STATUS')) {
1227
	define('PR_MSG_STATUS', 236388355);
1228
}
1229
if (!defined('PR_MESSAGE_DOWNLOAD_TIME')) {
1230
	define('PR_MESSAGE_DOWNLOAD_TIME', 236453891);
1231
}
1232
if (!defined('PR_CREATION_VERSION')) {
1233
	define('PR_CREATION_VERSION', 236519444);
1234
}
1235
if (!defined('PR_MODIFY_VERSION')) {
1236
	define('PR_MODIFY_VERSION', 236584980);
1237
}
1238
if (!defined('PR_HASATTACH')) {
1239
	define('PR_HASATTACH', 236650507);
1240
}
1241
if (!defined('PR_BODY_CRC')) {
1242
	define('PR_BODY_CRC', 236716035);
1243
}
1244
if (!defined('PR_NORMALIZED_SUBJECT')) {
1245
	define('PR_NORMALIZED_SUBJECT', 236781598);
1246
}
1247
if (!defined('PR_NORMALIZED_SUBJECT_A')) {
1248
	define('PR_NORMALIZED_SUBJECT_A', 236781598);
1249
}
1250
if (!defined('PR_RTF_IN_SYNC')) {
1251
	define('PR_RTF_IN_SYNC', 236912651);
1252
}
1253
if (!defined('PR_ATTACH_SIZE')) {
1254
	define('PR_ATTACH_SIZE', 236978179);
1255
}
1256
if (!defined('PR_ATTACH_NUM')) {
1257
	define('PR_ATTACH_NUM', 237043715);
1258
}
1259
if (!defined('PR_PREPROCESS')) {
1260
	define('PR_PREPROCESS', 237109259);
1261
}
1262
if (!defined('PR_INTERNET_ARTICLE_NUMBER')) {
1263
	define('PR_INTERNET_ARTICLE_NUMBER', 237174787);
1264
}
1265
if (!defined('PR_NEWSGROUP_NAME')) {
1266
	define('PR_NEWSGROUP_NAME', 237240350);
1267
}
1268
if (!defined('PR_ORIGINATING_MTA_CERTIFICATE')) {
1269
	define('PR_ORIGINATING_MTA_CERTIFICATE', 237306114);
1270
}
1271
if (!defined('PR_PROOF_OF_SUBMISSION')) {
1272
	define('PR_PROOF_OF_SUBMISSION', 237371650);
1273
}
1274
if (!defined('PR_NT_SECURITY_DESCRIPTOR')) {
1275
	define('PR_NT_SECURITY_DESCRIPTOR', 237437186);
1276
}
1277
if (!defined('PR_PRIMARY_SEND_ACCOUNT')) {
1278
	define('PR_PRIMARY_SEND_ACCOUNT', 237502494);
1279
}
1280
if (!defined('PR_NEXT_SEND_ACCT')) {
1281
	define('PR_NEXT_SEND_ACCT', 237568030);
1282
}
1283
if (!defined('PR_TODO_ITEM_FLAGS')) {
1284
	define('PR_TODO_ITEM_FLAGS', 237699075);
1285
}
1286
if (!defined('PR_SWAPPED_TODO_STORE')) {
1287
	define('PR_SWAPPED_TODO_STORE', 237764866);
1288
}
1289
if (!defined('PR_SWAPPED_TODO_DATA')) {
1290
	define('PR_SWAPPED_TODO_DATA', 237830402);
1291
}
1292
if (!defined('PR_REPL_ITEMID')) {
1293
	define('PR_REPL_ITEMID', 238026755);
1294
}
1295
if (!defined('PR_REPL_CHANGENUM')) {
1296
	define('PR_REPL_CHANGENUM', 238223380);
1297
}
1298
if (!defined('PR_REPL_VERSIONHISTORY')) {
1299
	define('PR_REPL_VERSIONHISTORY', 238289154);
1300
}
1301
if (!defined('PR_REPL_FLAGS')) {
1302
	define('PR_REPL_FLAGS', 238551043);
1303
}
1304
if (!defined('PR_REPL_COPIEDFROM_VERSIONHISTORY')) {
1305
	define('PR_REPL_COPIEDFROM_VERSIONHISTORY', 238813442);
1306
}
1307
if (!defined('PR_REPL_COPIEDFROM_ITEMID')) {
1308
	define('PR_REPL_COPIEDFROM_ITEMID', 238878978);
1309
}
1310
if (!defined('PR_CREATOR_SID')) {
1311
	define('PR_CREATOR_SID', 240648450);
1312
}
1313
if (!defined('PR_LAST_MODIFIER_SID')) {
1314
	define('PR_LAST_MODIFIER_SID', 240713986);
1315
}
1316
if (!defined('PR_READ')) {
1317
	define('PR_READ', 241762315);
1318
}
1319
if (!defined('PR_NT_SECURITY_DESCRIPTOR_AS_XML')) {
1320
	define('PR_NT_SECURITY_DESCRIPTOR_AS_XML', 241827870);
1321
}
1322
if (!defined('PR_TRUST_SENDER')) {
1323
	define('PR_TRUST_SENDER', 242810883);
1324
}
1325
if (!defined('PR_EXTENDED_RULE_MSG_ACTIONS')) {
1326
	define('PR_EXTENDED_RULE_MSG_ACTIONS', 244908290);
1327
}
1328
if (!defined('PR_EXTENDED_RULE_MSG_CONDITION')) {
1329
	define('PR_EXTENDED_RULE_MSG_CONDITION', 244973826);
1330
}
1331
if (!defined('PR_EXTENDED_RULE_SIZE_LIMIT')) {
1332
	define('PR_EXTENDED_RULE_SIZE_LIMIT', 245039107);
1333
}
1334
if (!defined('PR_ASSOCIATED_SHARING_PROVIDER')) {
1335
	define('PR_ASSOCIATED_SHARING_PROVIDER', 245366856);
1336
}
1337
if (!defined('PR_SEARCH_ATTACHMENTS')) {
1338
	define('PR_SEARCH_ATTACHMENTS', 245694494);
1339
}
1340
if (!defined('PR_SEARCH_RECIP_EMAIL_TO')) {
1341
	define('PR_SEARCH_RECIP_EMAIL_TO', 245760030);
1342
}
1343
if (!defined('PR_SEARCH_RECIP_EMAIL_CC')) {
1344
	define('PR_SEARCH_RECIP_EMAIL_CC', 245825566);
1345
}
1346
if (!defined('PR_SEARCH_RECIP_EMAIL_BCC')) {
1347
	define('PR_SEARCH_RECIP_EMAIL_BCC', 245891102);
1348
}
1349
if (!defined('PR_ACCESS')) {
1350
	define('PR_ACCESS', 267649027);
1351
}
1352
if (!defined('PR_ROW_TYPE')) {
1353
	define('PR_ROW_TYPE', 267714563);
1354
}
1355
if (!defined('PR_INSTANCE_KEY')) {
1356
	define('PR_INSTANCE_KEY', 267780354);
1357
}
1358
if (!defined('PR_INSTANCE_SVREID')) {
1359
	define('PR_INSTANCE_SVREID', 267780347);
1360
}
1361
if (!defined('PR_ACCESS_LEVEL')) {
1362
	define('PR_ACCESS_LEVEL', 267845635);
1363
}
1364
if (!defined('PR_MAPPING_SIGNATURE')) {
1365
	define('PR_MAPPING_SIGNATURE', 267911426);
1366
}
1367
if (!defined('PR_RECORD_KEY')) {
1368
	define('PR_RECORD_KEY', 267976962);
1369
}
1370
if (!defined('PR_STORE_RECORD_KEY')) {
1371
	define('PR_STORE_RECORD_KEY', 268042498);
1372
}
1373
if (!defined('PR_STORE_ENTRYID')) {
1374
	define('PR_STORE_ENTRYID', 268108034);
1375
}
1376
if (!defined('PR_MINI_ICON')) {
1377
	define('PR_MINI_ICON', 268173570);
1378
}
1379
if (!defined('PR_ICON')) {
1380
	define('PR_ICON', 268239106);
1381
}
1382
if (!defined('PR_OBJECT_TYPE')) {
1383
	define('PR_OBJECT_TYPE', 268304387);
1384
}
1385
if (!defined('PR_ENTRYID')) {
1386
	define('PR_ENTRYID', 268370178);
1387
}
1388
if (!defined('PR_BODY')) {
1389
	define('PR_BODY', 268435486);
1390
}
1391
if (!defined('PR_BODY_A')) {
1392
	define('PR_BODY_A', 268435486);
1393
}
1394
if (!defined('PR_BODY_W')) {
1395
	define('PR_BODY_W', 268435486);
1396
}
1397
if (!defined('PR_REPORT_TEXT')) {
1398
	define('PR_REPORT_TEXT', 268501022);
1399
}
1400
if (!defined('PR_ORIGINATOR_AND_DL_EXPANSION_HISTORY')) {
1401
	define('PR_ORIGINATOR_AND_DL_EXPANSION_HISTORY', 268566786);
1402
}
1403
if (!defined('PR_REPORTING_DL_NAME')) {
1404
	define('PR_REPORTING_DL_NAME', 268632322);
1405
}
1406
if (!defined('PR_REPORTING_MTA_CERTIFICATE')) {
1407
	define('PR_REPORTING_MTA_CERTIFICATE', 268697858);
1408
}
1409
if (!defined('PR_RTF_SYNC_BODY_CRC')) {
1410
	define('PR_RTF_SYNC_BODY_CRC', 268828675);
1411
}
1412
if (!defined('PR_RTF_SYNC_BODY_COUNT')) {
1413
	define('PR_RTF_SYNC_BODY_COUNT', 268894211);
1414
}
1415
if (!defined('PR_RTF_SYNC_BODY_TAG')) {
1416
	define('PR_RTF_SYNC_BODY_TAG', 268959774);
1417
}
1418
if (!defined('PR_RTF_COMPRESSED')) {
1419
	define('PR_RTF_COMPRESSED', 269025538);
1420
}
1421
if (!defined('PR_RTF_SYNC_PREFIX_COUNT')) {
1422
	define('PR_RTF_SYNC_PREFIX_COUNT', 269484035);
1423
}
1424
if (!defined('PR_RTF_SYNC_TRAILING_COUNT')) {
1425
	define('PR_RTF_SYNC_TRAILING_COUNT', 269549571);
1426
}
1427
if (!defined('PR_ORIGINALLY_INTENDED_RECIP_ENTRYID')) {
1428
	define('PR_ORIGINALLY_INTENDED_RECIP_ENTRYID', 269615362);
1429
}
1430
if (!defined('PR_BODY_HTML')) {
1431
	define('PR_BODY_HTML', 269680670);
1432
}
1433
if (!defined('PR_BODY_HTML_A')) {
1434
	define('PR_BODY_HTML_A', 269680670);
1435
}
1436
if (!defined('PR_HTML')) {
1437
	define('PR_HTML', 269680898);
1438
}
1439
if (!defined('PR_BODY_CONTENT_LOCATION')) {
1440
	define('PR_BODY_CONTENT_LOCATION', 269746206);
1441
}
1442
if (!defined('PR_BODY_CONTENT_LOCATION_A')) {
1443
	define('PR_BODY_CONTENT_LOCATION_A', 269746206);
1444
}
1445
if (!defined('PR_BODY_CONTENT_ID')) {
1446
	define('PR_BODY_CONTENT_ID', 269811742);
1447
}
1448
if (!defined('PR_BODY_CONTENT_ID_A')) {
1449
	define('PR_BODY_CONTENT_ID_A', 269811742);
1450
}
1451
if (!defined('PR_NATIVE_BODY_INFO')) {
1452
	define('PR_NATIVE_BODY_INFO', 269877251);
1453
}
1454
if (!defined('PR_INTERNET_APPROVED')) {
1455
	define('PR_INTERNET_APPROVED', 271581214);
1456
}
1457
if (!defined('PR_INTERNET_CONTROL')) {
1458
	define('PR_INTERNET_CONTROL', 271646750);
1459
}
1460
if (!defined('PR_INTERNET_DISTRIBUTION')) {
1461
	define('PR_INTERNET_DISTRIBUTION', 271712286);
1462
}
1463
if (!defined('PR_INTERNET_FOLLOWUP_TO')) {
1464
	define('PR_INTERNET_FOLLOWUP_TO', 271777822);
1465
}
1466
if (!defined('PR_INTERNET_LINES')) {
1467
	define('PR_INTERNET_LINES', 271843331);
1468
}
1469
if (!defined('PR_INTERNET_MESSAGE_ID')) {
1470
	define('PR_INTERNET_MESSAGE_ID', 271908894);
1471
}
1472
if (!defined('PR_INTERNET_MESSAGE_ID_A')) {
1473
	define('PR_INTERNET_MESSAGE_ID_A', 271908894);
1474
}
1475
if (!defined('PR_INTERNET_NEWSGROUPS')) {
1476
	define('PR_INTERNET_NEWSGROUPS', 271974430);
1477
}
1478
if (!defined('PR_INTERNET_ORGANIZATION')) {
1479
	define('PR_INTERNET_ORGANIZATION', 272039966);
1480
}
1481
if (!defined('PR_INTERNET_NNTP_PATH')) {
1482
	define('PR_INTERNET_NNTP_PATH', 272105502);
1483
}
1484
if (!defined('PR_INTERNET_REFERENCES')) {
1485
	define('PR_INTERNET_REFERENCES', 272171038);
1486
}
1487
if (!defined('PR_INTERNET_REFERENCES_A')) {
1488
	define('PR_INTERNET_REFERENCES_A', 272171038);
1489
}
1490
if (!defined('PR_SUPERSEDES')) {
1491
	define('PR_SUPERSEDES', 272236574);
1492
}
1493
if (!defined('PR_POST_FOLDER_ENTRIES')) {
1494
	define('PR_POST_FOLDER_ENTRIES', 272302338);
1495
}
1496
if (!defined('PR_POST_FOLDER_NAMES')) {
1497
	define('PR_POST_FOLDER_NAMES', 272367646);
1498
}
1499
if (!defined('PR_POST_REPLY_FOLDER_ENTRIES')) {
1500
	define('PR_POST_REPLY_FOLDER_ENTRIES', 272433410);
1501
}
1502
if (!defined('PR_POST_REPLY_FOLDER_NAMES')) {
1503
	define('PR_POST_REPLY_FOLDER_NAMES', 272498718);
1504
}
1505
if (!defined('PR_POST_REPLY_DENIED')) {
1506
	define('PR_POST_REPLY_DENIED', 272564482);
1507
}
1508
if (!defined('PR_NNTP_XREF')) {
1509
	define('PR_NNTP_XREF', 272629790);
1510
}
1511
if (!defined('PR_INTERNET_PRECEDENCE')) {
1512
	define('PR_INTERNET_PRECEDENCE', 272695326);
1513
}
1514
if (!defined('PR_IN_REPLY_TO_ID')) {
1515
	define('PR_IN_REPLY_TO_ID', 272760862);
1516
}
1517
if (!defined('PR_IN_REPLY_TO_ID_A')) {
1518
	define('PR_IN_REPLY_TO_ID_A', 272760862);
1519
}
1520
if (!defined('PR_LIST_HELP')) {
1521
	define('PR_LIST_HELP', 272826398);
1522
}
1523
if (!defined('PR_LIST_HELP_A')) {
1524
	define('PR_LIST_HELP_A', 272826398);
1525
}
1526
if (!defined('PR_LIST_SUBSCRIBE')) {
1527
	define('PR_LIST_SUBSCRIBE', 272891934);
1528
}
1529
if (!defined('PR_LIST_SUBSCRIBE_A')) {
1530
	define('PR_LIST_SUBSCRIBE_A', 272891934);
1531
}
1532
if (!defined('PR_LIST_UNSUBSCRIBE')) {
1533
	define('PR_LIST_UNSUBSCRIBE', 272957470);
1534
}
1535
if (!defined('PR_LIST_UNSUBSCRIBE_A')) {
1536
	define('PR_LIST_UNSUBSCRIBE_A', 272957470);
1537
}
1538
if (!defined('PR_INTERNET_RETURN_PATH')) {
1539
	define('PR_INTERNET_RETURN_PATH', 273023006);
1540
}
1541
if (!defined('PR_ICON_INDEX')) {
1542
	define('PR_ICON_INDEX', 276824067);
1543
}
1544
if (!defined('PR_LAST_VERB_EXECUTED')) {
1545
	define('PR_LAST_VERB_EXECUTED', 276889603);
1546
}
1547
if (!defined('PR_LAST_VERB_EXECUTION_TIME')) {
1548
	define('PR_LAST_VERB_EXECUTION_TIME', 276955200);
1549
}
1550
if (!defined('PR_FLAG_STATUS')) {
1551
	define('PR_FLAG_STATUS', 277872643);
1552
}
1553
if (!defined('PR_FLAG_COMPLETE_TIME')) {
1554
	define('PR_FLAG_COMPLETE_TIME', 277938240);
1555
}
1556
if (!defined('PR_FOLLOWUP_ICON')) {
1557
	define('PR_FOLLOWUP_ICON', 278200323);
1558
}
1559
if (!defined('PR_BLOCK_STATUS')) {
1560
	define('PR_BLOCK_STATUS', 278265859);
1561
}
1562
if (!defined('PR_ITEM_TMPFLAGS')) {
1563
	define('PR_ITEM_TMPFLAGS', 278331395);
1564
}
1565
if (!defined('PR_CONFLICT_ITEMS')) {
1566
	define('PR_CONFLICT_ITEMS', 278401282);
1567
}
1568
if (!defined('PR_CDO_RECURRENCEID')) {
1569
	define('PR_CDO_RECURRENCEID', 281346112);
1570
}
1571
if (!defined('PR_ATTR_HIDDEN')) {
1572
	define('PR_ATTR_HIDDEN', 284426251);
1573
}
1574
if (!defined('PR_ATTR_HIDDEN_GROMOX')) {
1575
	define('PR_ATTR_HIDDEN_GROMOX', 284426243);
1576
}
1577
if (!defined('PR_ATTR_SYSTEM')) {
1578
	define('PR_ATTR_SYSTEM', 284491787);
1579
}
1580
if (!defined('PR_ATTR_READONLY')) {
1581
	define('PR_ATTR_READONLY', 284557323);
1582
}
1583
if (!defined('PR_ROWID')) {
1584
	define('PR_ROWID', 805306371);
1585
}
1586
if (!defined('PR_DISPLAY_NAME')) {
1587
	define('PR_DISPLAY_NAME', 805371934);
1588
}
1589
if (!defined('PR_DISPLAY_NAME_A')) {
1590
	define('PR_DISPLAY_NAME_A', 805371934);
1591
}
1592
if (!defined('PR_ADDRTYPE')) {
1593
	define('PR_ADDRTYPE', 805437470);
1594
}
1595
if (!defined('PR_ADDRTYPE_A')) {
1596
	define('PR_ADDRTYPE_A', 805437470);
1597
}
1598
if (!defined('PR_EMAIL_ADDRESS')) {
1599
	define('PR_EMAIL_ADDRESS', 805503006);
1600
}
1601
if (!defined('PR_EMAIL_ADDRESS_A')) {
1602
	define('PR_EMAIL_ADDRESS_A', 805503006);
1603
}
1604
if (!defined('PR_COMMENT')) {
1605
	define('PR_COMMENT', 805568542);
1606
}
1607
if (!defined('PR_DEPTH')) {
1608
	define('PR_DEPTH', 805634051);
1609
}
1610
if (!defined('PR_PROVIDER_DISPLAY')) {
1611
	define('PR_PROVIDER_DISPLAY', 805699614);
1612
}
1613
if (!defined('PR_CREATION_TIME')) {
1614
	define('PR_CREATION_TIME', 805765184);
1615
}
1616
if (!defined('PR_LAST_MODIFICATION_TIME')) {
1617
	define('PR_LAST_MODIFICATION_TIME', 805830720);
1618
}
1619
if (!defined('PR_RESOURCE_FLAGS')) {
1620
	define('PR_RESOURCE_FLAGS', 805896195);
1621
}
1622
if (!defined('PR_PROVIDER_DLL_NAME')) {
1623
	define('PR_PROVIDER_DLL_NAME', 805961758);
1624
}
1625
if (!defined('PR_SEARCH_KEY')) {
1626
	define('PR_SEARCH_KEY', 806027522);
1627
}
1628
if (!defined('PR_PROVIDER_UID')) {
1629
	define('PR_PROVIDER_UID', 806093058);
1630
}
1631
if (!defined('PR_PROVIDER_ORDINAL')) {
1632
	define('PR_PROVIDER_ORDINAL', 806158339);
1633
}
1634
if (!defined('PR_TARGET_ENTRYID')) {
1635
	define('PR_TARGET_ENTRYID', 806355202);
1636
}
1637
if (!defined('PR_CONVERSATION_ID')) {
1638
	define('PR_CONVERSATION_ID', 806551810);
1639
}
1640
if (!defined('PR_CONVERSATION_INDEX_TRACKING')) {
1641
	define('PR_CONVERSATION_INDEX_TRACKING', 806748171);
1642
}
1643
if (!defined('PR_ARCHIVE_TAG')) {
1644
	define('PR_ARCHIVE_TAG', 806879490);
1645
}
1646
if (!defined('PR_POLICY_TAG')) {
1647
	define('PR_POLICY_TAG', 806945026);
1648
}
1649
if (!defined('PR_RETENTION_PERIOD')) {
1650
	define('PR_RETENTION_PERIOD', 807010307);
1651
}
1652
if (!defined('PR_START_DATE_ETC')) {
1653
	define('PR_START_DATE_ETC', 807076098);
1654
}
1655
if (!defined('PR_RETENTION_DATE')) {
1656
	define('PR_RETENTION_DATE', 807141440);
1657
}
1658
if (!defined('PR_RETENTION_FLAGS')) {
1659
	define('PR_RETENTION_FLAGS', 807206915);
1660
}
1661
if (!defined('PR_ARCHIVE_PERIOD')) {
1662
	define('PR_ARCHIVE_PERIOD', 807272451);
1663
}
1664
if (!defined('PR_ARCHIVE_DATE')) {
1665
	define('PR_ARCHIVE_DATE', 807338048);
1666
}
1667
if (!defined('PR_SORT_POSITION')) {
1668
	define('PR_SORT_POSITION', 807403778);
1669
}
1670
if (!defined('PR_SORT_PARENTID')) {
1671
	define('PR_SORT_PARENTID', 807469314);
1672
}
1673
if (!defined('PR_FORM_VERSION')) {
1674
	define('PR_FORM_VERSION', 855703582);
1675
}
1676
if (!defined('PR_FORM_CLSID')) {
1677
	define('PR_FORM_CLSID', 855769160);
1678
}
1679
if (!defined('PR_FORM_CONTACT_NAME')) {
1680
	define('PR_FORM_CONTACT_NAME', 855834654);
1681
}
1682
if (!defined('PR_FORM_CATEGORY')) {
1683
	define('PR_FORM_CATEGORY', 855900190);
1684
}
1685
if (!defined('PR_FORM_CATEGORY_SUB')) {
1686
	define('PR_FORM_CATEGORY_SUB', 855965726);
1687
}
1688
if (!defined('PR_FORM_HOST_MAP')) {
1689
	define('PR_FORM_HOST_MAP', 856035331);
1690
}
1691
if (!defined('PR_FORM_HIDDEN')) {
1692
	define('PR_FORM_HIDDEN', 856096779);
1693
}
1694
if (!defined('PR_FORM_DESIGNER_NAME')) {
1695
	define('PR_FORM_DESIGNER_NAME', 856162334);
1696
}
1697
if (!defined('PR_FORM_DESIGNER_GUID')) {
1698
	define('PR_FORM_DESIGNER_GUID', 856227912);
1699
}
1700
if (!defined('PR_FORM_MESSAGE_BEHAVIOR')) {
1701
	define('PR_FORM_MESSAGE_BEHAVIOR', 856293379);
1702
}
1703
if (!defined('PR_DEFAULT_STORE')) {
1704
	define('PR_DEFAULT_STORE', 872415243);
1705
}
1706
if (!defined('PR_STORE_SUPPORT_MASK')) {
1707
	define('PR_STORE_SUPPORT_MASK', 873267203);
1708
}
1709
if (!defined('PR_STORE_STATE')) {
1710
	define('PR_STORE_STATE', 873332739);
1711
}
1712
if (!defined('PR_STORE_UNICODE_MASK')) {
1713
	define('PR_STORE_UNICODE_MASK', 873398275);
1714
}
1715
if (!defined('PR_IPM_SUBTREE_SEARCH_KEY')) {
1716
	define('PR_IPM_SUBTREE_SEARCH_KEY', 873464066);
1717
}
1718
if (!defined('PR_IPM_OUTBOX_SEARCH_KEY')) {
1719
	define('PR_IPM_OUTBOX_SEARCH_KEY', 873529602);
1720
}
1721
if (!defined('PR_IPM_WASTEBASKET_SEARCH_KEY')) {
1722
	define('PR_IPM_WASTEBASKET_SEARCH_KEY', 873595138);
1723
}
1724
if (!defined('PR_IPM_SENTMAIL_SEARCH_KEY')) {
1725
	define('PR_IPM_SENTMAIL_SEARCH_KEY', 873660674);
1726
}
1727
if (!defined('PR_MDB_PROVIDER')) {
1728
	define('PR_MDB_PROVIDER', 873726210);
1729
}
1730
if (!defined('PR_RECEIVE_FOLDER_SETTINGS')) {
1731
	define('PR_RECEIVE_FOLDER_SETTINGS', 873791501);
1732
}
1733
if (!defined('PR_QUOTA_WARNING')) {
1734
	define('PR_QUOTA_WARNING', 873988099);
1735
}
1736
if (!defined('PR_QUOTA_SEND')) {
1737
	define('PR_QUOTA_SEND', 874053635);
1738
}
1739
if (!defined('PR_QUOTA_RECEIVE')) {
1740
	define('PR_QUOTA_RECEIVE', 874119171);
1741
}
1742
if (!defined('PR_ROOT_ENTRYID')) {
1743
	define('PR_ROOT_ENTRYID', 903348482);
1744
}
1745
if (!defined('PR_VALID_FOLDER_MASK')) {
1746
	define('PR_VALID_FOLDER_MASK', 903806979);
1747
}
1748
if (!defined('PR_IPM_SUBTREE_ENTRYID')) {
1749
	define('PR_IPM_SUBTREE_ENTRYID', 903872770);
1750
}
1751
if (!defined('PR_IPM_INBOX_ENTRYID')) {
1752
	define('PR_IPM_INBOX_ENTRYID', 903938306);
1753
}
1754
if (!defined('PR_IPM_OUTBOX_ENTRYID')) {
1755
	define('PR_IPM_OUTBOX_ENTRYID', 904003842);
1756
}
1757
if (!defined('PR_IPM_WASTEBASKET_ENTRYID')) {
1758
	define('PR_IPM_WASTEBASKET_ENTRYID', 904069378);
1759
}
1760
if (!defined('PR_IPM_SENTMAIL_ENTRYID')) {
1761
	define('PR_IPM_SENTMAIL_ENTRYID', 904134914);
1762
}
1763
if (!defined('PR_VIEWS_ENTRYID')) {
1764
	define('PR_VIEWS_ENTRYID', 904200450);
1765
}
1766
if (!defined('PR_COMMON_VIEWS_ENTRYID')) {
1767
	define('PR_COMMON_VIEWS_ENTRYID', 904265986);
1768
}
1769
if (!defined('PR_FINDER_ENTRYID')) {
1770
	define('PR_FINDER_ENTRYID', 904331522);
1771
}
1772
if (!defined('PR_SYNC_ROOT_ENTRYID')) {
1773
	define('PR_SYNC_ROOT_ENTRYID', 904528130);
1774
}
1775
if (!defined('PR_VOICEMAIL_FOLDER_ENTRYID')) {
1776
	define('PR_VOICEMAIL_FOLDER_ENTRYID', 904593666);
1777
}
1778
if (!defined('PR_CONTAINER_FLAGS')) {
1779
	define('PR_CONTAINER_FLAGS', 905969667);
1780
}
1781
if (!defined('PR_FOLDER_TYPE')) {
1782
	define('PR_FOLDER_TYPE', 906035203);
1783
}
1784
if (!defined('PR_CONTENT_COUNT')) {
1785
	define('PR_CONTENT_COUNT', 906100739);
1786
}
1787
if (!defined('PR_CONTENT_UNREAD')) {
1788
	define('PR_CONTENT_UNREAD', 906166275);
1789
}
1790
if (!defined('PR_CREATE_TEMPLATES')) {
1791
	define('PR_CREATE_TEMPLATES', 906231821);
1792
}
1793
if (!defined('PR_SEARCH')) {
1794
	define('PR_SEARCH', 906428429);
1795
}
1796
if (!defined('PR_SELECTABLE')) {
1797
	define('PR_SELECTABLE', 906559499);
1798
}
1799
if (!defined('PR_SUBFOLDERS')) {
1800
	define('PR_SUBFOLDERS', 906625035);
1801
}
1802
if (!defined('PR_STATUS')) {
1803
	define('PR_STATUS', 906690563);
1804
}
1805
if (!defined('PR_ANR')) {
1806
	define('PR_ANR', 906756126);
1807
}
1808
if (!defined('PR_ANR_A')) {
1809
	define('PR_ANR_A', 906756126);
1810
}
1811
if (!defined('PR_CONTENTS_SORT_ORDER')) {
1812
	define('PR_CONTENTS_SORT_ORDER', 906825731);
1813
}
1814
if (!defined('PR_CONTAINER_HIERARCHY')) {
1815
	define('PR_CONTAINER_HIERARCHY', 906887181);
1816
}
1817
if (!defined('PR_CONTAINER_CONTENTS')) {
1818
	define('PR_CONTAINER_CONTENTS', 906952717);
1819
}
1820
if (!defined('PR_FOLDER_ASSOCIATED_CONTENTS')) {
1821
	define('PR_FOLDER_ASSOCIATED_CONTENTS', 907018253);
1822
}
1823
if (!defined('PR_DEF_CREATE_DL')) {
1824
	define('PR_DEF_CREATE_DL', 907084034);
1825
}
1826
if (!defined('PR_DEF_CREATE_MAILUSER')) {
1827
	define('PR_DEF_CREATE_MAILUSER', 907149570);
1828
}
1829
if (!defined('PR_CONTAINER_CLASS')) {
1830
	define('PR_CONTAINER_CLASS', 907214878);
1831
}
1832
if (!defined('PR_CONTAINER_MODIFY_VERSION')) {
1833
	define('PR_CONTAINER_MODIFY_VERSION', 907280404);
1834
}
1835
if (!defined('PR_AB_PROVIDER_ID')) {
1836
	define('PR_AB_PROVIDER_ID', 907346178);
1837
}
1838
if (!defined('PR_DEFAULT_VIEW_ENTRYID')) {
1839
	define('PR_DEFAULT_VIEW_ENTRYID', 907411714);
1840
}
1841
if (!defined('PR_ASSOC_CONTENT_COUNT')) {
1842
	define('PR_ASSOC_CONTENT_COUNT', 907476995);
1843
}
1844
if (!defined('PR_IPM_APPOINTMENT_ENTRYID')) {
1845
	define('PR_IPM_APPOINTMENT_ENTRYID', 919601410);
1846
}
1847
if (!defined('PR_IPM_CONTACT_ENTRYID')) {
1848
	define('PR_IPM_CONTACT_ENTRYID', 919666946);
1849
}
1850
if (!defined('PR_IPM_JOURNAL_ENTRYID')) {
1851
	define('PR_IPM_JOURNAL_ENTRYID', 919732482);
1852
}
1853
if (!defined('PR_IPM_NOTE_ENTRYID')) {
1854
	define('PR_IPM_NOTE_ENTRYID', 919798018);
1855
}
1856
if (!defined('PR_IPM_TASK_ENTRYID')) {
1857
	define('PR_IPM_TASK_ENTRYID', 919863554);
1858
}
1859
if (!defined('PR_REM_ONLINE_ENTRYID')) {
1860
	define('PR_REM_ONLINE_ENTRYID', 919929090);
1861
}
1862
if (!defined('PR_REM_OFFLINE_ENTRYID')) {
1863
	define('PR_REM_OFFLINE_ENTRYID', 919994626);
1864
}
1865
if (!defined('PR_IPM_DRAFTS_ENTRYID')) {
1866
	define('PR_IPM_DRAFTS_ENTRYID', 920060162);
1867
}
1868
if (!defined('PR_ADDITIONAL_REN_ENTRYIDS')) {
1869
	define('PR_ADDITIONAL_REN_ENTRYIDS', 920129794);
1870
}
1871
if (!defined('PR_ADDITIONAL_REN_ENTRYIDS_EX')) {
1872
	define('PR_ADDITIONAL_REN_ENTRYIDS_EX', 920191234);
1873
}
1874
if (!defined('PR_EXTENDED_FOLDER_FLAGS')) {
1875
	define('PR_EXTENDED_FOLDER_FLAGS', 920256770);
1876
}
1877
if (!defined('PR_NET_FOLDER_FLAGS')) {
1878
	define('PR_NET_FOLDER_FLAGS', 920518659);
1879
}
1880
if (!defined('PR_FOLDER_WEBVIEWINFO')) {
1881
	define('PR_FOLDER_WEBVIEWINFO', 920584450);
1882
}
1883
if (!defined('PR_FOLDER_XVIEWINFO_E')) {
1884
	define('PR_FOLDER_XVIEWINFO_E', 920649986);
1885
}
1886
if (!defined('PR_FOLDER_VIEWS_ONLY')) {
1887
	define('PR_FOLDER_VIEWS_ONLY', 920715267);
1888
}
1889
if (!defined('PR_ORDINAL_MOST')) {
1890
	define('PR_ORDINAL_MOST', 920780803);
1891
}
1892
if (!defined('PR_FREEBUSY_ENTRYIDS')) {
1893
	define('PR_FREEBUSY_ENTRYIDS', 920916226);
1894
}
1895
if (!defined('PR_DEF_POST_MSGCLASS')) {
1896
	define('PR_DEF_POST_MSGCLASS', 920977438);
1897
}
1898
if (!defined('PR_DEF_POST_DISPLAYNAME')) {
1899
	define('PR_DEF_POST_DISPLAYNAME', 921042974);
1900
}
1901
if (!defined('PR_GENERATE_EXCHANGE_VIEWS')) {
1902
	define('PR_GENERATE_EXCHANGE_VIEWS', 921239563);
1903
}
1904
if (!defined('PR_ATTACHMENT_X400_PARAMETERS')) {
1905
	define('PR_ATTACHMENT_X400_PARAMETERS', 922747138);
1906
}
1907
if (!defined('PR_ATTACH_DATA_BIN')) {
1908
	define('PR_ATTACH_DATA_BIN', 922812674);
1909
}
1910
if (!defined('PR_ATTACH_DATA_OBJ')) {
1911
	define('PR_ATTACH_DATA_OBJ', 922812429);
1912
}
1913
if (!defined('PR_ATTACH_ENCODING')) {
1914
	define('PR_ATTACH_ENCODING', 922878210);
1915
}
1916
if (!defined('PR_ATTACH_EXTENSION')) {
1917
	define('PR_ATTACH_EXTENSION', 922943518);
1918
}
1919
if (!defined('PR_ATTACH_EXTENSION_A')) {
1920
	define('PR_ATTACH_EXTENSION_A', 922943518);
1921
}
1922
if (!defined('PR_ATTACH_FILENAME')) {
1923
	define('PR_ATTACH_FILENAME', 923009054);
1924
}
1925
if (!defined('PR_ATTACH_FILENAME_A')) {
1926
	define('PR_ATTACH_FILENAME_A', 923009054);
1927
}
1928
if (!defined('PR_ATTACH_METHOD')) {
1929
	define('PR_ATTACH_METHOD', 923074563);
1930
}
1931
if (!defined('PR_ATTACH_LONG_FILENAME')) {
1932
	define('PR_ATTACH_LONG_FILENAME', 923205662);
1933
}
1934
if (!defined('PR_ATTACH_LONG_FILENAME_A')) {
1935
	define('PR_ATTACH_LONG_FILENAME_A', 923205662);
1936
}
1937
if (!defined('PR_ATTACH_PATHNAME')) {
1938
	define('PR_ATTACH_PATHNAME', 923271198);
1939
}
1940
if (!defined('PR_ATTACH_RENDERING')) {
1941
	define('PR_ATTACH_RENDERING', 923336962);
1942
}
1943
if (!defined('PR_ATTACH_TAG')) {
1944
	define('PR_ATTACH_TAG', 923402498);
1945
}
1946
if (!defined('PR_RENDERING_POSITION')) {
1947
	define('PR_RENDERING_POSITION', 923467779);
1948
}
1949
if (!defined('PR_ATTACH_TRANSPORT_NAME_A')) {
1950
	define('PR_ATTACH_TRANSPORT_NAME_A', 923533342);
1951
}
1952
if (!defined('PR_ATTACH_TRANSPORT_NAME')) {
1953
	define('PR_ATTACH_TRANSPORT_NAME', 923533342);
1954
}
1955
if (!defined('PR_ATTACH_LONG_PATHNAME')) {
1956
	define('PR_ATTACH_LONG_PATHNAME', 923598878);
1957
}
1958
if (!defined('PR_ATTACH_MIME_TAG')) {
1959
	define('PR_ATTACH_MIME_TAG', 923664414);
1960
}
1961
if (!defined('PR_ATTACH_ADDITIONAL_INFO')) {
1962
	define('PR_ATTACH_ADDITIONAL_INFO', 923730178);
1963
}
1964
if (!defined('PR_ATTACH_CONTENT_BASE')) {
1965
	define('PR_ATTACH_CONTENT_BASE', 923861022);
1966
}
1967
if (!defined('PR_ATTACH_CONTENT_BASE_A')) {
1968
	define('PR_ATTACH_CONTENT_BASE_A', 923861022);
1969
}
1970
if (!defined('PR_ATTACH_CONTENT_ID')) {
1971
	define('PR_ATTACH_CONTENT_ID', 923926558);
1972
}
1973
if (!defined('PR_ATTACH_CONTENT_ID_A')) {
1974
	define('PR_ATTACH_CONTENT_ID_A', 923926558);
1975
}
1976
if (!defined('PR_ATTACH_CONTENT_LOCATION')) {
1977
	define('PR_ATTACH_CONTENT_LOCATION', 923992094);
1978
}
1979
if (!defined('PR_ATTACH_CONTENT_LOCATION_A')) {
1980
	define('PR_ATTACH_CONTENT_LOCATION_A', 923992094);
1981
}
1982
if (!defined('PR_ATTACH_FLAGS')) {
1983
	define('PR_ATTACH_FLAGS', 924057603);
1984
}
1985
if (!defined('PR_ATTACH_PAYLOAD_PROV_GUID_STR')) {
1986
	define('PR_ATTACH_PAYLOAD_PROV_GUID_STR', 924385310);
1987
}
1988
if (!defined('PR_ATTACH_PAYLOAD_CLASS')) {
1989
	define('PR_ATTACH_PAYLOAD_CLASS', 924450846);
1990
}
1991
if (!defined('PR_ATTACH_PAYLOAD_CLASS_A')) {
1992
	define('PR_ATTACH_PAYLOAD_CLASS_A', 924450846);
1993
}
1994
if (!defined('PR_DISPLAY_TYPE')) {
1995
	define('PR_DISPLAY_TYPE', 956301315);
1996
}
1997
if (!defined('PR_TEMPLATEID')) {
1998
	define('PR_TEMPLATEID', 956432642);
1999
}
2000
if (!defined('PR_PRIMARY_CAPABILITY')) {
2001
	define('PR_PRIMARY_CAPABILITY', 956563714);
2002
}
2003
if (!defined('PR_DISPLAY_TYPE_EX')) {
2004
	define('PR_DISPLAY_TYPE_EX', 956628995);
2005
}
2006
if (!defined('PR_SMTP_ADDRESS')) {
2007
	define('PR_SMTP_ADDRESS', 972947486);
2008
}
2009
if (!defined('PR_SMTP_ADDRESS_A')) {
2010
	define('PR_SMTP_ADDRESS_A', 972947486);
2011
}
2012
if (!defined('PR_EMS_AB_DISPLAY_NAME_PRINTABLE')) {
2013
	define('PR_EMS_AB_DISPLAY_NAME_PRINTABLE', 973013022);
2014
}
2015
if (!defined('PR_EMS_AB_DISPLAY_NAME_PRINTABLE_A')) {
2016
	define('PR_EMS_AB_DISPLAY_NAME_PRINTABLE_A', 973013022);
2017
}
2018
if (!defined('PR_7BIT_DISPLAY_NAME')) {
2019
	define('PR_7BIT_DISPLAY_NAME', 973013022);
2020
}
2021
if (!defined('PR_ACCOUNT')) {
2022
	define('PR_ACCOUNT', 973078558);
2023
}
2024
if (!defined('PR_ACCOUNT_A')) {
2025
	define('PR_ACCOUNT_A', 973078558);
2026
}
2027
if (!defined('PR_ALTERNATE_RECIPIENT')) {
2028
	define('PR_ALTERNATE_RECIPIENT', 973144322);
2029
}
2030
if (!defined('PR_CALLBACK_TELEPHONE_NUMBER')) {
2031
	define('PR_CALLBACK_TELEPHONE_NUMBER', 973209630);
2032
}
2033
if (!defined('PR_CONVERSION_PROHIBITED')) {
2034
	define('PR_CONVERSION_PROHIBITED', 973275147);
2035
}
2036
if (!defined('PR_DISCLOSE_RECIPIENTS')) {
2037
	define('PR_DISCLOSE_RECIPIENTS', 973340683);
2038
}
2039
if (!defined('PR_GENERATION')) {
2040
	define('PR_GENERATION', 973406238);
2041
}
2042
if (!defined('PR_GIVEN_NAME')) {
2043
	define('PR_GIVEN_NAME', 973471774);
2044
}
2045
if (!defined('PR_GOVERNMENT_ID_NUMBER')) {
2046
	define('PR_GOVERNMENT_ID_NUMBER', 973537310);
2047
}
2048
if (!defined('PR_BUSINESS_TELEPHONE_NUMBER')) {
2049
	define('PR_BUSINESS_TELEPHONE_NUMBER', 973602846);
2050
}
2051
if (!defined('PR_OFFICE_TELEPHONE_NUMBER')) {
2052
	define('PR_OFFICE_TELEPHONE_NUMBER', 973602846);
2053
}
2054
if (!defined('PR_HOME_TELEPHONE_NUMBER')) {
2055
	define('PR_HOME_TELEPHONE_NUMBER', 973668382);
2056
}
2057
if (!defined('PR_INITIALS')) {
2058
	define('PR_INITIALS', 973733918);
2059
}
2060
if (!defined('PR_KEYWORD')) {
2061
	define('PR_KEYWORD', 973799454);
2062
}
2063
if (!defined('PR_LANGUAGE')) {
2064
	define('PR_LANGUAGE', 973864990);
2065
}
2066
if (!defined('PR_LOCATION')) {
2067
	define('PR_LOCATION', 973930526);
2068
}
2069
if (!defined('PR_MAIL_PERMISSION')) {
2070
	define('PR_MAIL_PERMISSION', 973996043);
2071
}
2072
if (!defined('PR_MHS_COMMON_NAME')) {
2073
	define('PR_MHS_COMMON_NAME', 974061598);
2074
}
2075
if (!defined('PR_ORGANIZATIONAL_ID_NUMBER')) {
2076
	define('PR_ORGANIZATIONAL_ID_NUMBER', 974127134);
2077
}
2078
if (!defined('PR_SURNAME')) {
2079
	define('PR_SURNAME', 974192670);
2080
}
2081
if (!defined('PR_ORIGINAL_ENTRYID')) {
2082
	define('PR_ORIGINAL_ENTRYID', 974258434);
2083
}
2084
if (!defined('PR_ORIGINAL_DISPLAY_NAME')) {
2085
	define('PR_ORIGINAL_DISPLAY_NAME', 974323742);
2086
}
2087
if (!defined('PR_ORIGINAL_SEARCH_KEY')) {
2088
	define('PR_ORIGINAL_SEARCH_KEY', 974389506);
2089
}
2090
if (!defined('PR_POSTAL_ADDRESS')) {
2091
	define('PR_POSTAL_ADDRESS', 974454814);
2092
}
2093
if (!defined('PR_COMPANY_NAME')) {
2094
	define('PR_COMPANY_NAME', 974520350);
2095
}
2096
if (!defined('PR_COMPANY_NAME_A')) {
2097
	define('PR_COMPANY_NAME_A', 974520350);
2098
}
2099
if (!defined('PR_TITLE')) {
2100
	define('PR_TITLE', 974585886);
2101
}
2102
if (!defined('PR_DEPARTMENT_NAME')) {
2103
	define('PR_DEPARTMENT_NAME', 974651422);
2104
}
2105
if (!defined('PR_DEPARTMENT_NAME_A')) {
2106
	define('PR_DEPARTMENT_NAME_A', 974651422);
2107
}
2108
if (!defined('PR_OFFICE_LOCATION')) {
2109
	define('PR_OFFICE_LOCATION', 974716958);
2110
}
2111
if (!defined('PR_OFFICE_LOCATION_A')) {
2112
	define('PR_OFFICE_LOCATION_A', 974716958);
2113
}
2114
if (!defined('PR_PRIMARY_TELEPHONE_NUMBER')) {
2115
	define('PR_PRIMARY_TELEPHONE_NUMBER', 974782494);
2116
}
2117
if (!defined('PR_PRIMARY_TELEPHONE_NUMBER_A')) {
2118
	define('PR_PRIMARY_TELEPHONE_NUMBER_A', 974782494);
2119
}
2120
if (!defined('PR_BUSINESS2_TELEPHONE_NUMBER')) {
2121
	define('PR_BUSINESS2_TELEPHONE_NUMBER', 974848030);
2122
}
2123
if (!defined('PR_BUSINESS2_TELEPHONE_NUMBER_MV')) {
2124
	define('PR_BUSINESS2_TELEPHONE_NUMBER_MV', 974852126);
2125
}
2126
if (!defined('PR_OFFICE2_TELEPHONE_NUMBER')) {
2127
	define('PR_OFFICE2_TELEPHONE_NUMBER', 974848030);
2128
}
2129
if (!defined('PR_MOBILE_TELEPHONE_NUMBER')) {
2130
	define('PR_MOBILE_TELEPHONE_NUMBER', 974913566);
2131
}
2132
if (!defined('PR_CELLULAR_TELEPHONE_NUMBER')) {
2133
	define('PR_CELLULAR_TELEPHONE_NUMBER', 974913566);
2134
}
2135
if (!defined('PR_RADIO_TELEPHONE_NUMBER')) {
2136
	define('PR_RADIO_TELEPHONE_NUMBER', 974979102);
2137
}
2138
if (!defined('PR_CAR_TELEPHONE_NUMBER')) {
2139
	define('PR_CAR_TELEPHONE_NUMBER', 975044638);
2140
}
2141
if (!defined('PR_OTHER_TELEPHONE_NUMBER')) {
2142
	define('PR_OTHER_TELEPHONE_NUMBER', 975110174);
2143
}
2144
if (!defined('PR_TRANSMITABLE_DISPLAY_NAME')) {
2145
	define('PR_TRANSMITABLE_DISPLAY_NAME', 975175710);
2146
}
2147
if (!defined('PR_TRANSMITABLE_DISPLAY_NAME_A')) {
2148
	define('PR_TRANSMITABLE_DISPLAY_NAME_A', 975175710);
2149
}
2150
if (!defined('PR_BEEPER_TELEPHONE_NUMBER')) {
2151
	define('PR_BEEPER_TELEPHONE_NUMBER', 975241246);
2152
}
2153
if (!defined('PR_PAGER_TELEPHONE_NUMBER')) {
2154
	define('PR_PAGER_TELEPHONE_NUMBER', 975241246);
2155
}
2156
if (!defined('PR_USER_CERTIFICATE')) {
2157
	define('PR_USER_CERTIFICATE', 975307010);
2158
}
2159
if (!defined('PR_PRIMARY_FAX_NUMBER')) {
2160
	define('PR_PRIMARY_FAX_NUMBER', 975372318);
2161
}
2162
if (!defined('PR_BUSINESS_FAX_NUMBER')) {
2163
	define('PR_BUSINESS_FAX_NUMBER', 975437854);
2164
}
2165
if (!defined('PR_HOME_FAX_NUMBER')) {
2166
	define('PR_HOME_FAX_NUMBER', 975503390);
2167
}
2168
if (!defined('PR_BUSINESS_ADDRESS_COUNTRY')) {
2169
	define('PR_BUSINESS_ADDRESS_COUNTRY', 975568926);
2170
}
2171
if (!defined('PR_COUNTRY')) {
2172
	define('PR_COUNTRY', 975568926);
2173
}
2174
if (!defined('PR_BUSINESS_ADDRESS_CITY')) {
2175
	define('PR_BUSINESS_ADDRESS_CITY', 975634462);
2176
}
2177
if (!defined('PR_LOCALITY')) {
2178
	define('PR_LOCALITY', 975634462);
2179
}
2180
if (!defined('PR_BUSINESS_ADDRESS_STATE_OR_PROVINCE')) {
2181
	define('PR_BUSINESS_ADDRESS_STATE_OR_PROVINCE', 975699998);
2182
}
2183
if (!defined('PR_STATE_OR_PROVINCE')) {
2184
	define('PR_STATE_OR_PROVINCE', 975699998);
2185
}
2186
if (!defined('PR_BUSINESS_ADDRESS_STREET')) {
2187
	define('PR_BUSINESS_ADDRESS_STREET', 975765534);
2188
}
2189
if (!defined('PR_STREET_ADDRESS')) {
2190
	define('PR_STREET_ADDRESS', 975765534);
2191
}
2192
if (!defined('PR_BUSINESS_ADDRESS_POSTAL_CODE')) {
2193
	define('PR_BUSINESS_ADDRESS_POSTAL_CODE', 975831070);
2194
}
2195
if (!defined('PR_POSTAL_CODE')) {
2196
	define('PR_POSTAL_CODE', 975831070);
2197
}
2198
if (!defined('PR_BUSINESS_ADDRESS_POST_OFFICE_BOX')) {
2199
	define('PR_BUSINESS_ADDRESS_POST_OFFICE_BOX', 975896606);
2200
}
2201
if (!defined('PR_POST_OFFICE_BOX')) {
2202
	define('PR_POST_OFFICE_BOX', 975896606);
2203
}
2204
if (!defined('PR_TELEX_NUMBER')) {
2205
	define('PR_TELEX_NUMBER', 975962142);
2206
}
2207
if (!defined('PR_ISDN_NUMBER')) {
2208
	define('PR_ISDN_NUMBER', 976027678);
2209
}
2210
if (!defined('PR_ASSISTANT_TELEPHONE_NUMBER')) {
2211
	define('PR_ASSISTANT_TELEPHONE_NUMBER', 976093214);
2212
}
2213
if (!defined('PR_HOME2_TELEPHONE_NUMBER')) {
2214
	define('PR_HOME2_TELEPHONE_NUMBER', 976158750);
2215
}
2216
if (!defined('PR_HOME2_TELEPHONE_NUMBER_MV')) {
2217
	define('PR_HOME2_TELEPHONE_NUMBER_MV', 976162846);
2218
}
2219
if (!defined('PR_ASSISTANT')) {
2220
	define('PR_ASSISTANT', 976224286);
2221
}
2222
if (!defined('PR_SEND_RICH_INFO')) {
2223
	define('PR_SEND_RICH_INFO', 977272843);
2224
}
2225
if (!defined('PR_WEDDING_ANNIVERSARY')) {
2226
	define('PR_WEDDING_ANNIVERSARY', 977338432);
2227
}
2228
if (!defined('PR_BIRTHDAY')) {
2229
	define('PR_BIRTHDAY', 977403968);
2230
}
2231
if (!defined('PR_HOBBIES')) {
2232
	define('PR_HOBBIES', 977469470);
2233
}
2234
if (!defined('PR_MIDDLE_NAME')) {
2235
	define('PR_MIDDLE_NAME', 977535006);
2236
}
2237
if (!defined('PR_DISPLAY_NAME_PREFIX')) {
2238
	define('PR_DISPLAY_NAME_PREFIX', 977600542);
2239
}
2240
if (!defined('PR_PROFESSION')) {
2241
	define('PR_PROFESSION', 977666078);
2242
}
2243
if (!defined('PR_PREFERRED_BY_NAME')) {
2244
	define('PR_PREFERRED_BY_NAME', 977731614);
2245
}
2246
if (!defined('PR_SPOUSE_NAME')) {
2247
	define('PR_SPOUSE_NAME', 977797150);
2248
}
2249
if (!defined('PR_COMPUTER_NETWORK_NAME')) {
2250
	define('PR_COMPUTER_NETWORK_NAME', 977862686);
2251
}
2252
if (!defined('PR_CUSTOMER_ID')) {
2253
	define('PR_CUSTOMER_ID', 977928222);
2254
}
2255
if (!defined('PR_TTYTDD_PHONE_NUMBER')) {
2256
	define('PR_TTYTDD_PHONE_NUMBER', 977993758);
2257
}
2258
if (!defined('PR_FTP_SITE')) {
2259
	define('PR_FTP_SITE', 978059294);
2260
}
2261
if (!defined('PR_GENDER')) {
2262
	define('PR_GENDER', 978124802);
2263
}
2264
if (!defined('PR_MANAGER_NAME')) {
2265
	define('PR_MANAGER_NAME', 978190366);
2266
}
2267
if (!defined('PR_NICKNAME')) {
2268
	define('PR_NICKNAME', 978255902);
2269
}
2270
if (!defined('PR_PERSONAL_HOME_PAGE')) {
2271
	define('PR_PERSONAL_HOME_PAGE', 978321438);
2272
}
2273
if (!defined('PR_BUSINESS_HOME_PAGE')) {
2274
	define('PR_BUSINESS_HOME_PAGE', 978386974);
2275
}
2276
if (!defined('PR_CONTACT_VERSION')) {
2277
	define('PR_CONTACT_VERSION', 978452552);
2278
}
2279
if (!defined('PR_CONTACT_ENTRYIDS')) {
2280
	define('PR_CONTACT_ENTRYIDS', 978522370);
2281
}
2282
if (!defined('PR_CONTACT_ADDRTYPES')) {
2283
	define('PR_CONTACT_ADDRTYPES', 978587678);
2284
}
2285
if (!defined('PR_CONTACT_DEFAULT_ADDRESS_INDEX')) {
2286
	define('PR_CONTACT_DEFAULT_ADDRESS_INDEX', 978649091);
2287
}
2288
if (!defined('PR_CONTACT_EMAIL_ADDRESSES')) {
2289
	define('PR_CONTACT_EMAIL_ADDRESSES', 978718750);
2290
}
2291
if (!defined('PR_COMPANY_MAIN_PHONE_NUMBER')) {
2292
	define('PR_COMPANY_MAIN_PHONE_NUMBER', 978780190);
2293
}
2294
if (!defined('PR_CHILDRENS_NAMES')) {
2295
	define('PR_CHILDRENS_NAMES', 978849822);
2296
}
2297
if (!defined('PR_HOME_ADDRESS_CITY')) {
2298
	define('PR_HOME_ADDRESS_CITY', 978911262);
2299
}
2300
if (!defined('PR_HOME_ADDRESS_COUNTRY')) {
2301
	define('PR_HOME_ADDRESS_COUNTRY', 978976798);
2302
}
2303
if (!defined('PR_HOME_ADDRESS_POSTAL_CODE')) {
2304
	define('PR_HOME_ADDRESS_POSTAL_CODE', 979042334);
2305
}
2306
if (!defined('PR_HOME_ADDRESS_STATE_OR_PROVINCE')) {
2307
	define('PR_HOME_ADDRESS_STATE_OR_PROVINCE', 979107870);
2308
}
2309
if (!defined('PR_HOME_ADDRESS_STREET')) {
2310
	define('PR_HOME_ADDRESS_STREET', 979173406);
2311
}
2312
if (!defined('PR_HOME_ADDRESS_POST_OFFICE_BOX')) {
2313
	define('PR_HOME_ADDRESS_POST_OFFICE_BOX', 979238942);
2314
}
2315
if (!defined('PR_OTHER_ADDRESS_CITY')) {
2316
	define('PR_OTHER_ADDRESS_CITY', 979304478);
2317
}
2318
if (!defined('PR_OTHER_ADDRESS_COUNTRY')) {
2319
	define('PR_OTHER_ADDRESS_COUNTRY', 979370014);
2320
}
2321
if (!defined('PR_OTHER_ADDRESS_POSTAL_CODE')) {
2322
	define('PR_OTHER_ADDRESS_POSTAL_CODE', 979435550);
2323
}
2324
if (!defined('PR_OTHER_ADDRESS_STATE_OR_PROVINCE')) {
2325
	define('PR_OTHER_ADDRESS_STATE_OR_PROVINCE', 979501086);
2326
}
2327
if (!defined('PR_OTHER_ADDRESS_STREET')) {
2328
	define('PR_OTHER_ADDRESS_STREET', 979566622);
2329
}
2330
if (!defined('PR_OTHER_ADDRESS_POST_OFFICE_BOX')) {
2331
	define('PR_OTHER_ADDRESS_POST_OFFICE_BOX', 979632158);
2332
}
2333
if (!defined('PR_USER_X509_CERTIFICATE')) {
2334
	define('PR_USER_X509_CERTIFICATE', 980422914);
2335
}
2336
if (!defined('PR_SEND_INTERNET_ENCODING')) {
2337
	define('PR_SEND_INTERNET_ENCODING', 980484099);
2338
}
2339
if (!defined('PR_STORE_PROVIDERS')) {
2340
	define('PR_STORE_PROVIDERS', 1023410434);
2341
}
2342
if (!defined('PR_AB_PROVIDERS')) {
2343
	define('PR_AB_PROVIDERS', 1023475970);
2344
}
2345
if (!defined('PR_TRANSPORT_PROVIDERS')) {
2346
	define('PR_TRANSPORT_PROVIDERS', 1023541506);
2347
}
2348
if (!defined('PR_DEFAULT_PROFILE')) {
2349
	define('PR_DEFAULT_PROFILE', 1023672331);
2350
}
2351
if (!defined('PR_AB_SEARCH_PATH')) {
2352
	define('PR_AB_SEARCH_PATH', 1023742210);
2353
}
2354
if (!defined('PR_AB_DEFAULT_DIR')) {
2355
	define('PR_AB_DEFAULT_DIR', 1023803650);
2356
}
2357
if (!defined('PR_AB_DEFAULT_PAB')) {
2358
	define('PR_AB_DEFAULT_PAB', 1023869186);
2359
}
2360
if (!defined('PR_FILTERING_HOOKS')) {
2361
	define('PR_FILTERING_HOOKS', 1023934722);
2362
}
2363
if (!defined('PR_SERVICE_NAME')) {
2364
	define('PR_SERVICE_NAME', 1024000030);
2365
}
2366
if (!defined('PR_SERVICE_DLL_NAME')) {
2367
	define('PR_SERVICE_DLL_NAME', 1024065566);
2368
}
2369
if (!defined('PR_SERVICE_ENTRY_NAME')) {
2370
	define('PR_SERVICE_ENTRY_NAME', 1024131102);
2371
}
2372
if (!defined('PR_SERVICE_UID')) {
2373
	define('PR_SERVICE_UID', 1024196866);
2374
}
2375
if (!defined('PR_SERVICE_EXTRA_UIDS')) {
2376
	define('PR_SERVICE_EXTRA_UIDS', 1024262402);
2377
}
2378
if (!defined('PR_SERVICES')) {
2379
	define('PR_SERVICES', 1024327938);
2380
}
2381
if (!defined('PR_SERVICE_SUPPORT_FILES')) {
2382
	define('PR_SERVICE_SUPPORT_FILES', 1024397342);
2383
}
2384
if (!defined('PR_SERVICE_DELETE_FILES')) {
2385
	define('PR_SERVICE_DELETE_FILES', 1024462878);
2386
}
2387
if (!defined('PR_AB_SEARCH_PATH_UPDATE')) {
2388
	define('PR_AB_SEARCH_PATH_UPDATE', 1024524546);
2389
}
2390
if (!defined('PR_PROFILE_NAME')) {
2391
	define('PR_PROFILE_NAME', 1024589854);
2392
}
2393
if (!defined('PR_EMSMDB_SECTION_UID')) {
2394
	define('PR_EMSMDB_SECTION_UID', 1024786690);
2395
}
2396
if (!defined('PR_EMSMDB_LEGACY')) {
2397
	define('PR_EMSMDB_LEGACY', 1024983051);
2398
}
2399
if (!defined('PR_EMSABP_USER_UID')) {
2400
	define('PR_EMSABP_USER_UID', 1025114370);
2401
}
2402
if (!defined('PR_AB_CHOOSE_DIRECTORY_AUTOMATICALLY')) {
2403
	define('PR_AB_CHOOSE_DIRECTORY_AUTOMATICALLY', 1025245195);
2404
}
2405
if (!defined('PR_IDENTITY_DISPLAY')) {
2406
	define('PR_IDENTITY_DISPLAY', 1040187422);
2407
}
2408
if (!defined('PR_IDENTITY_ENTRYID')) {
2409
	define('PR_IDENTITY_ENTRYID', 1040253186);
2410
}
2411
if (!defined('PR_RESOURCE_METHODS')) {
2412
	define('PR_RESOURCE_METHODS', 1040318467);
2413
}
2414
if (!defined('PR_RESOURCE_TYPE')) {
2415
	define('PR_RESOURCE_TYPE', 1040384003);
2416
}
2417
if (!defined('PR_STATUS_CODE')) {
2418
	define('PR_STATUS_CODE', 1040449539);
2419
}
2420
if (!defined('PR_IDENTITY_SEARCH_KEY')) {
2421
	define('PR_IDENTITY_SEARCH_KEY', 1040515330);
2422
}
2423
if (!defined('PR_OWN_STORE_ENTRYID')) {
2424
	define('PR_OWN_STORE_ENTRYID', 1040580866);
2425
}
2426
if (!defined('PR_RESOURCE_PATH')) {
2427
	define('PR_RESOURCE_PATH', 1040646174);
2428
}
2429
if (!defined('PR_STATUS_STRING')) {
2430
	define('PR_STATUS_STRING', 1040711710);
2431
}
2432
if (!defined('PR_X400_DEFERRED_DELIVERY_CANCEL')) {
2433
	define('PR_X400_DEFERRED_DELIVERY_CANCEL', 1040777227);
2434
}
2435
if (!defined('PR_HEADER_FOLDER_ENTRYID')) {
2436
	define('PR_HEADER_FOLDER_ENTRYID', 1040843010);
2437
}
2438
if (!defined('PR_REMOTE_PROGRESS')) {
2439
	define('PR_REMOTE_PROGRESS', 1040908291);
2440
}
2441
if (!defined('PR_REMOTE_PROGRESS_TEXT')) {
2442
	define('PR_REMOTE_PROGRESS_TEXT', 1040973854);
2443
}
2444
if (!defined('PR_REMOTE_VALIDATE_OK')) {
2445
	define('PR_REMOTE_VALIDATE_OK', 1041039371);
2446
}
2447
if (!defined('PR_CONTROL_FLAGS')) {
2448
	define('PR_CONTROL_FLAGS', 1056964611);
2449
}
2450
if (!defined('PR_CONTROL_STRUCTURE')) {
2451
	define('PR_CONTROL_STRUCTURE', 1057030402);
2452
}
2453
if (!defined('PR_CONTROL_TYPE')) {
2454
	define('PR_CONTROL_TYPE', 1057095683);
2455
}
2456
if (!defined('PR_DELTAX')) {
2457
	define('PR_DELTAX', 1057161219);
2458
}
2459
if (!defined('PR_DELTAY')) {
2460
	define('PR_DELTAY', 1057226755);
2461
}
2462
if (!defined('PR_XPOS')) {
2463
	define('PR_XPOS', 1057292291);
2464
}
2465
if (!defined('PR_YPOS')) {
2466
	define('PR_YPOS', 1057357827);
2467
}
2468
if (!defined('PR_CONTROL_ID')) {
2469
	define('PR_CONTROL_ID', 1057423618);
2470
}
2471
if (!defined('PR_INITIAL_DETAILS_PANE')) {
2472
	define('PR_INITIAL_DETAILS_PANE', 1057488899);
2473
}
2474
if (!defined('PR_PREVIEW_UNREAD')) {
2475
	define('PR_PREVIEW_UNREAD', 1071120414);
2476
}
2477
if (!defined('PR_PREVIEW')) {
2478
	define('PR_PREVIEW', 1071185950);
2479
}
2480
if (!defined('PR_INTERNET_CPID')) {
2481
	define('PR_INTERNET_CPID', 1071513603);
2482
}
2483
if (!defined('PR_AUTO_RESPONSE_SUPPRESS')) {
2484
	define('PR_AUTO_RESPONSE_SUPPRESS', 1071579139);
2485
}
2486
if (!defined('PR_ACL_DATA')) {
2487
	define('PR_ACL_DATA', 1071644930);
2488
}
2489
if (!defined('PR_ACL_TABLE')) {
2490
	define('PR_ACL_TABLE', 1071644685);
2491
}
2492
if (!defined('PR_RULES_DATA')) {
2493
	define('PR_RULES_DATA', 1071710466);
2494
}
2495
if (!defined('PR_RULES_TABLE')) {
2496
	define('PR_RULES_TABLE', 1071710221);
2497
}
2498
if (!defined('PR_DELEGATED_BY_RULE')) {
2499
	define('PR_DELEGATED_BY_RULE', 1071841291);
2500
}
2501
if (!defined('PR_RESOLVE_METHOD')) {
2502
	define('PR_RESOLVE_METHOD', 1072103427);
2503
}
2504
if (!defined('PR_HAS_DAMS')) {
2505
	define('PR_HAS_DAMS', 1072300043);
2506
}
2507
if (!defined('PR_DEFERRED_SEND_NUMBER')) {
2508
	define('PR_DEFERRED_SEND_NUMBER', 1072365571);
2509
}
2510
if (!defined('PR_DEFERRED_SEND_UNITS')) {
2511
	define('PR_DEFERRED_SEND_UNITS', 1072431107);
2512
}
2513
if (!defined('PR_EXPIRY_NUMBER')) {
2514
	define('PR_EXPIRY_NUMBER', 1072496643);
2515
}
2516
if (!defined('PR_EXPIRY_UNITS')) {
2517
	define('PR_EXPIRY_UNITS', 1072562179);
2518
}
2519
if (!defined('PR_DEFERRED_SEND_TIME')) {
2520
	define('PR_DEFERRED_SEND_TIME', 1072627776);
2521
}
2522
if (!defined('PR_CONFLICT_ENTRYID')) {
2523
	define('PR_CONFLICT_ENTRYID', 1072693506);
2524
}
2525
if (!defined('PR_MESSAGE_LOCALE_ID')) {
2526
	define('PR_MESSAGE_LOCALE_ID', 1072758787);
2527
}
2528
if (!defined('PR_STORAGE_QUOTA_LIMIT')) {
2529
	define('PR_STORAGE_QUOTA_LIMIT', 1073020931);
2530
}
2531
if (!defined('PR_CREATOR_NAME')) {
2532
	define('PR_CREATOR_NAME', 1073217566);
2533
}
2534
if (!defined('PR_CREATOR_ENTRYID')) {
2535
	define('PR_CREATOR_ENTRYID', 1073283330);
2536
}
2537
if (!defined('PR_LAST_MODIFIER_NAME')) {
2538
	define('PR_LAST_MODIFIER_NAME', 1073348638);
2539
}
2540
if (!defined('PR_LAST_MODIFIER_ENTRYID')) {
2541
	define('PR_LAST_MODIFIER_ENTRYID', 1073414402);
2542
}
2543
if (!defined('PR_MESSAGE_CODEPAGE')) {
2544
	define('PR_MESSAGE_CODEPAGE', 1073545219);
2545
}
2546
if (!defined('PR_SENT_REPRESENTING_FLAGS')) {
2547
	define('PR_SENT_REPRESENTING_FLAGS', 1075445763);
2548
}
2549
if (!defined('PR_CONTENT_FILTER_SCL')) {
2550
	define('PR_CONTENT_FILTER_SCL', 1081475075);
2551
}
2552
if (!defined('PR_SENDER_ID_STATUS')) {
2553
	define('PR_SENDER_ID_STATUS', 1081671683);
2554
}
2555
if (!defined('PR_HIER_REV')) {
2556
	define('PR_HIER_REV', 1082261568);
2557
}
2558
if (!defined('PR_PURPORTED_SENDER_DOMAIN')) {
2559
	define('PR_PURPORTED_SENDER_DOMAIN', 1082327070);
2560
}
2561
if (!defined('PR_PURPORTED_SENDER_DOMAIN_A')) {
2562
	define('PR_PURPORTED_SENDER_DOMAIN_A', 1082327070);
2563
}
2564
if (!defined('PR_INETMAIL_OVERRIDE_FORMAT')) {
2565
	define('PR_INETMAIL_OVERRIDE_FORMAT', 1493303299);
2566
}
2567
if (!defined('PR_MSG_EDITOR_FORMAT')) {
2568
	define('PR_MSG_EDITOR_FORMAT', 1493762051);
2569
}
2570
if (!defined('PR_SENDER_SMTP_ADDRESS')) {
2571
	define('PR_SENDER_SMTP_ADDRESS', 1560346654);
2572
}
2573
if (!defined('PR_SENT_REPRESENTING_SMTP_ADDRESS')) {
2574
	define('PR_SENT_REPRESENTING_SMTP_ADDRESS', 1560412190);
2575
}
2576
if (!defined('PR_RECIPIENT_ORDER')) {
2577
	define('PR_RECIPIENT_ORDER', 1608450051);
2578
}
2579
if (!defined('PR_RECIPIENT_PROPOSED')) {
2580
	define('PR_RECIPIENT_PROPOSED', 1608581131);
2581
}
2582
if (!defined('PR_RECIPIENT_PROPOSEDSTARTTIME')) {
2583
	define('PR_RECIPIENT_PROPOSEDSTARTTIME', 1608712256);
2584
}
2585
if (!defined('PR_RECIPIENT_PROPOSEDENDTIME')) {
2586
	define('PR_RECIPIENT_PROPOSEDENDTIME', 1608777792);
2587
}
2588
if (!defined('PR_RECIPIENT_DISPLAY_NAME')) {
2589
	define('PR_RECIPIENT_DISPLAY_NAME', 1609957406);
2590
}
2591
if (!defined('PR_RECIPIENT_ENTRYID')) {
2592
	define('PR_RECIPIENT_ENTRYID', 1610023170);
2593
}
2594
if (!defined('PR_RECIPIENT_TRACKSTATUS_TIME')) {
2595
	define('PR_RECIPIENT_TRACKSTATUS_TIME', 1610285120);
2596
}
2597
if (!defined('PR_RECIPIENT_FLAGS')) {
2598
	define('PR_RECIPIENT_FLAGS', 1610416131);
2599
}
2600
if (!defined('PR_RECIPIENT_TRACKSTATUS')) {
2601
	define('PR_RECIPIENT_TRACKSTATUS', 1610547203);
2602
}
2603
if (!defined('PR_JUNK_INCLUDE_CONTACTS')) {
2604
	define('PR_JUNK_INCLUDE_CONTACTS', 1627389955);
2605
}
2606
if (!defined('PR_JUNK_THRESHOLD')) {
2607
	define('PR_JUNK_THRESHOLD', 1627455491);
2608
}
2609
if (!defined('PR_JUNK_PERMANENTLY_DELETE')) {
2610
	define('PR_JUNK_PERMANENTLY_DELETE', 1627521027);
2611
}
2612
if (!defined('PR_JUNK_ADD_RECIPS_TO_SSL')) {
2613
	define('PR_JUNK_ADD_RECIPS_TO_SSL', 1627586563);
2614
}
2615
if (!defined('PR_JUNK_PHISHING_ENABLE_LINKS')) {
2616
	define('PR_JUNK_PHISHING_ENABLE_LINKS', 1627848715);
2617
}
2618
if (!defined('PR_REPLY_TEMPLATE_ID')) {
2619
	define('PR_REPLY_TEMPLATE_ID', 1707213058);
2620
}
2621
if (!defined('PR_SECURE_SUBMIT_FLAGS')) {
2622
	define('PR_SECURE_SUBMIT_FLAGS', 1707474947);
2623
}
2624
if (!defined('PR_SOURCE_KEY')) {
2625
	define('PR_SOURCE_KEY', 1709179138);
2626
}
2627
if (!defined('PR_PARENT_SOURCE_KEY')) {
2628
	define('PR_PARENT_SOURCE_KEY', 1709244674);
2629
}
2630
if (!defined('PR_CHANGE_KEY')) {
2631
	define('PR_CHANGE_KEY', 1709310210);
2632
}
2633
if (!defined('PR_PREDECESSOR_CHANGE_LIST')) {
2634
	define('PR_PREDECESSOR_CHANGE_LIST', 1709375746);
2635
}
2636
if (!defined('PR_RULE_MSG_STATE')) {
2637
	define('PR_RULE_MSG_STATE', 1709768707);
2638
}
2639
if (!defined('PR_RULE_MSG_USER_FLAGS')) {
2640
	define('PR_RULE_MSG_USER_FLAGS', 1709834243);
2641
}
2642
if (!defined('PR_RULE_MSG_PROVIDER')) {
2643
	define('PR_RULE_MSG_PROVIDER', 1709899806);
2644
}
2645
if (!defined('PR_RULE_MSG_NAME')) {
2646
	define('PR_RULE_MSG_NAME', 1709965342);
2647
}
2648
if (!defined('PR_RULE_MSG_LEVEL')) {
2649
	define('PR_RULE_MSG_LEVEL', 1710030851);
2650
}
2651
if (!defined('PR_RULE_MSG_PROVIDER_DATA')) {
2652
	define('PR_RULE_MSG_PROVIDER_DATA', 1710096642);
2653
}
2654
if (!defined('PR_RULE_MSG_SEQUENCE')) {
2655
	define('PR_RULE_MSG_SEQUENCE', 1710424067);
2656
}
2657
if (!defined('PR_PST_RECEIVE_FOLDER_NID')) {
2658
	define('PR_PST_RECEIVE_FOLDER_NID', 1711603715);
2659
}
2660
if (!defined('PR_PROFILE_TRANSPORT_FLAGS')) {
2661
	define('PR_PROFILE_TRANSPORT_FLAGS', 1711603715);
2662
}
2663
if (!defined('PR_USER_ENTRYID')) {
2664
	define('PR_USER_ENTRYID', 1712914690);
2665
}
2666
if (!defined('PR_USER_NAME')) {
2667
	define('PR_USER_NAME', 1712979998);
2668
}
2669
if (!defined('PR_MAILBOX_OWNER_ENTRYID')) {
2670
	define('PR_MAILBOX_OWNER_ENTRYID', 1713045762);
2671
}
2672
if (!defined('PR_MAILBOX_OWNER_NAME')) {
2673
	define('PR_MAILBOX_OWNER_NAME', 1713111070);
2674
}
2675
if (!defined('PR_MAILBOX_OWNER_NAME_A')) {
2676
	define('PR_MAILBOX_OWNER_NAME_A', 1713111070);
2677
}
2678
if (!defined('PR_OOF_STATE')) {
2679
	define('PR_OOF_STATE', 1713176587);
2680
}
2681
if (!defined('PR_SCHEDULE_FOLDER_ENTRYID')) {
2682
	define('PR_SCHEDULE_FOLDER_ENTRYID', 1713242370);
2683
}
2684
if (!defined('PR_IPM_DAF_ENTRYID')) {
2685
	define('PR_IPM_DAF_ENTRYID', 1713307906);
2686
}
2687
if (!defined('PR_NON_IPM_SUBTREE_ENTRYID')) {
2688
	define('PR_NON_IPM_SUBTREE_ENTRYID', 1713373442);
2689
}
2690
if (!defined('PR_EFORMS_REGISTRY_ENTRYID')) {
2691
	define('PR_EFORMS_REGISTRY_ENTRYID', 1713438978);
2692
}
2693
if (!defined('PR_SPLUS_FREE_BUSY_ENTRYID')) {
2694
	define('PR_SPLUS_FREE_BUSY_ENTRYID', 1713504514);
2695
}
2696
if (!defined('PR_OFFLINE_ADDRBOOK_ENTRYID')) {
2697
	define('PR_OFFLINE_ADDRBOOK_ENTRYID', 1713570050);
2698
}
2699
if (!defined('PR_TEST_LINE_SPEED')) {
2700
	define('PR_TEST_LINE_SPEED', 1714094338);
2701
}
2702
if (!defined('PR_HIERARCHY_SYNCHRONIZER')) {
2703
	define('PR_HIERARCHY_SYNCHRONIZER', 1714159629);
2704
}
2705
if (!defined('PR_CONTENTS_SYNCHRONIZER')) {
2706
	define('PR_CONTENTS_SYNCHRONIZER', 1714225165);
2707
}
2708
if (!defined('PR_COLLECTOR')) {
2709
	define('PR_COLLECTOR', 1714290701);
2710
}
2711
if (!defined('PR_IPM_FAVORITES_ENTRYID')) {
2712
	define('PR_IPM_FAVORITES_ENTRYID', 1714422018);
2713
}
2714
if (!defined('PR_IPM_PUBLIC_FOLDERS_ENTRYID')) {
2715
	define('PR_IPM_PUBLIC_FOLDERS_ENTRYID', 1714487554);
2716
}
2717
if (!defined('PR_STORE_OFFLINE')) {
2718
	define('PR_STORE_OFFLINE', 1714552843);
2719
}
2720
if (!defined('PR_HIERARCHY_SERVER')) {
2721
	define('PR_HIERARCHY_SERVER', 1714618398);
2722
}
2723
if (!defined('PR_PST_LRNORESTRICTIONS')) {
2724
	define('PR_PST_LRNORESTRICTIONS', 1714618379);
2725
}
2726
if (!defined('PR_FAVORITES_DEFAULT_NAME')) {
2727
	define('PR_FAVORITES_DEFAULT_NAME', 1714749470);
2728
}
2729
if (!defined('PR_PROFILE_OAB_COUNT_ATTEMPTED_FULLDN')) {
2730
	define('PR_PROFILE_OAB_COUNT_ATTEMPTED_FULLDN', 1714749443);
2731
}
2732
if (!defined('PR_PST_HIDDEN_COUNT')) {
2733
	define('PR_PST_HIDDEN_COUNT', 1714749443);
2734
}
2735
if (!defined('PR_PROFILE_OAB_COUNT_ATTEMPTED_INCRDN')) {
2736
	define('PR_PROFILE_OAB_COUNT_ATTEMPTED_INCRDN', 1714814979);
2737
}
2738
if (!defined('PR_PST_HIDDEN_UNREAD')) {
2739
	define('PR_PST_HIDDEN_UNREAD', 1714814979);
2740
}
2741
if (!defined('PR_FOLDER_CHILD_COUNT')) {
2742
	define('PR_FOLDER_CHILD_COUNT', 1714946051);
2743
}
2744
if (!defined('PR_RIGHTS')) {
2745
	define('PR_RIGHTS', 1715011587);
2746
}
2747
if (!defined('PR_HAS_RULES')) {
2748
	define('PR_HAS_RULES', 1715077131);
2749
}
2750
if (!defined('PR_ADDRESS_BOOK_ENTRYID')) {
2751
	define('PR_ADDRESS_BOOK_ENTRYID', 1715142914);
2752
}
2753
if (!defined('PR_HIERARCHY_CHANGE_NUM')) {
2754
	define('PR_HIERARCHY_CHANGE_NUM', 1715339267);
2755
}
2756
if (!defined('PR_DELETED_MSG_COUNT')) {
2757
	define('PR_DELETED_MSG_COUNT', 1715470339);
2758
}
2759
if (!defined('PR_DELETED_FOLDER_COUNT')) {
2760
	define('PR_DELETED_FOLDER_COUNT', 1715535875);
2761
}
2762
if (!defined('PR_DELETED_ASSOC_MSG_COUNT')) {
2763
	define('PR_DELETED_ASSOC_MSG_COUNT', 1715666947);
2764
}
2765
if (!defined('PR_REPLICA_SERVER')) {
2766
	define('PR_REPLICA_SERVER', 1715732510);
2767
}
2768
if (!defined('PR_CLIENT_ACTIONS')) {
2769
	define('PR_CLIENT_ACTIONS', 1715798274);
2770
}
2771
if (!defined('PR_DAM_ORIGINAL_ENTRYID')) {
2772
	define('PR_DAM_ORIGINAL_ENTRYID', 1715863810);
2773
}
2774
if (!defined('PR_DAM_BACK_PATCHED')) {
2775
	define('PR_DAM_BACK_PATCHED', 1715929099);
2776
}
2777
if (!defined('PR_RULE_ERROR')) {
2778
	define('PR_RULE_ERROR', 1715994627);
2779
}
2780
if (!defined('PR_RULE_ACTION_TYPE')) {
2781
	define('PR_RULE_ACTION_TYPE', 1716060163);
2782
}
2783
if (!defined('PR_HAS_NAMED_PROPERTIES')) {
2784
	define('PR_HAS_NAMED_PROPERTIES', 1716125707);
2785
}
2786
if (!defined('PR_RULE_ACTION_NUMBER')) {
2787
	define('PR_RULE_ACTION_NUMBER', 1716518915);
2788
}
2789
if (!defined('PR_RULE_FOLDER_ENTRYID')) {
2790
	define('PR_RULE_FOLDER_ENTRYID', 1716584706);
2791
}
2792
if (!defined('PR_PROHIBIT_RECEIVE_QUOTA')) {
2793
	define('PR_PROHIBIT_RECEIVE_QUOTA', 1718222851);
2794
}
2795
if (!defined('PR_IN_CONFLICT')) {
2796
	define('PR_IN_CONFLICT', 1718353931);
2797
}
2798
if (!defined('PR_MAX_SUBMIT_MESSAGE_SIZE')) {
2799
	define('PR_MAX_SUBMIT_MESSAGE_SIZE', 1718419459);
2800
}
2801
if (!defined('PR_PROHIBIT_SEND_QUOTA')) {
2802
	define('PR_PROHIBIT_SEND_QUOTA', 1718484995);
2803
}
2804
if (!defined('PR_EC_USER_LANGUAGE')) {
2805
	define('PR_EC_USER_LANGUAGE', 1718616094);
2806
}
2807
if (!defined('PR_EC_USER_TIMEZONE')) {
2808
	define('PR_EC_USER_TIMEZONE', 1718681630);
2809
}
2810
if (!defined('PR_MEMBER_ID')) {
2811
	define('PR_MEMBER_ID', 1718681620);
2812
}
2813
if (!defined('PR_MEMBER_NAME')) {
2814
	define('PR_MEMBER_NAME', 1718747166);
2815
}
2816
if (!defined('PR_MEMBER_NAME_A')) {
2817
	define('PR_MEMBER_NAME_A', 1718747166);
2818
}
2819
if (!defined('PR_MEMBER_RIGHTS')) {
2820
	define('PR_MEMBER_RIGHTS', 1718812675);
2821
}
2822
if (!defined('PR_RULE_ID')) {
2823
	define('PR_RULE_ID', 1718878228);
2824
}
2825
if (!defined('PR_RULE_IDS')) {
2826
	define('PR_RULE_IDS', 1718944002);
2827
}
2828
if (!defined('PR_RULE_SEQUENCE')) {
2829
	define('PR_RULE_SEQUENCE', 1719009283);
2830
}
2831
if (!defined('PR_RULE_STATE')) {
2832
	define('PR_RULE_STATE', 1719074819);
2833
}
2834
if (!defined('PR_RULE_USER_FLAGS')) {
2835
	define('PR_RULE_USER_FLAGS', 1719140355);
2836
}
2837
if (!defined('PR_RULE_CONDITION')) {
2838
	define('PR_RULE_CONDITION', 1719206141);
2839
}
2840
if (!defined('PR_RULE_ACTIONS')) {
2841
	define('PR_RULE_ACTIONS', 1719664894);
2842
}
2843
if (!defined('PR_RULE_PROVIDER')) {
2844
	define('PR_RULE_PROVIDER', 1719730206);
2845
}
2846
if (!defined('PR_RULE_PROVIDER_A')) {
2847
	define('PR_RULE_PROVIDER_A', 1719730206);
2848
}
2849
if (!defined('PR_RULE_NAME')) {
2850
	define('PR_RULE_NAME', 1719795742);
2851
}
2852
if (!defined('PR_RULE_NAME_A')) {
2853
	define('PR_RULE_NAME_A', 1719795742);
2854
}
2855
if (!defined('PR_RULE_LEVEL')) {
2856
	define('PR_RULE_LEVEL', 1719861251);
2857
}
2858
if (!defined('PR_RULE_PROVIDER_DATA')) {
2859
	define('PR_RULE_PROVIDER_DATA', 1719927042);
2860
}
2861
if (!defined('PR_RULE_VERSION')) {
2862
	define('PR_RULE_VERSION', 1720516610);
2863
}
2864
if (!defined('PR_DELETED_ON')) {
2865
	define('PR_DELETED_ON', 1720647744);
2866
}
2867
if (!defined('PR_DELETED_MESSAGE_SIZE')) {
2868
	define('PR_DELETED_MESSAGE_SIZE', 1721434115);
2869
}
2870
if (!defined('PR_DELETED_MESSAGE_SIZE_EXTENDED')) {
2871
	define('PR_DELETED_MESSAGE_SIZE_EXTENDED', 1721434132);
2872
}
2873
if (!defined('PR_DELETED_NORMAL_MESSAGE_SIZE')) {
2874
	define('PR_DELETED_NORMAL_MESSAGE_SIZE', 1721499651);
2875
}
2876
if (!defined('PR_DELETED_NORMAL_MESSAGE_SIZE_EXTENDED')) {
2877
	define('PR_DELETED_NORMAL_MESSAGE_SIZE_EXTENDED', 1721499668);
2878
}
2879
if (!defined('PR_DELETED_ASSOC_MESSAGE_SIZE')) {
2880
	define('PR_DELETED_ASSOC_MESSAGE_SIZE', 1721565187);
2881
}
2882
if (!defined('PR_DELETED_ASSOC_MESSAGE_SIZE_EXTENDED')) {
2883
	define('PR_DELETED_ASSOC_MESSAGE_SIZE_EXTENDED', 1721565204);
2884
}
2885
if (!defined('PR_LOCALE_ID')) {
2886
	define('PR_LOCALE_ID', 1721827331);
2887
}
2888
if (!defined('PR_FOLDER_FLAGS')) {
2889
	define('PR_FOLDER_FLAGS', 1722286083);
2890
}
2891
if (!defined('PR_NORMAL_MSG_W_ATTACH_COUNT')) {
2892
	define('PR_NORMAL_MSG_W_ATTACH_COUNT', 1722613763);
2893
}
2894
if (!defined('PR_ASSOC_MSG_W_ATTACH_COUNT')) {
2895
	define('PR_ASSOC_MSG_W_ATTACH_COUNT', 1722679299);
2896
}
2897
if (!defined('PR_NORMAL_MESSAGE_SIZE')) {
2898
	define('PR_NORMAL_MESSAGE_SIZE', 1723006979);
2899
}
2900
if (!defined('PR_NORMAL_MESSAGE_SIZE_EXTENDED')) {
2901
	define('PR_NORMAL_MESSAGE_SIZE_EXTENDED', 1723006996);
2902
}
2903
if (!defined('PR_ASSOC_MESSAGE_SIZE')) {
2904
	define('PR_ASSOC_MESSAGE_SIZE', 1723072515);
2905
}
2906
if (!defined('PR_ASSOC_MESSAGE_SIZE_EXTENDED')) {
2907
	define('PR_ASSOC_MESSAGE_SIZE_EXTENDED', 1723072532);
2908
}
2909
if (!defined('PR_FOLDER_PATHNAME')) {
2910
	define('PR_FOLDER_PATHNAME', 1723138078);
2911
}
2912
if (!defined('PR_CODE_PAGE_ID')) {
2913
	define('PR_CODE_PAGE_ID', 1724055555);
2914
}
2915
if (!defined('PR_LATEST_PST_ENSURE')) {
2916
	define('PR_LATEST_PST_ENSURE', 1727660035);
2917
}
2918
if (!defined('PR_EMS_AB_MANAGE_DL')) {
2919
	define('PR_EMS_AB_MANAGE_DL', 1728315405);
2920
}
2921
if (!defined('PR_SORT_LOCALE_ID')) {
2922
	define('PR_SORT_LOCALE_ID', 1728380931);
2923
}
2924
if (!defined('PR_EC_SSLKEY_PASS')) {
2925
	define('PR_EC_SSLKEY_PASS', 1728446494);
2926
}
2927
if (!defined('PR_LOCAL_COMMIT_TIME')) {
2928
	define('PR_LOCAL_COMMIT_TIME', 1728643136);
2929
}
2930
if (!defined('PR_LOCAL_COMMIT_TIME_MAX')) {
2931
	define('PR_LOCAL_COMMIT_TIME_MAX', 1728708672);
2932
}
2933
if (!defined('PR_DELETED_COUNT_TOTAL')) {
2934
	define('PR_DELETED_COUNT_TOTAL', 1728774147);
2935
}
2936
if (!defined('PR_FLAT_URL_NAME')) {
2937
	define('PR_FLAT_URL_NAME', 1728970782);
2938
}
2939
if (!defined('PR_ZC_CONTACT_STORE_ENTRYIDS')) {
2940
	define('PR_ZC_CONTACT_STORE_ENTRYIDS', 1729171714);
2941
}
2942
if (!defined('PR_ZC_CONTACT_FOLDER_ENTRYIDS')) {
2943
	define('PR_ZC_CONTACT_FOLDER_ENTRYIDS', 1729237250);
2944
}
2945
if (!defined('PR_ZC_CONTACT_FOLDER_NAMES')) {
2946
	define('PR_ZC_CONTACT_FOLDER_NAMES', 1729302558);
2947
}
2948
if (!defined('PR_EC_SERVER_VERSION')) {
2949
	define('PR_EC_SERVER_VERSION', 1729495070);
2950
}
2951
if (!defined('PR_QUOTA_WARNING_THRESHOLD')) {
2952
	define('PR_QUOTA_WARNING_THRESHOLD', 1730215939);
2953
}
2954
if (!defined('PR_QUOTA_SEND_THRESHOLD')) {
2955
	define('PR_QUOTA_SEND_THRESHOLD', 1730281475);
2956
}
2957
if (!defined('PR_QUOTA_RECEIVE_THRESHOLD')) {
2958
	define('PR_QUOTA_RECEIVE_THRESHOLD', 1730347011);
2959
}
2960
if (!defined('PR_EC_MESSAGE_BCC_ME')) {
2961
	define('PR_EC_MESSAGE_BCC_ME', 1730478091);
2962
}
2963
if (!defined('PR_MANAGED_FOLDER_INFORMATION')) {
2964
	define('PR_MANAGED_FOLDER_INFORMATION', 1731002371);
2965
}
2966
if (!defined('PR_MANAGED_FOLDER_SIZE')) {
2967
	define('PR_MANAGED_FOLDER_SIZE', 1731198979);
2968
}
2969
if (!defined('PR_MANAGED_FOLDER_STORAGE_QUOTA')) {
2970
	define('PR_MANAGED_FOLDER_STORAGE_QUOTA', 1731264515);
2971
}
2972
if (!defined('PR_MANAGED_FOLDER_ID')) {
2973
	define('PR_MANAGED_FOLDER_ID', 1731330078);
2974
}
2975
if (!defined('PR_MANAGED_FOLDER_COMMENT')) {
2976
	define('PR_MANAGED_FOLDER_COMMENT', 1731395614);
2977
}
2978
if (!defined('PR_DAM_ORIG_MSG_SVREID')) {
2979
	define('PR_DAM_ORIG_MSG_SVREID', 1732313346);
2980
}
2981
if (!defined('PR_RULE_FOLDER_FID')) {
2982
	define('PR_RULE_FOLDER_FID', 1732378644);
2983
}
2984
if (!defined('PR_INTERNET_ARTICLE_NUMBER_NEXT')) {
2985
	define('PR_INTERNET_ARTICLE_NUMBER_NEXT', 1733361667);
2986
}
2987
if (!defined('PR_EC_OUTOFOFFICE')) {
2988
	define('PR_EC_OUTOFOFFICE', 1734344707);
2989
}
2990
if (!defined('PR_EC_OUTOFOFFICE_MSG')) {
2991
	define('PR_EC_OUTOFOFFICE_MSG', 1734410270);
2992
}
2993
if (!defined('PR_EC_OUTOFOFFICE_SUBJECT')) {
2994
	define('PR_EC_OUTOFOFFICE_SUBJECT', 1734475806);
2995
}
2996
if (!defined('PR_EC_OUTOFOFFICE_FROM')) {
2997
	define('PR_EC_OUTOFOFFICE_FROM', 1734541376);
2998
}
2999
if (!defined('PR_EC_OUTOFOFFICE_UNTIL')) {
3000
	define('PR_EC_OUTOFOFFICE_UNTIL', 1734606912);
3001
}
3002
if (!defined('PR_EC_ALLOW_EXTERNAL')) {
3003
	define('PR_EC_ALLOW_EXTERNAL', 1734672395);
3004
}
3005
if (!defined('PR_EC_EXTERNAL_AUDIENCE')) {
3006
	define('PR_EC_EXTERNAL_AUDIENCE', 1734737931);
3007
}
3008
if (!defined('PR_EC_EXTERNAL_REPLY')) {
3009
	define('PR_EC_EXTERNAL_REPLY', 1734803486);
3010
}
3011
if (!defined('PR_EC_EXTERNAL_SUBJECT')) {
3012
	define('PR_EC_EXTERNAL_SUBJECT', 1734869022);
3013
}
3014
if (!defined('PR_EC_WEBACCESS_SETTINGS_JSON')) {
3015
	define('PR_EC_WEBACCESS_SETTINGS_JSON', 1735524382);
3016
}
3017
if (!defined('PR_EC_WEBAPP_PERSISTENT_SETTINGS_JSON')) {
3018
	define('PR_EC_WEBAPP_PERSISTENT_SETTINGS_JSON', 1735655454);
3019
}
3020
if (!defined('PR_EC_OUTGOING_FLAGS')) {
3021
	define('PR_EC_OUTGOING_FLAGS', 1736441859);
3022
}
3023
if (!defined('PR_EC_IMAP_ID')) {
3024
	define('PR_EC_IMAP_ID', 1736572931);
3025
}
3026
if (!defined('PR_EC_IMAP_SUBSCRIBED')) {
3027
	define('PR_EC_IMAP_SUBSCRIBED', 1736704258);
3028
}
3029
if (!defined('PR_EC_IMAP_MAX_ID')) {
3030
	define('PR_EC_IMAP_MAX_ID', 1736769539);
3031
}
3032
if (!defined('PR_EC_CLIENT_SUBMIT_DATE')) {
3033
	define('PR_EC_CLIENT_SUBMIT_DATE', 1736835136);
3034
}
3035
if (!defined('PR_EC_MESSAGE_DELIVERY_DATE')) {
3036
	define('PR_EC_MESSAGE_DELIVERY_DATE', 1736900672);
3037
}
3038
if (!defined('PR_EC_IMAP_EMAIL_SIZE')) {
3039
	define('PR_EC_IMAP_EMAIL_SIZE', 1737293827);
3040
}
3041
if (!defined('PR_EC_IMAP_BODY')) {
3042
	define('PR_EC_IMAP_BODY', 1737359390);
3043
}
3044
if (!defined('PR_EC_IMAP_BODYSTRUCTURE')) {
3045
	define('PR_EC_IMAP_BODYSTRUCTURE', 1737424926);
3046
}
3047
if (!defined('PR_ASSOCIATED')) {
3048
	define('PR_ASSOCIATED', 1739194379);
3049
}
3050
if (!defined('PR_EC_ENABLED_FEATURES_L')) {
3051
	define('PR_EC_ENABLED_FEATURES_L', 1739784195);
3052
}
3053
if (!defined('PR_LTP_ROW_ID')) {
3054
	define('PR_LTP_ROW_ID', 1743912963);
3055
}
3056
if (!defined('PR_LTP_ROW_VER')) {
3057
	define('PR_LTP_ROW_VER', 1743978499);
3058
}
3059
if (!defined('PR_PST_PASSWORD')) {
3060
	define('PR_PST_PASSWORD', 1744764931);
3061
}
3062
if (!defined('PR_OAB_NAME')) {
3063
	define('PR_OAB_NAME', 1744830494);
3064
}
3065
if (!defined('PR_OAB_SEQUENCE')) {
3066
	define('PR_OAB_SEQUENCE', 1744896003);
3067
}
3068
if (!defined('PR_RW_RULES_STREAM')) {
3069
	define('PR_RW_RULES_STREAM', 1744961794);
3070
}
3071
if (!defined('PR_SENDER_TELEPHONE_NUMBER')) {
3072
	define('PR_SENDER_TELEPHONE_NUMBER', 1744961566);
3073
}
3074
if (!defined('PR_SENDER_TELEPHONE_NUMBER_A')) {
3075
	define('PR_SENDER_TELEPHONE_NUMBER_A', 1744961566);
3076
}
3077
if (!defined('PR_OAB_CONTAINER_GUID')) {
3078
	define('PR_OAB_CONTAINER_GUID', 1744961566);
3079
}
3080
if (!defined('PR_OAB_MESSAGE_CLASS')) {
3081
	define('PR_OAB_MESSAGE_CLASS', 1745027075);
3082
}
3083
if (!defined('PR_OAB_DN')) {
3084
	define('PR_OAB_DN', 1745092638);
3085
}
3086
if (!defined('PR_OAB_TRUNCATED_PROPS')) {
3087
	define('PR_OAB_TRUNCATED_PROPS', 1745162243);
3088
}
3089
if (!defined('PR_WB_SF_LAST_USED')) {
3090
	define('PR_WB_SF_LAST_USED', 1748238339);
3091
}
3092
if (!defined('PR_WB_SF_EXPIRATION')) {
3093
	define('PR_WB_SF_EXPIRATION', 1748631555);
3094
}
3095
if (!defined('PR_WB_SF_TEMPLATE_ID')) {
3096
	define('PR_WB_SF_TEMPLATE_ID', 1749090307);
3097
}
3098
if (!defined('PR_SCHDINFO_BOSS_WANTS_COPY')) {
3099
	define('PR_SCHDINFO_BOSS_WANTS_COPY', 1749155851);
3100
}
3101
if (!defined('PR_WB_SF_ID')) {
3102
	define('PR_WB_SF_ID', 1749156098);
3103
}
3104
if (!defined('PR_SCHDINFO_DONT_MAIL_DELEGATES')) {
3105
	define('PR_SCHDINFO_DONT_MAIL_DELEGATES', 1749221387);
3106
}
3107
if (!defined('PR_SCHDINFO_DELEGATE_NAMES')) {
3108
	define('PR_SCHDINFO_DELEGATE_NAMES', 1749291038);
3109
}
3110
if (!defined('PR_WB_SF_RECREATE_INFO')) {
3111
	define('PR_WB_SF_RECREATE_INFO', 1749287170);
3112
}
3113
if (!defined('PR_SCHDINFO_DELEGATE_ENTRYIDS')) {
3114
	define('PR_SCHDINFO_DELEGATE_ENTRYIDS', 1749356802);
3115
}
3116
if (!defined('PR_WB_SF_DEFINITION')) {
3117
	define('PR_WB_SF_DEFINITION', 1749352706);
3118
}
3119
if (!defined('PR_GATEWAY_NEEDS_TO_REFRESH')) {
3120
	define('PR_GATEWAY_NEEDS_TO_REFRESH', 1749417995);
3121
}
3122
if (!defined('PR_WB_SF_STORAGE_TYPE')) {
3123
	define('PR_WB_SF_STORAGE_TYPE', 1749417987);
3124
}
3125
if (!defined('PR_FREEBUSY_PUBLISH_START')) {
3126
	define('PR_FREEBUSY_PUBLISH_START', 1749483523);
3127
}
3128
if (!defined('PR_FREEBUSY_PUBLISH_END')) {
3129
	define('PR_FREEBUSY_PUBLISH_END', 1749549059);
3130
}
3131
if (!defined('PR_FREEBUSY_EMA')) {
3132
	define('PR_FREEBUSY_EMA', 1749614622);
3133
}
3134
if (!defined('PR_WLINK_TYPE')) {
3135
	define('PR_WLINK_TYPE', 1749614595);
3136
}
3137
if (!defined('PR_SCHDINFO_DELEGATE_NAMES_W')) {
3138
	define('PR_SCHDINFO_DELEGATE_NAMES_W', 1749684254);
3139
}
3140
if (!defined('PR_WLINK_FLAGS')) {
3141
	define('PR_WLINK_FLAGS', 1749680131);
3142
}
3143
if (!defined('PR_SCHDINFO_BOSS_WANTS_INFO')) {
3144
	define('PR_SCHDINFO_BOSS_WANTS_INFO', 1749745675);
3145
}
3146
if (!defined('PR_WLINK_ORDINAL')) {
3147
	define('PR_WLINK_ORDINAL', 1749745922);
3148
}
3149
if (!defined('PR_WLINK_ENTRYID')) {
3150
	define('PR_WLINK_ENTRYID', 1749811458);
3151
}
3152
if (!defined('PR_WLINK_RECKEY')) {
3153
	define('PR_WLINK_RECKEY', 1749876994);
3154
}
3155
if (!defined('PR_WLINK_STORE_ENTRYID')) {
3156
	define('PR_WLINK_STORE_ENTRYID', 1749942530);
3157
}
3158
if (!defined('PR_SCHDINFO_MONTHS_MERGED')) {
3159
	define('PR_SCHDINFO_MONTHS_MERGED', 1750011907);
3160
}
3161
if (!defined('PR_WLINK_FOLDER_TYPE')) {
3162
	define('PR_WLINK_FOLDER_TYPE', 1750008066);
3163
}
3164
if (!defined('PR_SCHDINFO_FREEBUSY_MERGED')) {
3165
	define('PR_SCHDINFO_FREEBUSY_MERGED', 1750077698);
3166
}
3167
if (!defined('PR_WLINK_GROUP_CLSID')) {
3168
	define('PR_WLINK_GROUP_CLSID', 1750073602);
3169
}
3170
if (!defined('PR_SCHDINFO_MONTHS_TENTATIVE')) {
3171
	define('PR_SCHDINFO_MONTHS_TENTATIVE', 1750142979);
3172
}
3173
if (!defined('PR_WLINK_GROUP_NAME')) {
3174
	define('PR_WLINK_GROUP_NAME', 1750138910);
3175
}
3176
if (!defined('PR_SCHDINFO_FREEBUSY_TENTATIVE')) {
3177
	define('PR_SCHDINFO_FREEBUSY_TENTATIVE', 1750208770);
3178
}
3179
if (!defined('PR_WLINK_SECTION')) {
3180
	define('PR_WLINK_SECTION', 1750204419);
3181
}
3182
if (!defined('PR_SCHDINFO_MONTHS_BUSY')) {
3183
	define('PR_SCHDINFO_MONTHS_BUSY', 1750274051);
3184
}
3185
if (!defined('PR_WLINK_CALENDAR_COLOR')) {
3186
	define('PR_WLINK_CALENDAR_COLOR', 1750269955);
3187
}
3188
if (!defined('PR_SCHDINFO_FREEBUSY_BUSY')) {
3189
	define('PR_SCHDINFO_FREEBUSY_BUSY', 1750339842);
3190
}
3191
if (!defined('PR_WLINK_ABEID')) {
3192
	define('PR_WLINK_ABEID', 1750335746);
3193
}
3194
if (!defined('PR_SCHDINFO_MONTHS_OOF')) {
3195
	define('PR_SCHDINFO_MONTHS_OOF', 1750405123);
3196
}
3197
if (!defined('PR_SCHDINFO_FREEBUSY_OOF')) {
3198
	define('PR_SCHDINFO_FREEBUSY_OOF', 1750470914);
3199
}
3200
if (!defined('PR_FREEBUSY_RANGE_TIMESTAMP')) {
3201
	define('PR_FREEBUSY_RANGE_TIMESTAMP', 1751646272);
3202
}
3203
if (!defined('PR_FREEBUSY_COUNT_MONTHS')) {
3204
	define('PR_FREEBUSY_COUNT_MONTHS', 1751711747);
3205
}
3206
if (!defined('PR_SCHDINFO_APPT_TOMBSTONE')) {
3207
	define('PR_SCHDINFO_APPT_TOMBSTONE', 1751777538);
3208
}
3209
if (!defined('PR_DELEGATE_FLAGS')) {
3210
	define('PR_DELEGATE_FLAGS', 1751846915);
3211
}
3212
if (!defined('PR_SCHDINFO_FREEBUSY')) {
3213
	define('PR_SCHDINFO_FREEBUSY', 1751908610);
3214
}
3215
if (!defined('PR_SCHDINFO_AUTO_ACCEPT_APPTS')) {
3216
	define('PR_SCHDINFO_AUTO_ACCEPT_APPTS', 1751973899);
3217
}
3218
if (!defined('PR_SCHDINFO_DISALLOW_RECURRING_APPTS')) {
3219
	define('PR_SCHDINFO_DISALLOW_RECURRING_APPTS', 1752039435);
3220
}
3221
if (!defined('PR_SCHDINFO_DISALLOW_OVERLAPPING_APPTS')) {
3222
	define('PR_SCHDINFO_DISALLOW_OVERLAPPING_APPTS', 1752104971);
3223
}
3224
if (!defined('PR_WLINK_CLIENTID')) {
3225
	define('PR_WLINK_CLIENTID', 1754267906);
3226
}
3227
if (!defined('PR_WLINK_AB_EXSTOREEID')) {
3228
	define('PR_WLINK_AB_EXSTOREEID', 1754333442);
3229
}
3230
if (!defined('PR_WLINK_RO_GROUP_TYPE')) {
3231
	define('PR_WLINK_RO_GROUP_TYPE', 1754398723);
3232
}
3233
if (!defined('PR_SECURITY_FLAGS')) {
3234
	define('PR_SECURITY_FLAGS', 1845559299);
3235
}
3236
if (!defined('PR_VD_BINARY')) {
3237
	define('PR_VD_BINARY', 1879113986);
3238
}
3239
if (!defined('PR_VD_STRINGS')) {
3240
	define('PR_VD_STRINGS', 1879179294);
3241
}
3242
if (!defined('PR_VD_NAME')) {
3243
	define('PR_VD_NAME', 1879441438);
3244
}
3245
if (!defined('PR_VD_VERSION')) {
3246
	define('PR_VD_VERSION', 1879506947);
3247
}
3248
if (!defined('PR_FAV_DISPLAY_NAME')) {
3249
	define('PR_FAV_DISPLAY_NAME', 2080374814);
3250
}
3251
if (!defined('PR_FAV_DISPLAY_ALIAS')) {
3252
	define('PR_FAV_DISPLAY_ALIAS', 2080440350);
3253
}
3254
if (!defined('PR_FAV_PUBLIC_SOURCE_KEY')) {
3255
	define('PR_FAV_PUBLIC_SOURCE_KEY', 2080506114);
3256
}
3257
if (!defined('PR_OST_OSTID')) {
3258
	define('PR_OST_OSTID', 2080637186);
3259
}
3260
if (!defined('PR_OFFLINE_FOLDER')) {
3261
	define('PR_OFFLINE_FOLDER', 2080702722);
3262
}
3263
if (!defined('PR_ROAMING_DATATYPES')) {
3264
	define('PR_ROAMING_DATATYPES', 2080768003);
3265
}
3266
if (!defined('PR_ROAMING_DICTIONARY')) {
3267
	define('PR_ROAMING_DICTIONARY', 2080833794);
3268
}
3269
if (!defined('PR_ROAMING_BINARYSTREAM')) {
3270
	define('PR_ROAMING_BINARYSTREAM', 2080964866);
3271
}
3272
if (!defined('PR_STORE_SLOWLINK')) {
3273
	define('PR_STORE_SLOWLINK', 2081030155);
3274
}
3275
if (!defined('PR_OSC_SYNC_ENABLEDONSERVER')) {
3276
	define('PR_OSC_SYNC_ENABLEDONSERVER', 2082734091);
3277
}
3278
if (!defined('PR_FORCE_USE_ENTRYID_SERVER')) {
3279
	define('PR_FORCE_USE_ENTRYID_SERVER', 2097020939);
3280
}
3281
if (!defined('PR_PROFILE_MDB_DN')) {
3282
	define('PR_PROFILE_MDB_DN', 2097086494);
3283
}
3284
if (!defined('PR_FAV_AUTOSUBFOLDERS')) {
3285
	define('PR_FAV_AUTOSUBFOLDERS', 2097217539);
3286
}
3287
if (!defined('PR_PROCESSED')) {
3288
	define('PR_PROCESSED', 2097217547);
3289
}
3290
if (!defined('PR_FAV_PARENT_SOURCE_KEY')) {
3291
	define('PR_FAV_PARENT_SOURCE_KEY', 2097283330);
3292
}
3293
if (!defined('PR_FAV_LEVEL_MASK')) {
3294
	define('PR_FAV_LEVEL_MASK', 2097348611);
3295
}
3296
if (!defined('PR_FAV_KNOWN_SUBS')) {
3297
	define('PR_FAV_KNOWN_SUBS', 2097414402);
3298
}
3299
if (!defined('PR_FAV_GUID_MAP')) {
3300
	define('PR_FAV_GUID_MAP', 2097479938);
3301
}
3302
if (!defined('PR_FAV_KNOWN_DELS_OLD')) {
3303
	define('PR_FAV_KNOWN_DELS_OLD', 2097545474);
3304
}
3305
if (!defined('PR_FAV_INHERIT_AUTO')) {
3306
	define('PR_FAV_INHERIT_AUTO', 2097610755);
3307
}
3308
if (!defined('PR_FAV_DEL_SUBS')) {
3309
	define('PR_FAV_DEL_SUBS', 2097676546);
3310
}
3311
if (!defined('PR_FAV_CONTAINER_CLASS')) {
3312
	define('PR_FAV_CONTAINER_CLASS', 2097741854);
3313
}
3314
if (!defined('PR_EXCEPTION_REPLACETIME')) {
3315
	define('PR_EXCEPTION_REPLACETIME', 2147024960);
3316
}
3317
if (!defined('PR_ATTACHMENT_LINKID')) {
3318
	define('PR_ATTACHMENT_LINKID', 2147090435);
3319
}
3320
if (!defined('PR_EXCEPTION_STARTTIME')) {
3321
	define('PR_EXCEPTION_STARTTIME', 2147156032);
3322
}
3323
if (!defined('PR_EXCEPTION_ENDTIME')) {
3324
	define('PR_EXCEPTION_ENDTIME', 2147221568);
3325
}
3326
if (!defined('PR_ATTACHMENT_FLAGS')) {
3327
	define('PR_ATTACHMENT_FLAGS', 2147287043);
3328
}
3329
if (!defined('PR_ATTACHMENT_HIDDEN')) {
3330
	define('PR_ATTACHMENT_HIDDEN', 2147352587);
3331
}
3332
if (!defined('PR_ATTACHMENT_CONTACTPHOTO')) {
3333
	define('PR_ATTACHMENT_CONTACTPHOTO', 2147418123);
3334
}
3335
if (!defined('PR_EMS_AB_FOLDER_PATHNAME')) {
3336
	define('PR_EMS_AB_FOLDER_PATHNAME', 2147745822);
3337
}
3338
if (!defined('PR_EMS_AB_MANAGER')) {
3339
	define('PR_EMS_AB_MANAGER', 2147811341);
3340
}
3341
if (!defined('PR_EMS_AB_MANAGER_T')) {
3342
	define('PR_EMS_AB_MANAGER_T', 2147811358);
3343
}
3344
if (!defined('PR_EMS_AB_HOME_MDB')) {
3345
	define('PR_EMS_AB_HOME_MDB', 2147876894);
3346
}
3347
if (!defined('PR_EMS_AB_HOME_MDB_A')) {
3348
	define('PR_EMS_AB_HOME_MDB_A', 2147876894);
3349
}
3350
if (!defined('PR_EMS_AB_IS_MEMBER_OF_DL')) {
3351
	define('PR_EMS_AB_IS_MEMBER_OF_DL', 2148007966);
3352
}
3353
if (!defined('PR_EMS_AB_MEMBER')) {
3354
	define('PR_EMS_AB_MEMBER', 2148073485);
3355
}
3356
if (!defined('PR_EMS_AB_OWNER')) {
3357
	define('PR_EMS_AB_OWNER', 2148270338);
3358
}
3359
if (!defined('PR_EMS_AB_OWNER_O')) {
3360
	define('PR_EMS_AB_OWNER_O', 2148270093);
3361
}
3362
if (!defined('PR_EMS_AB_REPORTS')) {
3363
	define('PR_EMS_AB_REPORTS', 2148401165);
3364
}
3365
if (!defined('PR_EMS_AB_REPORTS_MV')) {
3366
	define('PR_EMS_AB_REPORTS_MV', 2148405506);
3367
}
3368
if (!defined('PR_EMS_AB_PROXY_ADDRESSES')) {
3369
	define('PR_EMS_AB_PROXY_ADDRESSES', 2148470814);
3370
}
3371
if (!defined('PR_EMS_AB_PROXY_ADDRESSES_A')) {
3372
	define('PR_EMS_AB_PROXY_ADDRESSES_A', 2148470814);
3373
}
3374
if (!defined('PR_EMS_AB_PROXY_ADDRESSES_MV')) {
3375
	define('PR_EMS_AB_PROXY_ADDRESSES_MV', 2148470814);
3376
}
3377
if (!defined('PR_EMS_AB_TARGET_ADDRESS')) {
3378
	define('PR_EMS_AB_TARGET_ADDRESS', 2148597790);
3379
}
3380
if (!defined('PR_EMS_AB_PUBLIC_DELEGATES')) {
3381
	define('PR_EMS_AB_PUBLIC_DELEGATES', 2148859917);
3382
}
3383
if (!defined('PR_EMS_AB_OWNER_BL_O')) {
3384
	define('PR_EMS_AB_OWNER_BL_O', 2149842957);
3385
}
3386
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_1')) {
3387
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_1', 2150432798);
3388
}
3389
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_2')) {
3390
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_2', 2150498334);
3391
}
3392
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_3')) {
3393
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_3', 2150563870);
3394
}
3395
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_4')) {
3396
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_4', 2150629406);
3397
}
3398
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_5')) {
3399
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_5', 2150694942);
3400
}
3401
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_6')) {
3402
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_6', 2150760478);
3403
}
3404
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_7')) {
3405
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_7', 2150826014);
3406
}
3407
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_8')) {
3408
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_8', 2150891550);
3409
}
3410
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_9')) {
3411
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_9', 2150957086);
3412
}
3413
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_10')) {
3414
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_10', 2151022622);
3415
}
3416
if (!defined('PR_EMS_AB_OBJ_DIST_NAME')) {
3417
	define('PR_EMS_AB_OBJ_DIST_NAME', 2151415838);
3418
}
3419
if (!defined('PR_EMS_AB_DELIV_CONT_LENGTH')) {
3420
	define('PR_EMS_AB_DELIV_CONT_LENGTH', 2154430467);
3421
}
3422
if (!defined('PR_EMS_AB_DL_MEM_SUBMIT_PERMS_BL_O')) {
3423
	define('PR_EMS_AB_DL_MEM_SUBMIT_PERMS_BL_O', 2155020301);
3424
}
3425
if (!defined('PR_EMS_AB_NETWORK_ADDRESS')) {
3426
	define('PR_EMS_AB_NETWORK_ADDRESS', 2171605022);
3427
}
3428
if (!defined('PR_EMS_AB_NETWORK_ADDRESS_A')) {
3429
	define('PR_EMS_AB_NETWORK_ADDRESS_A', 2171605022);
3430
}
3431
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_11')) {
3432
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_11', 2354511902);
3433
}
3434
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_12')) {
3435
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_12', 2354577438);
3436
}
3437
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_13')) {
3438
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_13', 2354642974);
3439
}
3440
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_14')) {
3441
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_14', 2355101726);
3442
}
3443
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_15')) {
3444
	define('PR_EMS_AB_EXTENSION_ATTRIBUTE_15', 2355167262);
3445
}
3446
if (!defined('PR_EMS_AB_X509_CERT')) {
3447
	define('PR_EMS_AB_X509_CERT', 2355761410);
3448
}
3449
if (!defined('PR_EMS_AB_OBJECT_GUID')) {
3450
	define('PR_EMS_AB_OBJECT_GUID', 2355953922);
3451
}
3452
if (!defined('PR_EMS_AB_PHONETIC_GIVEN_NAME')) {
3453
	define('PR_EMS_AB_PHONETIC_GIVEN_NAME', 2358116382);
3454
}
3455
if (!defined('PR_EMS_AB_PHONETIC_SURNAME')) {
3456
	define('PR_EMS_AB_PHONETIC_SURNAME', 2358181918);
3457
}
3458
if (!defined('PR_EMS_AB_PHONETIC_DEPARTMENT_NAME')) {
3459
	define('PR_EMS_AB_PHONETIC_DEPARTMENT_NAME', 2358247454);
3460
}
3461
if (!defined('PR_EMS_AB_PHONETIC_COMPANY_NAME')) {
3462
	define('PR_EMS_AB_PHONETIC_COMPANY_NAME', 2358312990);
3463
}
3464
if (!defined('PR_EMS_AB_PHONETIC_DISPLAY_NAME')) {
3465
	define('PR_EMS_AB_PHONETIC_DISPLAY_NAME', 2358378526);
3466
}
3467
if (!defined('PR_EMS_AB_PHONETIC_DISPLAY_NAME_A')) {
3468
	define('PR_EMS_AB_PHONETIC_DISPLAY_NAME_A', 2358378526);
3469
}
3470
if (!defined('PR_EMS_AB_DISPLAY_TYPE_EX')) {
3471
	define('PR_EMS_AB_DISPLAY_TYPE_EX', 2358444035);
3472
}
3473
if (!defined('PR_EMS_AB_HAB_SHOW_IN_DEPARTMENTS')) {
3474
	define('PR_EMS_AB_HAB_SHOW_IN_DEPARTMENTS', 2358509581);
3475
}
3476
if (!defined('PR_EMS_AB_ROOM_CONTAINERS')) {
3477
	define('PR_EMS_AB_ROOM_CONTAINERS', 2358644766);
3478
}
3479
if (!defined('PR_EMS_AB_HAB_DEPARTMENT_MEMBERS')) {
3480
	define('PR_EMS_AB_HAB_DEPARTMENT_MEMBERS', 2358706189);
3481
}
3482
if (!defined('PR_EMS_AB_HAB_ROOT_DEPARTMENT')) {
3483
	define('PR_EMS_AB_HAB_ROOT_DEPARTMENT', 2358771742);
3484
}
3485
if (!defined('PR_EMS_AB_HAB_PARENT_DEPARTMENT')) {
3486
	define('PR_EMS_AB_HAB_PARENT_DEPARTMENT', 2358837261);
3487
}
3488
if (!defined('PR_EMS_AB_HAB_CHILD_DEPARTMENTS')) {
3489
	define('PR_EMS_AB_HAB_CHILD_DEPARTMENTS', 2358902797);
3490
}
3491
if (!defined('PR_EMS_AB_THUMBNAIL_PHOTO')) {
3492
	define('PR_EMS_AB_THUMBNAIL_PHOTO', 2359165186);
3493
}
3494
if (!defined('PR_EMS_AB_HAB_SENIORITY_INDEX')) {
3495
	define('PR_EMS_AB_HAB_SENIORITY_INDEX', 2359296003);
3496
}
3497
if (!defined('PR_EMS_AB_ORG_UNIT_ROOT_DN')) {
3498
	define('PR_EMS_AB_ORG_UNIT_ROOT_DN', 2359820318);
3499
}
3500
if (!defined('PR_EMS_AB_DL_SENDER_HINT_TRANSLATIONS')) {
3501
	define('PR_EMS_AB_DL_SENDER_HINT_TRANSLATIONS', 2360086558);
3502
}
3503
if (!defined('PR_EMS_AB_ENABLE_MODERATION')) {
3504
	define('PR_EMS_AB_ENABLE_MODERATION', 2360672267);
3505
}
3506
if (!defined('PR_EMS_AB_UM_SPOKEN_NAME')) {
3507
	define('PR_EMS_AB_UM_SPOKEN_NAME', 2361524482);
3508
}
3509
if (!defined('PR_EMS_AB_AUTH_ORIG')) {
3510
	define('PR_EMS_AB_AUTH_ORIG', 2362966029);
3511
}
3512
if (!defined('PR_EMS_AB_UNAUTH_ORIG')) {
3513
	define('PR_EMS_AB_UNAUTH_ORIG', 2363031565);
3514
}
3515
if (!defined('PR_EMS_AB_DL_MEM_SUBMIT_PERMS')) {
3516
	define('PR_EMS_AB_DL_MEM_SUBMIT_PERMS', 2363097101);
3517
}
3518
if (!defined('PR_EMS_AB_DL_MEM_REJECT_PERMS')) {
3519
	define('PR_EMS_AB_DL_MEM_REJECT_PERMS', 2363162637);
3520
}
3521
if (!defined('PR_EMS_AB_HAB_IS_HIERARCHICAL_GROUP')) {
3522
	define('PR_EMS_AB_HAB_IS_HIERARCHICAL_GROUP', 2363293707);
3523
}
3524
if (!defined('PR_EMS_AB_DL_TOTAL_MEMBER_COUNT')) {
3525
	define('PR_EMS_AB_DL_TOTAL_MEMBER_COUNT', 2363621379);
3526
}
3527
if (!defined('PR_EMS_AB_DL_EXTERNAL_MEMBER_COUNT')) {
3528
	define('PR_EMS_AB_DL_EXTERNAL_MEMBER_COUNT', 2363686915);
3529
}
3530
if (!defined('PR_EMS_AB_IS_MASTER')) {
3531
	define('PR_EMS_AB_IS_MASTER', 4294639627);
3532
}
3533
if (!defined('PR_EMS_AB_PARENT_ENTRYID')) {
3534
	define('PR_EMS_AB_PARENT_ENTRYID', 4294705410);
3535
}
3536
if (!defined('PR_EMS_AB_CONTAINERID')) {
3537
	define('PR_EMS_AB_CONTAINERID', 4294770691);
3538
}
3539
if (!defined('PidLidAttendeeCriticalChange')) {
3540
	define('PidLidAttendeeCriticalChange', 1);
3541
}
3542
if (!defined('PidLidGlobalObjectId')) {
3543
	define('PidLidGlobalObjectId', 3);
3544
}
3545
if (!defined('PidLidIsException')) {
3546
	define('PidLidIsException', 10);
3547
}
3548
if (!defined('PidLidStartRecurrenceTime')) {
3549
	define('PidLidStartRecurrenceTime', 14);
3550
}
3551
if (!defined('PidLidOwnerCriticalChange')) {
3552
	define('PidLidOwnerCriticalChange', 26);
3553
}
3554
if (!defined('PidLidCleanGlobalObjectId')) {
3555
	define('PidLidCleanGlobalObjectId', 35);
3556
}
3557
if (!defined('PidLidCategories')) {
3558
	define('PidLidCategories', 9000);
3559
}
3560
if (!defined('PidLidFileAs')) {
3561
	define('PidLidFileAs', 32773);
3562
}
3563
if (!defined('PidLidHomeAddress')) {
3564
	define('PidLidHomeAddress', 32794);
3565
}
3566
if (!defined('PidLidBusinessAddress')) {
3567
	define('PidLidBusinessAddress', 32795);
3568
}
3569
if (!defined('PidLidOtherAddress')) {
3570
	define('PidLidOtherAddress', 32796);
3571
}
3572
if (!defined('PidLidMailingAdress')) {
3573
	define('PidLidMailingAdress', 32802);
3574
}
3575
if (!defined('PidLidPostalAddressIndex')) {
3576
	define('PidLidPostalAddressIndex', 32802);
3577
}
3578
if (!defined('PidLidBusinessCardDisplayDefinition')) {
3579
	define('PidLidBusinessCardDisplayDefinition', 32832);
3580
}
3581
if (!defined('PidLidWorkAddressStreet')) {
3582
	define('PidLidWorkAddressStreet', 32837);
3583
}
3584
if (!defined('PidLidWorkAddressCity')) {
3585
	define('PidLidWorkAddressCity', 32838);
3586
}
3587
if (!defined('PidLidWorkAddressState')) {
3588
	define('PidLidWorkAddressState', 32839);
3589
}
3590
if (!defined('PidLidWorkAddressPostalCode')) {
3591
	define('PidLidWorkAddressPostalCode', 32840);
3592
}
3593
if (!defined('PidLidWorkAddressCountry')) {
3594
	define('PidLidWorkAddressCountry', 32841);
3595
}
3596
if (!defined('PidLidWorkAddressPostOfficeBox')) {
3597
	define('PidLidWorkAddressPostOfficeBox', 32842);
3598
}
3599
if (!defined('PidLidContactUserField1')) {
3600
	define('PidLidContactUserField1', 32847);
3601
}
3602
if (!defined('PidLidContactUserField2')) {
3603
	define('PidLidContactUserField2', 32848);
3604
}
3605
if (!defined('PidLidContactUserField3')) {
3606
	define('PidLidContactUserField3', 32849);
3607
}
3608
if (!defined('PidLidContactUserField4')) {
3609
	define('PidLidContactUserField4', 32850);
3610
}
3611
if (!defined('PidLidInstantMessagingAddress')) {
3612
	define('PidLidInstantMessagingAddress', 32866);
3613
}
3614
if (!defined('PidLidEmail1DisplayName')) {
3615
	define('PidLidEmail1DisplayName', 32896);
3616
}
3617
if (!defined('PidLidEmail1AddressType')) {
3618
	define('PidLidEmail1AddressType', 32898);
3619
}
3620
if (!defined('PidLidEmail1EmailAddress')) {
3621
	define('PidLidEmail1EmailAddress', 32899);
3622
}
3623
if (!defined('PidLidEmail2DisplayName')) {
3624
	define('PidLidEmail2DisplayName', 32912);
3625
}
3626
if (!defined('PidLidEmail2AddressType')) {
3627
	define('PidLidEmail2AddressType', 32914);
3628
}
3629
if (!defined('PidLidEmail2EmailAddress')) {
3630
	define('PidLidEmail2EmailAddress', 32915);
3631
}
3632
if (!defined('PidLidEmail3DisplayName')) {
3633
	define('PidLidEmail3DisplayName', 32928);
3634
}
3635
if (!defined('PidLidEmail3AddressType')) {
3636
	define('PidLidEmail3AddressType', 32930);
3637
}
3638
if (!defined('PidLidEmail3EmailAddress')) {
3639
	define('PidLidEmail3EmailAddress', 32931);
3640
}
3641
if (!defined('PidLidFreeBusyLocation')) {
3642
	define('PidLidFreeBusyLocation', 32984);
3643
}
3644
if (!defined('PidLidTaskStatus')) {
3645
	define('PidLidTaskStatus', 33025);
3646
}
3647
if (!defined('PidLidPercentComplete')) {
3648
	define('PidLidPercentComplete', 33026);
3649
}
3650
if (!defined('PidLidTaskStartDate')) {
3651
	define('PidLidTaskStartDate', 33028);
3652
}
3653
if (!defined('PidLidTaskDueDate')) {
3654
	define('PidLidTaskDueDate', 33029);
3655
}
3656
if (!defined('PidLidTaskDateCompleted')) {
3657
	define('PidLidTaskDateCompleted', 33039);
3658
}
3659
if (!defined('PidLidTaskActualEffort')) {
3660
	define('PidLidTaskActualEffort', 33040);
3661
}
3662
if (!defined('PidLidTaskEstimatedEffort')) {
3663
	define('PidLidTaskEstimatedEffort', 33041);
3664
}
3665
if (!defined('PidLidTaskRecurrence')) {
3666
	define('PidLidTaskRecurrence', 33046);
3667
}
3668
if (!defined('PidLidTaskComplete')) {
3669
	define('PidLidTaskComplete', 33052);
3670
}
3671
if (!defined('PidLidTaskOwner')) {
3672
	define('PidLidTaskOwner', 33055);
3673
}
3674
if (!defined('PidLidTaskFRecurring')) {
3675
	define('PidLidTaskFRecurring', 33062);
3676
}
3677
if (!defined('PidLidAppointmentSequence')) {
3678
	define('PidLidAppointmentSequence', 33281);
3679
}
3680
if (!defined('PidLidBusyStatus')) {
3681
	define('PidLidBusyStatus', 33285);
3682
}
3683
if (!defined('PidLidLocation')) {
3684
	define('PidLidLocation', 33288);
3685
}
3686
if (!defined('PidLidAppointmentReplyTime')) {
3687
	define('PidLidAppointmentReplyTime', 33312);
3688
}
3689
if (!defined('PidLidAppointmentStartWhole')) {
3690
	define('PidLidAppointmentStartWhole', 33293);
3691
}
3692
if (!defined('PidLidAppointmentEndWhole')) {
3693
	define('PidLidAppointmentEndWhole', 33294);
3694
}
3695
if (!defined('PidLidAppointmentDuration')) {
3696
	define('PidLidAppointmentDuration', 33299);
3697
}
3698
if (!defined('PidLidAppointmentSubType')) {
3699
	define('PidLidAppointmentSubType', 33301);
3700
}
3701
if (!defined('PidLidAppointmentRecur')) {
3702
	define('PidLidAppointmentRecur', 33302);
3703
}
3704
if (!defined('PidLidAppointmentStateFlags')) {
3705
	define('PidLidAppointmentStateFlags', 33303);
3706
}
3707
if (!defined('PidLidResponseStatus')) {
3708
	define('PidLidResponseStatus', 33304);
3709
}
3710
if (!defined('PidLidRecurring')) {
3711
	define('PidLidRecurring', 33315);
3712
}
3713
if (!defined('PidLidIntendedBusyStatus')) {
3714
	define('PidLidIntendedBusyStatus', 33316);
3715
}
3716
if (!defined('PidLidExceptionReplaceTime')) {
3717
	define('PidLidExceptionReplaceTime', 33320);
3718
}
3719
if (!defined('PidLidFInvited')) {
3720
	define('PidLidFInvited', 33321);
3721
}
3722
if (!defined('PidLidRecurrenceType')) {
3723
	define('PidLidRecurrenceType', 33329);
3724
}
3725
if (!defined('PidLidRecurrencePattern')) {
3726
	define('PidLidRecurrencePattern', 33330);
3727
}
3728
if (!defined('PidLidTimeZoneStruct')) {
3729
	define('PidLidTimeZoneStruct', 33331);
3730
}
3731
if (!defined('PidLidTimeZoneDescription')) {
3732
	define('PidLidTimeZoneDescription', 33332);
3733
}
3734
if (!defined('PidLidClipStart')) {
3735
	define('PidLidClipStart', 33333);
3736
}
3737
if (!defined('PidLidClipEnd')) {
3738
	define('PidLidClipEnd', 33334);
3739
}
3740
if (!defined('PidLidAppointmentProposedStartWhole')) {
3741
	define('PidLidAppointmentProposedStartWhole', 33360);
3742
}
3743
if (!defined('PidLidAppointmentProposedEndWhole')) {
3744
	define('PidLidAppointmentProposedEndWhole', 33361);
3745
}
3746
if (!defined('PidLidAppointmentCounterProposal')) {
3747
	define('PidLidAppointmentCounterProposal', 33367);
3748
}
3749
if (!defined('PidLidAppointmentNotAllowPropose')) {
3750
	define('PidLidAppointmentNotAllowPropose', 33370);
3751
}
3752
if (!defined('PidLidAppointmentTimeZoneDefinitionStartDisplay')) {
3753
	define('PidLidAppointmentTimeZoneDefinitionStartDisplay', 33374);
3754
}
3755
if (!defined('PidLidAppointmentTimeZoneDefinitionEndDisplay')) {
3756
	define('PidLidAppointmentTimeZoneDefinitionEndDisplay', 33375);
3757
}
3758
if (!defined('PidLidAppointmentTimeZoneDefinitionRecur')) {
3759
	define('PidLidAppointmentTimeZoneDefinitionRecur', 33376);
3760
}
3761
if (!defined('PidLidReminderDelta')) {
3762
	define('PidLidReminderDelta', 34049);
3763
}
3764
if (!defined('PidLidReminderTime')) {
3765
	define('PidLidReminderTime', 34050);
3766
}
3767
if (!defined('PidLidReminderSet')) {
3768
	define('PidLidReminderSet', 34051);
3769
}
3770
if (!defined('PidLidPrivate')) {
3771
	define('PidLidPrivate', 34054);
3772
}
3773
if (!defined('PidLidSmartNoAttach')) {
3774
	define('PidLidSmartNoAttach', 34068);
3775
}
3776
if (!defined('PidLidCommonStart')) {
3777
	define('PidLidCommonStart', 34070);
3778
}
3779
if (!defined('PidLidCommonEnd')) {
3780
	define('PidLidCommonEnd', 34071);
3781
}
3782
if (!defined('PidLidFlagRequest')) {
3783
	define('PidLidFlagRequest', 34096);
3784
}
3785
if (!defined('PidLidMileage')) {
3786
	define('PidLidMileage', 34100);
3787
}
3788
if (!defined('PidLidBilling')) {
3789
	define('PidLidBilling', 34101);
3790
}
3791
if (!defined('PidLidCompanies')) {
3792
	define('PidLidCompanies', 34105);
3793
}
3794
if (!defined('PidLidReminderSignalTime')) {
3795
	define('PidLidReminderSignalTime', 34144);
3796
}
3797
if (!defined('PidLidToDoTitle')) {
3798
	define('PidLidToDoTitle', 34212);
3799
}
3800
if (!defined('PidLidInfoPathFromName')) {
3801
	define('PidLidInfoPathFromName', 34225);
3802
}
3803
if (!defined('PidLidClassified')) {
3804
	define('PidLidClassified', 34229);
3805
}
3806
if (!defined('PidLidClassification')) {
3807
	define('PidLidClassification', 34230);
3808
}
3809
if (!defined('PidLidClassificationDescription')) {
3810
	define('PidLidClassificationDescription', 34231);
3811
}
3812
if (!defined('PidLidClassificationGuid')) {
3813
	define('PidLidClassificationGuid', 34232);
3814
}
3815
if (!defined('PidLidClassificationKeep')) {
3816
	define('PidLidClassificationKeep', 34234);
3817
}
3818
if (!defined('ecSuccess')) {
3819
	define('ecSuccess', 0);
3820
}
3821
if (!defined('MAPI_E_USER_ABORT')) {
3822
	define('MAPI_E_USER_ABORT', 1);
3823
}
3824
if (!defined('MAPI_E_FAILURE')) {
3825
	define('MAPI_E_FAILURE', 2);
3826
}
3827
if (!defined('MAPI_E_LOGON_FAILURE')) {
3828
	define('MAPI_E_LOGON_FAILURE', 3);
3829
}
3830
if (!defined('MAPI_E_DISK_FULL')) {
3831
	define('MAPI_E_DISK_FULL', 4);
3832
}
3833
if (!defined('MAPI_E_INSUFFICIENT_MEMORY')) {
3834
	define('MAPI_E_INSUFFICIENT_MEMORY', 5);
3835
}
3836
if (!defined('MAPI_E_ACCESS_DENIED')) {
3837
	define('MAPI_E_ACCESS_DENIED', 6);
3838
}
3839
if (!defined('MAPI_E_TOO_MANY_SESSIONS')) {
3840
	define('MAPI_E_TOO_MANY_SESSIONS', 8);
3841
}
3842
if (!defined('MAPI_E_TOO_MANY_FILES')) {
3843
	define('MAPI_E_TOO_MANY_FILES', 9);
3844
}
3845
if (!defined('MAPI_E_TOO_MANY_RECIPIENTS')) {
3846
	define('MAPI_E_TOO_MANY_RECIPIENTS', 10);
3847
}
3848
if (!defined('MAPI_E_ATTACHMENT_NOT_FOUND')) {
3849
	define('MAPI_E_ATTACHMENT_NOT_FOUND', 11);
3850
}
3851
if (!defined('MAPI_E_ATTACHMENT_OPEN_FAILURE')) {
3852
	define('MAPI_E_ATTACHMENT_OPEN_FAILURE', 12);
3853
}
3854
if (!defined('MAPI_E_ATTACHMENT_WRITE_FAILURE')) {
3855
	define('MAPI_E_ATTACHMENT_WRITE_FAILURE', 13);
3856
}
3857
if (!defined('MAPI_E_UNKNOWN_RECIPIENT')) {
3858
	define('MAPI_E_UNKNOWN_RECIPIENT', 14);
3859
}
3860
if (!defined('MAPI_E_BAD_RECIPTYPE')) {
3861
	define('MAPI_E_BAD_RECIPTYPE', 15);
3862
}
3863
if (!defined('MAPI_E_NO_MESSAGES')) {
3864
	define('MAPI_E_NO_MESSAGES', 16);
3865
}
3866
if (!defined('MAPI_E_INVALID_MESSAGE')) {
3867
	define('MAPI_E_INVALID_MESSAGE', 17);
3868
}
3869
if (!defined('MAPI_E_TEXT_TOO_LARGE')) {
3870
	define('MAPI_E_TEXT_TOO_LARGE', 18);
3871
}
3872
if (!defined('MAPI_E_INVALID_SESSION')) {
3873
	define('MAPI_E_INVALID_SESSION', 19);
3874
}
3875
if (!defined('MAPI_E_TYPE_NOT_SUPPORTED')) {
3876
	define('MAPI_E_TYPE_NOT_SUPPORTED', 20);
3877
}
3878
if (!defined('MAPI_E_AMBIGUOUS_RECIPIENT')) {
3879
	define('MAPI_E_AMBIGUOUS_RECIPIENT', 21);
3880
}
3881
if (!defined('MAPI_E_MESSAGE_IN_USE')) {
3882
	define('MAPI_E_MESSAGE_IN_USE', 22);
3883
}
3884
if (!defined('MAPI_E_NETWORK_FAILURE')) {
3885
	define('MAPI_E_NETWORK_FAILURE', 23);
3886
}
3887
if (!defined('MAPI_E_INVALID_EDITFIELDS')) {
3888
	define('MAPI_E_INVALID_EDITFIELDS', 24);
3889
}
3890
if (!defined('MAPI_E_INVALID_RECIPS')) {
3891
	define('MAPI_E_INVALID_RECIPS', 25);
3892
}
3893
if (!defined('MAPI_E_NOT_SUPPORTED')) {
3894
	define('MAPI_E_NOT_SUPPORTED', 26);
3895
}
3896
if (!defined('ecJetError')) {
3897
	define('ecJetError', 1002);
3898
}
3899
if (!defined('ecUnknownUser')) {
3900
	define('ecUnknownUser', 1003);
3901
}
3902
if (!defined('ecExiting')) {
3903
	define('ecExiting', 1005);
3904
}
3905
if (!defined('ecBadConfig')) {
3906
	define('ecBadConfig', 1006);
3907
}
3908
if (!defined('ecUnknownCodePage')) {
3909
	define('ecUnknownCodePage', 1007);
3910
}
3911
if (!defined('ecServerOOM')) {
3912
	define('ecServerOOM', 1008);
3913
}
3914
if (!defined('ecLoginPerm')) {
3915
	define('ecLoginPerm', 1010);
3916
}
3917
if (!defined('ecDatabaseRolledBack')) {
3918
	define('ecDatabaseRolledBack', 1011);
3919
}
3920
if (!defined('ecDatabaseCopiedError')) {
3921
	define('ecDatabaseCopiedError', 1012);
3922
}
3923
if (!defined('ecAuditNotAllowed')) {
3924
	define('ecAuditNotAllowed', 1013);
3925
}
3926
if (!defined('ecZombieUser')) {
3927
	define('ecZombieUser', 1014);
3928
}
3929
if (!defined('ecUnconvertableACL')) {
3930
	define('ecUnconvertableACL', 1015);
3931
}
3932
if (!defined('ecNoFreeJses')) {
3933
	define('ecNoFreeJses', 1100);
3934
}
3935
if (!defined('ecDifferentJses')) {
3936
	define('ecDifferentJses', 1101);
3937
}
3938
if (!defined('ecFileRemove')) {
3939
	define('ecFileRemove', 1103);
3940
}
3941
if (!defined('ecParameterOverflow')) {
3942
	define('ecParameterOverflow', 1104);
3943
}
3944
if (!defined('ecBadVersion')) {
3945
	define('ecBadVersion', 1105);
3946
}
3947
if (!defined('ecTooManyCols')) {
3948
	define('ecTooManyCols', 1106);
3949
}
3950
if (!defined('ecHaveMore')) {
3951
	define('ecHaveMore', 1107);
3952
}
3953
if (!defined('ecDatabaseError')) {
3954
	define('ecDatabaseError', 1108);
3955
}
3956
if (!defined('ecIndexNameTooBig')) {
3957
	define('ecIndexNameTooBig', 1109);
3958
}
3959
if (!defined('ecUnsupportedProp')) {
3960
	define('ecUnsupportedProp', 1110);
3961
}
3962
if (!defined('ecMsgNotSaved')) {
3963
	define('ecMsgNotSaved', 1111);
3964
}
3965
if (!defined('ecUnpubNotif')) {
3966
	define('ecUnpubNotif', 1113);
3967
}
3968
if (!defined('ecDifferentRoot')) {
3969
	define('ecDifferentRoot', 1115);
3970
}
3971
if (!defined('ecBadFolderName')) {
3972
	define('ecBadFolderName', 1116);
3973
}
3974
if (!defined('ecAttachOpen')) {
3975
	define('ecAttachOpen', 1117);
3976
}
3977
if (!defined('ecInvClpsState')) {
3978
	define('ecInvClpsState', 1118);
3979
}
3980
if (!defined('ecSkipMyChildren')) {
3981
	define('ecSkipMyChildren', 1119);
3982
}
3983
if (!defined('ecSearchFolder')) {
3984
	define('ecSearchFolder', 1120);
3985
}
3986
if (!defined('ecNotSearchFolder')) {
3987
	define('ecNotSearchFolder', 1121);
3988
}
3989
if (!defined('ecFolderSetReceive')) {
3990
	define('ecFolderSetReceive', 1122);
3991
}
3992
if (!defined('ecNoReceiveFolder')) {
3993
	define('ecNoReceiveFolder', 1123);
3994
}
3995
if (!defined('ecNoDelSubmitMsg')) {
3996
	define('ecNoDelSubmitMsg', 1125);
3997
}
3998
if (!defined('ecInvalidRecips')) {
3999
	define('ecInvalidRecips', 1127);
4000
}
4001
if (!defined('ecNoReplicaHere')) {
4002
	define('ecNoReplicaHere', 1128);
4003
}
4004
if (!defined('ecNoReplicaAvailable')) {
4005
	define('ecNoReplicaAvailable', 1129);
4006
}
4007
if (!defined('ecPublicMDB')) {
4008
	define('ecPublicMDB', 1130);
4009
}
4010
if (!defined('ecNotPublicMDB')) {
4011
	define('ecNotPublicMDB', 1131);
4012
}
4013
if (!defined('ecRecordNotFound')) {
4014
	define('ecRecordNotFound', 1132);
4015
}
4016
if (!defined('ecReplConflict')) {
4017
	define('ecReplConflict', 1133);
4018
}
4019
if (!defined('ecFxBufferOverrun')) {
4020
	define('ecFxBufferOverrun', 1136);
4021
}
4022
if (!defined('ecFxBufferEmpty')) {
4023
	define('ecFxBufferEmpty', 1137);
4024
}
4025
if (!defined('ecFxPartialValue')) {
4026
	define('ecFxPartialValue', 1138);
4027
}
4028
if (!defined('ecFxNoRoom')) {
4029
	define('ecFxNoRoom', 1139);
4030
}
4031
if (!defined('ecMaxTimeExpired')) {
4032
	define('ecMaxTimeExpired', 1140);
4033
}
4034
if (!defined('ecDstError')) {
4035
	define('ecDstError', 1141);
4036
}
4037
if (!defined('ecMDBNotInit')) {
4038
	define('ecMDBNotInit', 1142);
4039
}
4040
if (!defined('ecWrongServer')) {
4041
	define('ecWrongServer', 1144);
4042
}
4043
if (!defined('ecBufferTooSmall')) {
4044
	define('ecBufferTooSmall', 1149);
4045
}
4046
if (!defined('ecRequiresRefResolve')) {
4047
	define('ecRequiresRefResolve', 1150);
4048
}
4049
if (!defined('ecServerPaused')) {
4050
	define('ecServerPaused', 1151);
4051
}
4052
if (!defined('ecServerBusy')) {
4053
	define('ecServerBusy', 1152);
4054
}
4055
if (!defined('ecNoSuchLogon')) {
4056
	define('ecNoSuchLogon', 1153);
4057
}
4058
if (!defined('ecLoadLibFailed')) {
4059
	define('ecLoadLibFailed', 1154);
4060
}
4061
if (!defined('ecObjAlreadyConfig')) {
4062
	define('ecObjAlreadyConfig', 1155);
4063
}
4064
if (!defined('ecObjNotConfig')) {
4065
	define('ecObjNotConfig', 1156);
4066
}
4067
if (!defined('ecDataLoss')) {
4068
	define('ecDataLoss', 1157);
4069
}
4070
if (!defined('ecMaxSendThreadExceeded')) {
4071
	define('ecMaxSendThreadExceeded', 1160);
4072
}
4073
if (!defined('ecFxErrorMarker')) {
4074
	define('ecFxErrorMarker', 1161);
4075
}
4076
if (!defined('ecNoFreeJtabs')) {
4077
	define('ecNoFreeJtabs', 1162);
4078
}
4079
if (!defined('ecNotPrivateMDB')) {
4080
	define('ecNotPrivateMDB', 1163);
4081
}
4082
if (!defined('ecIsintegMDB')) {
4083
	define('ecIsintegMDB', 1164);
4084
}
4085
if (!defined('ecRecoveryMDBMismatch')) {
4086
	define('ecRecoveryMDBMismatch', 1165);
4087
}
4088
if (!defined('ecTableMayNotBeDeleted')) {
4089
	define('ecTableMayNotBeDeleted', 1166);
4090
}
4091
if (!defined('ecSearchFolderScopeViolation')) {
4092
	define('ecSearchFolderScopeViolation', 1168);
4093
}
4094
if (!defined('ecRpcRegisterIf')) {
4095
	define('ecRpcRegisterIf', 1201);
4096
}
4097
if (!defined('ecRpcListen')) {
4098
	define('ecRpcListen', 1202);
4099
}
4100
if (!defined('ecRpcFormat')) {
4101
	define('ecRpcFormat', 1206);
4102
}
4103
if (!defined('ecNoCopyTo')) {
4104
	define('ecNoCopyTo', 1207);
4105
}
4106
if (!defined('ecNullObject')) {
4107
	define('ecNullObject', 1209);
4108
}
4109
if (!defined('ecRpcAuthentication')) {
4110
	define('ecRpcAuthentication', 1212);
4111
}
4112
if (!defined('ecRpcBadAuthenticationLevel')) {
4113
	define('ecRpcBadAuthenticationLevel', 1213);
4114
}
4115
if (!defined('ecNullCommentRestriction')) {
4116
	define('ecNullCommentRestriction', 1214);
4117
}
4118
if (!defined('ecRulesLoadError')) {
4119
	define('ecRulesLoadError', 1228);
4120
}
4121
if (!defined('ecRulesDelivErr')) {
4122
	define('ecRulesDelivErr', 1229);
4123
}
4124
if (!defined('ecRulesParsingErr')) {
4125
	define('ecRulesParsingErr', 1230);
4126
}
4127
if (!defined('ecRulesCreateDaeErr')) {
4128
	define('ecRulesCreateDaeErr', 1231);
4129
}
4130
if (!defined('ecRulesCreateDamErr')) {
4131
	define('ecRulesCreateDamErr', 1232);
4132
}
4133
if (!defined('ecRulesNoMoveCopyFolder')) {
4134
	define('ecRulesNoMoveCopyFolder', 1233);
4135
}
4136
if (!defined('ecRulesNoFolderRights')) {
4137
	define('ecRulesNoFolderRights', 1234);
4138
}
4139
if (!defined('ecMessageTooBig')) {
4140
	define('ecMessageTooBig', 1236);
4141
}
4142
if (!defined('ecFormNotValid')) {
4143
	define('ecFormNotValid', 1237);
4144
}
4145
if (!defined('ecNotAuthorized')) {
4146
	define('ecNotAuthorized', 1238);
4147
}
4148
if (!defined('ecDeleteMessage')) {
4149
	define('ecDeleteMessage', 1239);
4150
}
4151
if (!defined('ecBounceMessage')) {
4152
	define('ecBounceMessage', 1240);
4153
}
4154
if (!defined('ecQuotaExceeded')) {
4155
	define('ecQuotaExceeded', 1241);
4156
}
4157
if (!defined('ecMaxSubmissionExceeded')) {
4158
	define('ecMaxSubmissionExceeded', 1242);
4159
}
4160
if (!defined('ecMaxAttachmentExceeded')) {
4161
	define('ecMaxAttachmentExceeded', 1243);
4162
}
4163
if (!defined('ecSendAsDenied')) {
4164
	define('ecSendAsDenied', 1244);
4165
}
4166
if (!defined('ecShutoffQuotaExceeded')) {
4167
	define('ecShutoffQuotaExceeded', 1245);
4168
}
4169
if (!defined('ecMaxObjsExceeded')) {
4170
	define('ecMaxObjsExceeded', 1246);
4171
}
4172
if (!defined('ecClientVerDisallowed')) {
4173
	define('ecClientVerDisallowed', 1247);
4174
}
4175
if (!defined('ecRpcHttpDisallowed')) {
4176
	define('ecRpcHttpDisallowed', 1248);
4177
}
4178
if (!defined('ecCachedModeRequired')) {
4179
	define('ecCachedModeRequired', 1249);
4180
}
4181
if (!defined('ecFolderNotCleanedUp')) {
4182
	define('ecFolderNotCleanedUp', 1251);
4183
}
4184
if (!defined('ecFmtError')) {
4185
	define('ecFmtError', 1261);
4186
}
4187
if (!defined('ecNotExpanded')) {
4188
	define('ecNotExpanded', 1271);
4189
}
4190
if (!defined('ecNotCollapsed')) {
4191
	define('ecNotCollapsed', 1272);
4192
}
4193
if (!defined('ecLeaf')) {
4194
	define('ecLeaf', 1273);
4195
}
4196
if (!defined('ecUnregisteredNamedProp')) {
4197
	define('ecUnregisteredNamedProp', 1274);
4198
}
4199
if (!defined('ecFolderDisabled')) {
4200
	define('ecFolderDisabled', 1275);
4201
}
4202
if (!defined('ecDomainError')) {
4203
	define('ecDomainError', 1276);
4204
}
4205
if (!defined('ecNoCreateRight')) {
4206
	define('ecNoCreateRight', 1279);
4207
}
4208
if (!defined('ecPublicRoot')) {
4209
	define('ecPublicRoot', 1280);
4210
}
4211
if (!defined('ecNoReadRight')) {
4212
	define('ecNoReadRight', 1281);
4213
}
4214
if (!defined('ecNoCreateSubfolderRight')) {
4215
	define('ecNoCreateSubfolderRight', 1282);
4216
}
4217
if (!defined('ecDstNullObject')) {
4218
	define('ecDstNullObject', 1283);
4219
}
4220
if (!defined('ecMsgCycle')) {
4221
	define('ecMsgCycle', 1284);
4222
}
4223
if (!defined('ecTooManyRecips')) {
4224
	define('ecTooManyRecips', 1285);
4225
}
4226
if (!defined('ecVirusScanInProgress')) {
4227
	define('ecVirusScanInProgress', 1290);
4228
}
4229
if (!defined('ecVirusDetected')) {
4230
	define('ecVirusDetected', 1291);
4231
}
4232
if (!defined('ecMailboxInTransit')) {
4233
	define('ecMailboxInTransit', 1292);
4234
}
4235
if (!defined('ecBackupInProgress')) {
4236
	define('ecBackupInProgress', 1293);
4237
}
4238
if (!defined('ecVirusMessageDeleted')) {
4239
	define('ecVirusMessageDeleted', 1294);
4240
}
4241
if (!defined('ecInvalidBackupSequence')) {
4242
	define('ecInvalidBackupSequence', 1295);
4243
}
4244
if (!defined('ecInvalidBackupType')) {
4245
	define('ecInvalidBackupType', 1296);
4246
}
4247
if (!defined('ecTooManyBackupsInProgress')) {
4248
	define('ecTooManyBackupsInProgress', 1297);
4249
}
4250
if (!defined('ecRestoreInProgress')) {
4251
	define('ecRestoreInProgress', 1298);
4252
}
4253
if (!defined('ecDuplicateObject')) {
4254
	define('ecDuplicateObject', 1401);
4255
}
4256
if (!defined('ecObjectNotFound')) {
4257
	define('ecObjectNotFound', 1402);
4258
}
4259
if (!defined('ecFixupReplyRule')) {
4260
	define('ecFixupReplyRule', 1403);
4261
}
4262
if (!defined('ecTemplateNotFound')) {
4263
	define('ecTemplateNotFound', 1404);
4264
}
4265
if (!defined('ecRuleException')) {
4266
	define('ecRuleException', 1405);
4267
}
4268
if (!defined('ecDSNoSuchObject')) {
4269
	define('ecDSNoSuchObject', 1406);
4270
}
4271
if (!defined('ecMessageAlreadyTombstoned')) {
4272
	define('ecMessageAlreadyTombstoned', 1407);
4273
}
4274
if (!defined('ecRequiresRWTransaction')) {
4275
	define('ecRequiresRWTransaction', 1430);
4276
}
4277
if (!defined('ecPaused')) {
4278
	define('ecPaused', 1550);
4279
}
4280
if (!defined('ecNotPaused')) {
4281
	define('ecNotPaused', 1551);
4282
}
4283
if (!defined('ecWrongMailbox')) {
4284
	define('ecWrongMailbox', 1608);
4285
}
4286
if (!defined('ecChgPassword')) {
4287
	define('ecChgPassword', 1612);
4288
}
4289
if (!defined('ecPwdExpired')) {
4290
	define('ecPwdExpired', 1613);
4291
}
4292
if (!defined('ecInvWkstn')) {
4293
	define('ecInvWkstn', 1614);
4294
}
4295
if (!defined('ecInvLogonHrs')) {
4296
	define('ecInvLogonHrs', 1615);
4297
}
4298
if (!defined('ecAcctDisabled')) {
4299
	define('ecAcctDisabled', 1616);
4300
}
4301
if (!defined('ecRuleVersion')) {
4302
	define('ecRuleVersion', 1700);
4303
}
4304
if (!defined('ecRuleFormat')) {
4305
	define('ecRuleFormat', 1701);
4306
}
4307
if (!defined('ecRuleSendAsDenied')) {
4308
	define('ecRuleSendAsDenied', 1702);
4309
}
4310
if (!defined('ecNoServerSupport')) {
4311
	define('ecNoServerSupport', 1721);
4312
}
4313
if (!defined('ecLockTimedOut')) {
4314
	define('ecLockTimedOut', 1722);
4315
}
4316
if (!defined('ecObjectLocked')) {
4317
	define('ecObjectLocked', 1723);
4318
}
4319
if (!defined('ecInvalidLockNamespace')) {
4320
	define('ecInvalidLockNamespace', 1725);
4321
}
4322
if (!defined('RPC_X_BAD_STUB_DATA')) {
4323
	define('RPC_X_BAD_STUB_DATA', 1783);
4324
}
4325
if (!defined('ecMessageDeleted')) {
4326
	define('ecMessageDeleted', 2006);
4327
}
4328
if (!defined('ecProtocolDisabled')) {
4329
	define('ecProtocolDisabled', 2008);
4330
}
4331
if (!defined('ecClearTextLogonDisabled')) {
4332
	define('ecClearTextLogonDisabled', 2009);
4333
}
4334
if (!defined('ecRejected')) {
4335
	define('ecRejected', 2030);
4336
}
4337
if (!defined('ecAmbiguousAlias')) {
4338
	define('ecAmbiguousAlias', 2202);
4339
}
4340
if (!defined('ecUnknownMailbox')) {
4341
	define('ecUnknownMailbox', 2203);
4342
}
4343
if (!defined('ecExpReserved')) {
4344
	define('ecExpReserved', 2300);
4345
}
4346
if (!defined('ecExpParseDepth')) {
4347
	define('ecExpParseDepth', 2301);
4348
}
4349
if (!defined('ecExpFuncArgType')) {
4350
	define('ecExpFuncArgType', 2302);
4351
}
4352
if (!defined('ecExpSyntax')) {
4353
	define('ecExpSyntax', 2303);
4354
}
4355
if (!defined('ecExpBadStrToken')) {
4356
	define('ecExpBadStrToken', 2304);
4357
}
4358
if (!defined('ecExpBadColToken')) {
4359
	define('ecExpBadColToken', 2305);
4360
}
4361
if (!defined('ecExpTypeMismatch')) {
4362
	define('ecExpTypeMismatch', 2306);
4363
}
4364
if (!defined('ecExpOpNotSupported')) {
4365
	define('ecExpOpNotSupported', 2307);
4366
}
4367
if (!defined('ecExpDivByZero')) {
4368
	define('ecExpDivByZero', 2308);
4369
}
4370
if (!defined('ecExpUnaryArgType')) {
4371
	define('ecExpUnaryArgType', 2309);
4372
}
4373
if (!defined('ecNotLocked')) {
4374
	define('ecNotLocked', 2400);
4375
}
4376
if (!defined('ecClientEvent')) {
4377
	define('ecClientEvent', 2401);
4378
}
4379
if (!defined('ecCorruptEvent')) {
4380
	define('ecCorruptEvent', 2405);
4381
}
4382
if (!defined('ecCorruptWatermark')) {
4383
	define('ecCorruptWatermark', 2406);
4384
}
4385
if (!defined('ecEventError')) {
4386
	define('ecEventError', 2407);
4387
}
4388
if (!defined('ecWatermarkError')) {
4389
	define('ecWatermarkError', 2408);
4390
}
4391
if (!defined('ecNonCanonicalACL')) {
4392
	define('ecNonCanonicalACL', 2409);
4393
}
4394
if (!defined('ecMailboxDisabled')) {
4395
	define('ecMailboxDisabled', 2412);
4396
}
4397
if (!defined('ecRulesFolderOverQuota')) {
4398
	define('ecRulesFolderOverQuota', 2413);
4399
}
4400
if (!defined('ecADUnavailable')) {
4401
	define('ecADUnavailable', 2414);
4402
}
4403
if (!defined('ecADError')) {
4404
	define('ecADError', 2415);
4405
}
4406
if (!defined('ecNotEncrypted')) {
4407
	define('ecNotEncrypted', 2416);
4408
}
4409
if (!defined('ecADNotFound')) {
4410
	define('ecADNotFound', 2417);
4411
}
4412
if (!defined('ecADPropertyError')) {
4413
	define('ecADPropertyError', 2418);
4414
}
4415
if (!defined('ecRpcServerTooBusy')) {
4416
	define('ecRpcServerTooBusy', 2419);
4417
}
4418
if (!defined('ecRpcOutOfMemory')) {
4419
	define('ecRpcOutOfMemory', 2420);
4420
}
4421
if (!defined('ecRpcServerOutOfMemory')) {
4422
	define('ecRpcServerOutOfMemory', 2421);
4423
}
4424
if (!defined('ecRpcOutOfResources')) {
4425
	define('ecRpcOutOfResources', 2422);
4426
}
4427
if (!defined('ecRpcServerUnavailable')) {
4428
	define('ecRpcServerUnavailable', 2423);
4429
}
4430
if (!defined('ecSecureSubmitError')) {
4431
	define('ecSecureSubmitError', 2426);
4432
}
4433
if (!defined('ecEventsDeleted')) {
4434
	define('ecEventsDeleted', 2428);
4435
}
4436
if (!defined('ecSubsystemStopping')) {
4437
	define('ecSubsystemStopping', 2429);
4438
}
4439
if (!defined('ecSAUnavailable')) {
4440
	define('ecSAUnavailable', 2430);
4441
}
4442
if (!defined('ecCIStopping')) {
4443
	define('ecCIStopping', 2600);
4444
}
4445
if (!defined('ecFxInvalidState')) {
4446
	define('ecFxInvalidState', 2601);
4447
}
4448
if (!defined('ecFxUnexpectedMarker')) {
4449
	define('ecFxUnexpectedMarker', 2602);
4450
}
4451
if (!defined('ecDuplicateDelivery')) {
4452
	define('ecDuplicateDelivery', 2603);
4453
}
4454
if (!defined('ecConditionViolation')) {
4455
	define('ecConditionViolation', 2604);
4456
}
4457
if (!defined('ecMaxPoolExceeded')) {
4458
	define('ecMaxPoolExceeded', 2605);
4459
}
4460
if (!defined('ecRpcInvalidHandle')) {
4461
	define('ecRpcInvalidHandle', 2606);
4462
}
4463
if (!defined('ecEventNotFound')) {
4464
	define('ecEventNotFound', 2607);
4465
}
4466
if (!defined('ecPropNotPromoted')) {
4467
	define('ecPropNotPromoted', 2608);
4468
}
4469
if (!defined('ecLowMdbSpace')) {
4470
	define('ecLowMdbSpace', 2609);
4471
}
4472
if (!defined('MAPI_W_NO_SERVICE')) {
4473
	define('MAPI_W_NO_SERVICE', 262659);
4474
}
4475
if (!defined('MAPI_W_ERRORS_RETURNED')) {
4476
	define('MAPI_W_ERRORS_RETURNED', 263040);
4477
}
4478
if (!defined('MAPI_W_POSITION_CHANGED')) {
4479
	define('MAPI_W_POSITION_CHANGED', 263297);
4480
}
4481
if (!defined('MAPI_W_APPROX_COUNT')) {
4482
	define('MAPI_W_APPROX_COUNT', 263298);
4483
}
4484
if (!defined('MAPI_W_CANCEL_MESSAGE')) {
4485
	define('MAPI_W_CANCEL_MESSAGE', 263552);
4486
}
4487
if (!defined('MAPI_W_PARTIAL_COMPLETION')) {
4488
	define('MAPI_W_PARTIAL_COMPLETION', 263808);
4489
}
4490
if (!defined('SYNC_W_PROGRESS')) {
4491
	define('SYNC_W_PROGRESS', 264224);
4492
}
4493
if (!defined('SYNC_W_CLIENT_CHANGE_NEWER')) {
4494
	define('SYNC_W_CLIENT_CHANGE_NEWER', 264225);
4495
}
4496
if (!defined('MAPI_E_INTERFACE_NOT_SUPPORTED')) {
4497
	define('MAPI_E_INTERFACE_NOT_SUPPORTED', 2147500034);
4498
}
4499
if (!defined('MAPI_E_CALL_FAILED')) {
4500
	define('MAPI_E_CALL_FAILED', 2147500037);
4501
}
4502
if (!defined('SYNC_E_ERROR')) {
4503
	define('SYNC_E_ERROR', 2147500037);
4504
}
4505
if (!defined('MAPI_E_NO_SUPPORT')) {
4506
	define('MAPI_E_NO_SUPPORT', 2147746050);
4507
}
4508
if (!defined('MAPI_E_BAD_CHARWIDTH')) {
4509
	define('MAPI_E_BAD_CHARWIDTH', 2147746051);
4510
}
4511
if (!defined('MAPI_E_STRING_TOO_LONG')) {
4512
	define('MAPI_E_STRING_TOO_LONG', 2147746053);
4513
}
4514
if (!defined('MAPI_E_UNKNOWN_FLAGS')) {
4515
	define('MAPI_E_UNKNOWN_FLAGS', 2147746054);
4516
}
4517
if (!defined('SYNC_E_UNKNOWN_FLAGS')) {
4518
	define('SYNC_E_UNKNOWN_FLAGS', 2147746054);
4519
}
4520
if (!defined('MAPI_E_INVALID_ENTRYID')) {
4521
	define('MAPI_E_INVALID_ENTRYID', 2147746055);
4522
}
4523
if (!defined('MAPI_E_INVALID_OBJECT')) {
4524
	define('MAPI_E_INVALID_OBJECT', 2147746056);
4525
}
4526
if (!defined('MAPI_E_OBJECT_CHANGED')) {
4527
	define('MAPI_E_OBJECT_CHANGED', 2147746057);
4528
}
4529
if (!defined('MAPI_E_OBJECT_DELETED')) {
4530
	define('MAPI_E_OBJECT_DELETED', 2147746058);
4531
}
4532
if (!defined('MAPI_E_BUSY')) {
4533
	define('MAPI_E_BUSY', 2147746059);
4534
}
4535
if (!defined('MAPI_E_NOT_ENOUGH_DISK')) {
4536
	define('MAPI_E_NOT_ENOUGH_DISK', 2147746061);
4537
}
4538
if (!defined('MAPI_E_NOT_ENOUGH_RESOURCES')) {
4539
	define('MAPI_E_NOT_ENOUGH_RESOURCES', 2147746062);
4540
}
4541
if (!defined('MAPI_E_NOT_FOUND')) {
4542
	define('MAPI_E_NOT_FOUND', 2147746063);
4543
}
4544
if (!defined('MAPI_E_VERSION')) {
4545
	define('MAPI_E_VERSION', 2147746064);
4546
}
4547
if (!defined('MAPI_E_LOGON_FAILED')) {
4548
	define('MAPI_E_LOGON_FAILED', 2147746065);
4549
}
4550
if (!defined('MAPI_E_SESSION_LIMIT')) {
4551
	define('MAPI_E_SESSION_LIMIT', 2147746066);
4552
}
4553
if (!defined('MAPI_E_USER_CANCEL')) {
4554
	define('MAPI_E_USER_CANCEL', 2147746067);
4555
}
4556
if (!defined('MAPI_E_UNABLE_TO_ABORT')) {
4557
	define('MAPI_E_UNABLE_TO_ABORT', 2147746068);
4558
}
4559
if (!defined('ecRpcFailed')) {
4560
	define('ecRpcFailed', 2147746069);
4561
}
4562
if (!defined('MAPI_E_NETWORK_ERROR')) {
4563
	define('MAPI_E_NETWORK_ERROR', 2147746069);
4564
}
4565
if (!defined('MAPI_E_DISK_ERROR')) {
4566
	define('MAPI_E_DISK_ERROR', 2147746070);
4567
}
4568
if (!defined('MAPI_E_TOO_COMPLEX')) {
4569
	define('MAPI_E_TOO_COMPLEX', 2147746071);
4570
}
4571
if (!defined('MAPI_E_BAD_COLUMN')) {
4572
	define('MAPI_E_BAD_COLUMN', 2147746072);
4573
}
4574
if (!defined('MAPI_E_EXTENDED_ERROR')) {
4575
	define('MAPI_E_EXTENDED_ERROR', 2147746073);
4576
}
4577
if (!defined('MAPI_E_COMPUTED')) {
4578
	define('MAPI_E_COMPUTED', 2147746074);
4579
}
4580
if (!defined('MAPI_E_CORRUPT_DATA')) {
4581
	define('MAPI_E_CORRUPT_DATA', 2147746075);
4582
}
4583
if (!defined('MAPI_E_UNCONFIGURED')) {
4584
	define('MAPI_E_UNCONFIGURED', 2147746076);
4585
}
4586
if (!defined('MAPI_E_FAILONEPROVIDER')) {
4587
	define('MAPI_E_FAILONEPROVIDER', 2147746077);
4588
}
4589
if (!defined('MAPI_E_UNKNOWN_CPID')) {
4590
	define('MAPI_E_UNKNOWN_CPID', 2147746078);
4591
}
4592
if (!defined('MAPI_E_UNKNOWN_LCID')) {
4593
	define('MAPI_E_UNKNOWN_LCID', 2147746079);
4594
}
4595
if (!defined('MAPI_E_PASSWORD_CHANGE_REQUIRED')) {
4596
	define('MAPI_E_PASSWORD_CHANGE_REQUIRED', 2147746080);
4597
}
4598
if (!defined('MAPI_E_PASSWORD_EXPIRED')) {
4599
	define('MAPI_E_PASSWORD_EXPIRED', 2147746081);
4600
}
4601
if (!defined('MAPI_E_INVALID_WORKSTATION_ACCOUNT')) {
4602
	define('MAPI_E_INVALID_WORKSTATION_ACCOUNT', 2147746082);
4603
}
4604
if (!defined('MAPI_E_INVALID_ACCESS_TIME')) {
4605
	define('MAPI_E_INVALID_ACCESS_TIME', 2147746083);
4606
}
4607
if (!defined('MAPI_E_ACCOUNT_DISABLED')) {
4608
	define('MAPI_E_ACCOUNT_DISABLED', 2147746084);
4609
}
4610
if (!defined('MAPI_E_END_OF_SESSION')) {
4611
	define('MAPI_E_END_OF_SESSION', 2147746304);
4612
}
4613
if (!defined('MAPI_E_UNKNOWN_ENTRYID')) {
4614
	define('MAPI_E_UNKNOWN_ENTRYID', 2147746305);
4615
}
4616
if (!defined('MAPI_E_MISSING_REQUIRED_COLUMN')) {
4617
	define('MAPI_E_MISSING_REQUIRED_COLUMN', 2147746306);
4618
}
4619
if (!defined('MAPI_E_BAD_VALUE')) {
4620
	define('MAPI_E_BAD_VALUE', 2147746561);
4621
}
4622
if (!defined('MAPI_E_INVALID_TYPE')) {
4623
	define('MAPI_E_INVALID_TYPE', 2147746562);
4624
}
4625
if (!defined('MAPI_E_TYPE_NO_SUPPORT')) {
4626
	define('MAPI_E_TYPE_NO_SUPPORT', 2147746563);
4627
}
4628
if (!defined('MAPI_E_UNEXPECTED_TYPE')) {
4629
	define('MAPI_E_UNEXPECTED_TYPE', 2147746564);
4630
}
4631
if (!defined('MAPI_E_TOO_BIG')) {
4632
	define('MAPI_E_TOO_BIG', 2147746565);
4633
}
4634
if (!defined('MAPI_E_DECLINE_COPY')) {
4635
	define('MAPI_E_DECLINE_COPY', 2147746566);
4636
}
4637
if (!defined('MAPI_E_UNEXPECTED_ID')) {
4638
	define('MAPI_E_UNEXPECTED_ID', 2147746567);
4639
}
4640
if (!defined('MAPI_E_UNABLE_TO_COMPLETE')) {
4641
	define('MAPI_E_UNABLE_TO_COMPLETE', 2147746816);
4642
}
4643
if (!defined('MAPI_E_TIMEOUT')) {
4644
	define('MAPI_E_TIMEOUT', 2147746817);
4645
}
4646
if (!defined('MAPI_E_TABLE_EMPTY')) {
4647
	define('MAPI_E_TABLE_EMPTY', 2147746818);
4648
}
4649
if (!defined('MAPI_E_TABLE_TOO_BIG')) {
4650
	define('MAPI_E_TABLE_TOO_BIG', 2147746819);
4651
}
4652
if (!defined('MAPI_E_INVALID_BOOKMARK')) {
4653
	define('MAPI_E_INVALID_BOOKMARK', 2147746821);
4654
}
4655
if (!defined('MAPI_E_WAIT')) {
4656
	define('MAPI_E_WAIT', 2147747072);
4657
}
4658
if (!defined('MAPI_E_CANCEL')) {
4659
	define('MAPI_E_CANCEL', 2147747073);
4660
}
4661
if (!defined('MAPI_E_NOT_ME')) {
4662
	define('MAPI_E_NOT_ME', 2147747074);
4663
}
4664
if (!defined('MAPI_E_CORRUPT_STORE')) {
4665
	define('MAPI_E_CORRUPT_STORE', 2147747328);
4666
}
4667
if (!defined('MAPI_E_NOT_IN_QUEUE')) {
4668
	define('MAPI_E_NOT_IN_QUEUE', 2147747329);
4669
}
4670
if (!defined('MAPI_E_NO_SUPPRESS')) {
4671
	define('MAPI_E_NO_SUPPRESS', 2147747330);
4672
}
4673
if (!defined('MAPI_E_COLLISION')) {
4674
	define('MAPI_E_COLLISION', 2147747332);
4675
}
4676
if (!defined('MAPI_E_NOT_INITIALIZED')) {
4677
	define('MAPI_E_NOT_INITIALIZED', 2147747333);
4678
}
4679
if (!defined('MAPI_E_NON_STANDARD')) {
4680
	define('MAPI_E_NON_STANDARD', 2147747334);
4681
}
4682
if (!defined('MAPI_E_NO_RECIPIENTS')) {
4683
	define('MAPI_E_NO_RECIPIENTS', 2147747335);
4684
}
4685
if (!defined('MAPI_E_SUBMITTED')) {
4686
	define('MAPI_E_SUBMITTED', 2147747336);
4687
}
4688
if (!defined('MAPI_E_HAS_FOLDERS')) {
4689
	define('MAPI_E_HAS_FOLDERS', 2147747337);
4690
}
4691
if (!defined('MAPI_E_HAS_MESSAGES')) {
4692
	define('MAPI_E_HAS_MESSAGES', 2147747338);
4693
}
4694
if (!defined('MAPI_E_FOLDER_CYCLE')) {
4695
	define('MAPI_E_FOLDER_CYCLE', 2147747339);
4696
}
4697
if (!defined('MAPI_E_STORE_FULL')) {
4698
	define('MAPI_E_STORE_FULL', 2147747340);
4699
}
4700
if (!defined('MAPI_E_LOCKID_LIMIT')) {
4701
	define('MAPI_E_LOCKID_LIMIT', 2147747341);
4702
}
4703
if (!defined('MAPI_E_AMBIGUOUS_RECIP')) {
4704
	define('MAPI_E_AMBIGUOUS_RECIP', 2147747584);
4705
}
4706
if (!defined('SYNC_E_OBJECT_DELETED')) {
4707
	define('SYNC_E_OBJECT_DELETED', 2147747840);
4708
}
4709
if (!defined('SYNC_E_IGNORE')) {
4710
	define('SYNC_E_IGNORE', 2147747841);
4711
}
4712
if (!defined('SYNC_E_CONFLICT')) {
4713
	define('SYNC_E_CONFLICT', 2147747842);
4714
}
4715
if (!defined('SYNC_E_NO_PARENT')) {
4716
	define('SYNC_E_NO_PARENT', 2147747843);
4717
}
4718
if (!defined('SYNC_E_CYCLE_DETECTED')) {
4719
	define('SYNC_E_CYCLE_DETECTED', 2147747844);
4720
}
4721
if (!defined('SYNC_E_CYCLE')) {
4722
	define('SYNC_E_CYCLE', 2147747844);
4723
}
4724
if (!defined('SYNC_E_INCEST')) {
4725
	define('SYNC_E_INCEST', 2147747844);
4726
}
4727
if (!defined('SYNC_E_UNSYNCHRONIZED')) {
4728
	define('SYNC_E_UNSYNCHRONIZED', 2147747845);
4729
}
4730
if (!defined('MAPI_E_NAMED_PROP_QUOTA_EXCEEDED')) {
4731
	define('MAPI_E_NAMED_PROP_QUOTA_EXCEEDED', 2147748096);
4732
}
4733
if (!defined('MAPI_E_NO_ACCESS')) {
4734
	define('MAPI_E_NO_ACCESS', 2147942405);
4735
}
4736
if (!defined('MAPI_E_NOT_ENOUGH_MEMORY')) {
4737
	define('MAPI_E_NOT_ENOUGH_MEMORY', 2147942414);
4738
}
4739
if (!defined('MAPI_E_INVALID_PARAMETER')) {
4740
	define('MAPI_E_INVALID_PARAMETER', 2147942487);
4741
}
4742
if (!defined('SYNC_E_INVALID_PARAMETER')) {
4743
	define('SYNC_E_INVALID_PARAMETER', 2147942487);
4744
}
4745
if (!defined('ecZNullObject')) {
4746
	define('ecZNullObject', 4294966272);
4747
}
4748
if (!defined('ecZOutOfHandles')) {
4749
	define('ecZOutOfHandles', 4294966276);
4750
}
4751