-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDOCS
577 lines (577 loc) · 21.2 KB
/
DOCS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
DOCS=\
$(DOCDIR)\object.html \
\
$(DOCDIR)\core_bitop.html \
$(DOCDIR)\core_checkedint.html \
$(DOCDIR)\core_exception.html \
$(DOCDIR)\core_int128.html \
$(DOCDIR)\core_interpolation.html \
$(DOCDIR)\core_math.html \
$(DOCDIR)\core_vararg.html \
$(DOCDIR)\core_volatile.html \
$(DOCDIR)\core_atomic.html \
$(DOCDIR)\core_attribute.html \
$(DOCDIR)\core_cpuid.html \
$(DOCDIR)\core_demangle.html \
$(DOCDIR)\core_factory.html \
$(DOCDIR)\core_lifetime.html \
$(DOCDIR)\core_memory.html \
$(DOCDIR)\core_runtime.html \
$(DOCDIR)\core_simd.html \
$(DOCDIR)\core_time.html \
\
$(DOCDIR)\core_gc_config.html \
$(DOCDIR)\core_gc_gcinterface.html \
$(DOCDIR)\core_gc_registry.html \
\
$(DOCDIR)\core_internal_abort.html \
$(DOCDIR)\core_internal_atomic.html \
$(DOCDIR)\core_internal_attributes.html \
$(DOCDIR)\core_internal_destruction.html \
$(DOCDIR)\core_internal_entrypoint.html \
$(DOCDIR)\core_internal_execinfo.html \
$(DOCDIR)\core_internal_hash.html \
$(DOCDIR)\core_internal_moving.html \
$(DOCDIR)\core_internal_parseoptions.html \
$(DOCDIR)\core_internal_postblit.html \
$(DOCDIR)\core_internal_spinlock.html \
$(DOCDIR)\core_internal_string.html \
$(DOCDIR)\core_internal_switch_.html \
$(DOCDIR)\core_internal_utf.html \
$(DOCDIR)\core_internal_convert.html \
$(DOCDIR)\core_internal_qsort.html \
$(DOCDIR)\core_internal_traits.html \
$(DOCDIR)\core_internal_lifetime.html \
$(DOCDIR)\core_internal_dassert.html \
\
$(DOCDIR)\core_internal_array_capacity.html \
$(DOCDIR)\core_internal_array_casting.html \
$(DOCDIR)\core_internal_array_comparison.html \
$(DOCDIR)\core_internal_array_concatenation.html \
$(DOCDIR)\core_internal_array_equality.html \
$(DOCDIR)\core_internal_array_operations.html \
$(DOCDIR)\core_internal_array_utils.html \
$(DOCDIR)\core_internal_array_appending.html \
$(DOCDIR)\core_internal_array_construction.html \
\
$(DOCDIR)\core_internal_elf_dl.html \
$(DOCDIR)\core_internal_elf_io.html \
\
$(DOCDIR)\core_internal_util_array.html \
$(IMPDIR)\core\internal\util\math.d \
\
$(DOCDIR)\core_internal_vararg_aarch64.html \
$(DOCDIR)\core_internal_vararg_sysv_x64.html \
\
$(DOCDIR)\core_internal_backtrace_dwarf.html \
$(DOCDIR)\core_internal_backtrace_elf.html \
$(DOCDIR)\core_internal_backtrace_handler.html \
$(DOCDIR)\core_internal_backtrace_libunwind.html \
$(DOCDIR)\core_internal_backtrace_macho.html \
$(DOCDIR)\core_internal_backtrace_unwind.html \
\
$(DOCDIR)\core_internal_container_array.html \
$(DOCDIR)\core_internal_container_common.html \
$(DOCDIR)\core_internal_container_hashtab.html \
$(DOCDIR)\core_internal_container_treap.html \
\
$(DOCDIR)\core_stdc_assert_.html \
$(DOCDIR)\core_stdc_complex.html \
$(DOCDIR)\core_stdc_config.html \
$(DOCDIR)\core_stdc_ctype.html \
$(DOCDIR)\core_stdc_errno.html \
$(DOCDIR)\core_stdc_fenv.html \
$(DOCDIR)\core_stdc_float_.html \
$(DOCDIR)\core_stdc_inttypes.html \
$(DOCDIR)\core_stdc_locale.html \
$(DOCDIR)\core_stdc_signal.html \
$(DOCDIR)\core_stdc_stddef.html \
$(DOCDIR)\core_stdc_stdio.html \
$(DOCDIR)\core_stdc_string.html \
$(DOCDIR)\core_stdc_wctype.html \
$(DOCDIR)\core_stdc_limits.html \
$(DOCDIR)\core_stdc_math.html \
$(DOCDIR)\core_stdc_stdarg.html \
$(DOCDIR)\core_stdc_stdint.html \
$(DOCDIR)\core_stdc_stdlib.html \
$(DOCDIR)\core_stdc_tgmath.html \
$(DOCDIR)\core_stdc_time.html \
$(DOCDIR)\core_stdc_wchar_.html \
\
$(DOCDIR)\core_stdcpp_allocator.html \
$(DOCDIR)\core_stdcpp_array.html \
$(DOCDIR)\core_stdcpp_exception.html \
$(DOCDIR)\core_stdcpp_memory.html \
$(DOCDIR)\core_stdcpp_string_view.html \
$(DOCDIR)\core_stdcpp_type_traits.html \
$(DOCDIR)\core_stdcpp_typeinfo.html \
$(DOCDIR)\core_stdcpp_utility.html \
$(DOCDIR)\core_stdcpp_xutility.html \
$(DOCDIR)\core_stdcpp_new_.html \
$(DOCDIR)\core_stdcpp_string.html \
$(DOCDIR)\core_stdcpp_vector.html \
\
$(DOCDIR)\core_sync.html \
$(DOCDIR)\core_sync_event.html \
$(DOCDIR)\core_sync_exception.html \
$(DOCDIR)\core_sync_barrier.html \
$(DOCDIR)\core_sync_condition.html \
$(DOCDIR)\core_sync_config.html \
$(DOCDIR)\core_sync_mutex.html \
$(DOCDIR)\core_sync_rwmutex.html \
$(DOCDIR)\core_sync_semaphore.html \
\
\
$(DOCDIR)\core_sys_bionic_err.html \
$(DOCDIR)\core_sys_bionic_fcntl.html \
$(DOCDIR)\core_sys_bionic_string.html \
$(DOCDIR)\core_sys_bionic_unistd.html \
\
$(DOCDIR)\core_sys_darwin_crt_externs.html \
$(DOCDIR)\core_sys_darwin_dlfcn.html \
$(DOCDIR)\core_sys_darwin_err.html \
$(DOCDIR)\core_sys_darwin_execinfo.html \
$(DOCDIR)\core_sys_darwin_fcntl.html \
$(DOCDIR)\core_sys_darwin_ifaddrs.html \
$(DOCDIR)\core_sys_darwin_pthread.html \
$(DOCDIR)\core_sys_darwin_string.html \
\
$(DOCDIR)\core_sys_darwin_mach_dyld.html \
$(DOCDIR)\core_sys_darwin_mach_getsect.html \
$(DOCDIR)\core_sys_darwin_mach_kern_return.html \
$(DOCDIR)\core_sys_darwin_mach_nlist.html \
$(DOCDIR)\core_sys_darwin_mach_port.html \
$(DOCDIR)\core_sys_darwin_mach_semaphore.html \
$(DOCDIR)\core_sys_darwin_mach_stab.html \
$(DOCDIR)\core_sys_darwin_mach_thread_act.html \
$(DOCDIR)\core_sys_darwin_mach_loader.html \
\
$(DOCDIR)\core_sys_darwin_netinet_in_.html \
\
$(DOCDIR)\core_sys_darwin_sys_attr.html \
$(DOCDIR)\core_sys_darwin_sys_cdefs.html \
$(DOCDIR)\core_sys_darwin_sys_event.html \
$(DOCDIR)\core_sys_darwin_sys_mman.html \
\
$(DOCDIR)\core_sys_dragonflybsd_dlfcn.html \
$(DOCDIR)\core_sys_dragonflybsd_err.html \
$(DOCDIR)\core_sys_dragonflybsd_execinfo.html \
$(DOCDIR)\core_sys_dragonflybsd_pthread_np.html \
$(DOCDIR)\core_sys_dragonflybsd_string.html \
$(DOCDIR)\core_sys_dragonflybsd_time.html \
\
$(DOCDIR)\core_sys_dragonflybsd_netinet_in_.html \
\
$(DOCDIR)\core_sys_dragonflybsd_sys__bitset.html \
$(DOCDIR)\core_sys_dragonflybsd_sys__cpuset.html \
$(DOCDIR)\core_sys_dragonflybsd_sys_cdefs.html \
$(DOCDIR)\core_sys_dragonflybsd_sys_elf.html \
$(DOCDIR)\core_sys_dragonflybsd_sys_elf32.html \
$(DOCDIR)\core_sys_dragonflybsd_sys_elf64.html \
$(DOCDIR)\core_sys_dragonflybsd_sys_elf_common.html \
$(DOCDIR)\core_sys_dragonflybsd_sys_event.html \
$(DOCDIR)\core_sys_dragonflybsd_sys_link_elf.html \
$(DOCDIR)\core_sys_dragonflybsd_sys_mman.html \
$(DOCDIR)\core_sys_dragonflybsd_sys_socket.html \
\
$(DOCDIR)\core_sys_elf_package.html \
\
$(DOCDIR)\core_sys_freebsd_dlfcn.html \
$(DOCDIR)\core_sys_freebsd_err.html \
$(DOCDIR)\core_sys_freebsd_pthread_np.html \
$(DOCDIR)\core_sys_freebsd_string.html \
$(DOCDIR)\core_sys_freebsd_time.html \
$(DOCDIR)\core_sys_freebsd_unistd.html \
$(DOCDIR)\core_sys_freebsd_config.html \
$(DOCDIR)\core_sys_freebsd_execinfo.html \
\
$(DOCDIR)\core_sys_freebsd_netinet_in_.html \
\
$(DOCDIR)\core_sys_freebsd_sys__bitset.html \
$(DOCDIR)\core_sys_freebsd_sys__cpuset.html \
$(DOCDIR)\core_sys_freebsd_sys_cdefs.html \
$(DOCDIR)\core_sys_freebsd_sys_elf.html \
$(DOCDIR)\core_sys_freebsd_sys_elf32.html \
$(DOCDIR)\core_sys_freebsd_sys_elf64.html \
$(DOCDIR)\core_sys_freebsd_sys_elf_common.html \
$(DOCDIR)\core_sys_freebsd_sys_link_elf.html \
$(DOCDIR)\core_sys_freebsd_sys_mman.html \
$(DOCDIR)\core_sys_freebsd_sys_event.html \
$(DOCDIR)\core_sys_freebsd_sys_mount.html \
\
$(DOCDIR)\core_sys_linux_config.html \
$(DOCDIR)\core_sys_linux_dlfcn.html \
$(DOCDIR)\core_sys_linux_elf.html \
$(DOCDIR)\core_sys_linux_epoll.html \
$(DOCDIR)\core_sys_linux_err.html \
$(DOCDIR)\core_sys_linux_errno.html \
$(DOCDIR)\core_sys_linux_fcntl.html \
$(DOCDIR)\core_sys_linux_fs.html \
$(DOCDIR)\core_sys_linux_ifaddrs.html \
$(DOCDIR)\core_sys_linux_io_uring.html \
$(DOCDIR)\core_sys_linux_link.html \
$(DOCDIR)\core_sys_linux_sched.html \
$(DOCDIR)\core_sys_linux_stdio.html \
$(DOCDIR)\core_sys_linux_string.html \
$(DOCDIR)\core_sys_linux_termios.html \
$(DOCDIR)\core_sys_linux_time.html \
$(DOCDIR)\core_sys_linux_timerfd.html \
$(DOCDIR)\core_sys_linux_tipc.html \
$(DOCDIR)\core_sys_linux_unistd.html \
$(DOCDIR)\core_sys_linux_execinfo.html \
\
$(DOCDIR)\core_sys_linux_netinet_in_.html \
$(DOCDIR)\core_sys_linux_netinet_tcp.html \
\
$(DOCDIR)\core_sys_linux_sys_auxv.html \
$(DOCDIR)\core_sys_linux_sys_eventfd.html \
$(DOCDIR)\core_sys_linux_sys_file.html \
$(DOCDIR)\core_sys_linux_sys_inotify.html \
$(DOCDIR)\core_sys_linux_sys_mman.html \
$(DOCDIR)\core_sys_linux_sys_prctl.html \
$(DOCDIR)\core_sys_linux_sys_signalfd.html \
$(DOCDIR)\core_sys_linux_sys_socket.html \
$(DOCDIR)\core_sys_linux_sys_sysinfo.html \
$(DOCDIR)\core_sys_linux_sys_xattr.html \
$(DOCDIR)\core_sys_linux_sys_time.html \
\
$(DOCDIR)\core_sys_netbsd_dlfcn.html \
$(DOCDIR)\core_sys_netbsd_err.html \
$(DOCDIR)\core_sys_netbsd_execinfo.html \
$(DOCDIR)\core_sys_netbsd_string.html \
$(DOCDIR)\core_sys_netbsd_time.html \
\
$(DOCDIR)\core_sys_netbsd_sys_elf.html \
$(DOCDIR)\core_sys_netbsd_sys_elf32.html \
$(DOCDIR)\core_sys_netbsd_sys_elf64.html \
$(DOCDIR)\core_sys_netbsd_sys_elf_common.html \
$(DOCDIR)\core_sys_netbsd_sys_event.html \
$(DOCDIR)\core_sys_netbsd_sys_featuretest.html \
$(DOCDIR)\core_sys_netbsd_sys_link_elf.html \
$(DOCDIR)\core_sys_netbsd_sys_mman.html \
\
$(DOCDIR)\core_sys_openbsd_dlfcn.html \
$(DOCDIR)\core_sys_openbsd_err.html \
$(DOCDIR)\core_sys_openbsd_string.html \
$(DOCDIR)\core_sys_openbsd_time.html \
\
$(DOCDIR)\core_sys_openbsd_sys_cdefs.html \
$(DOCDIR)\core_sys_openbsd_sys_elf.html \
$(DOCDIR)\core_sys_openbsd_sys_elf32.html \
$(DOCDIR)\core_sys_openbsd_sys_elf64.html \
$(DOCDIR)\core_sys_openbsd_sys_elf_common.html \
$(DOCDIR)\core_sys_openbsd_sys_link_elf.html \
$(DOCDIR)\core_sys_openbsd_sys_mman.html \
\
$(DOCDIR)\core_sys_posix_config.html \
$(DOCDIR)\core_sys_posix_iconv.html \
$(DOCDIR)\core_sys_posix_libgen.html \
$(DOCDIR)\core_sys_posix_locale.html \
$(DOCDIR)\core_sys_posix_mqueue.html \
$(DOCDIR)\core_sys_posix_spawn.html \
$(DOCDIR)\core_sys_posix_string.html \
$(DOCDIR)\core_sys_posix_strings.html \
$(DOCDIR)\core_sys_posix_syslog.html \
$(DOCDIR)\core_sys_posix_aio.html \
$(DOCDIR)\core_sys_posix_dirent.html \
$(DOCDIR)\core_sys_posix_dlfcn.html \
$(DOCDIR)\core_sys_posix_grp.html \
$(DOCDIR)\core_sys_posix_inttypes.html \
$(DOCDIR)\core_sys_posix_netdb.html \
$(DOCDIR)\core_sys_posix_poll.html \
$(DOCDIR)\core_sys_posix_pthread.html \
$(DOCDIR)\core_sys_posix_pwd.html \
$(DOCDIR)\core_sys_posix_sched.html \
$(DOCDIR)\core_sys_posix_semaphore.html \
$(DOCDIR)\core_sys_posix_setjmp.html \
$(DOCDIR)\core_sys_posix_signal.html \
$(DOCDIR)\core_sys_posix_stdio.html \
$(DOCDIR)\core_sys_posix_stdlib.html \
$(DOCDIR)\core_sys_posix_termios.html \
$(DOCDIR)\core_sys_posix_time.html \
$(DOCDIR)\core_sys_posix_ucontext.html \
$(DOCDIR)\core_sys_posix_unistd.html \
$(DOCDIR)\core_sys_posix_utime.html \
$(DOCDIR)\core_sys_posix_fcntl.html \
\
$(DOCDIR)\core_sys_posix_arpa_inet.html \
\
$(DOCDIR)\core_sys_posix_net_if_.html \
\
$(DOCDIR)\core_sys_posix_netinet_in_.html \
$(DOCDIR)\core_sys_posix_netinet_tcp.html \
\
$(DOCDIR)\core_sys_posix_stdc_time.html \
\
$(DOCDIR)\core_sys_posix_sys_filio.html \
$(DOCDIR)\core_sys_posix_sys_ioccom.html \
$(DOCDIR)\core_sys_posix_sys_ioctl.html \
$(DOCDIR)\core_sys_posix_sys_msg.html \
$(DOCDIR)\core_sys_posix_sys_resource.html \
$(DOCDIR)\core_sys_posix_sys_ttycom.html \
$(DOCDIR)\core_sys_posix_sys_un.html \
$(DOCDIR)\core_sys_posix_sys_utsname.html \
$(DOCDIR)\core_sys_posix_sys_ipc.html \
$(DOCDIR)\core_sys_posix_sys_mman.html \
$(DOCDIR)\core_sys_posix_sys_select.html \
$(DOCDIR)\core_sys_posix_sys_shm.html \
$(DOCDIR)\core_sys_posix_sys_socket.html \
$(DOCDIR)\core_sys_posix_sys_stat.html \
$(DOCDIR)\core_sys_posix_sys_statvfs.html \
$(DOCDIR)\core_sys_posix_sys_time.html \
$(DOCDIR)\core_sys_posix_sys_types.html \
$(DOCDIR)\core_sys_posix_sys_uio.html \
$(DOCDIR)\core_sys_posix_sys_wait.html \
\
$(DOCDIR)\core_sys_solaris_dlfcn.html \
$(DOCDIR)\core_sys_solaris_elf.html \
$(DOCDIR)\core_sys_solaris_err.html \
$(DOCDIR)\core_sys_solaris_execinfo.html \
$(DOCDIR)\core_sys_solaris_libelf.html \
$(DOCDIR)\core_sys_solaris_link.html \
$(DOCDIR)\core_sys_solaris_time.html \
\
$(DOCDIR)\core_sys_solaris_sys_elf.html \
$(DOCDIR)\core_sys_solaris_sys_elf_386.html \
$(DOCDIR)\core_sys_solaris_sys_elf_amd64.html \
$(DOCDIR)\core_sys_solaris_sys_elf_notes.html \
$(DOCDIR)\core_sys_solaris_sys_elftypes.html \
$(DOCDIR)\core_sys_solaris_sys_link.html \
$(DOCDIR)\core_sys_solaris_sys_priocntl.html \
$(DOCDIR)\core_sys_solaris_sys_procset.html \
$(DOCDIR)\core_sys_solaris_sys_types.html \
$(DOCDIR)\core_sys_solaris_sys_elf_SPARC.html \
\
$(DOCDIR)\core_sys_windows_aclapi.html \
$(DOCDIR)\core_sys_windows_basetsd.html \
$(DOCDIR)\core_sys_windows_cderr.html \
$(DOCDIR)\core_sys_windows_com.html \
$(DOCDIR)\core_sys_windows_core.html \
$(DOCDIR)\core_sys_windows_cplext.html \
$(DOCDIR)\core_sys_windows_dbghelp.html \
$(DOCDIR)\core_sys_windows_dbghelp_types.html \
$(DOCDIR)\core_sys_windows_dbt.html \
$(DOCDIR)\core_sys_windows_dll.html \
$(DOCDIR)\core_sys_windows_exdispid.html \
$(DOCDIR)\core_sys_windows_idispids.html \
$(DOCDIR)\core_sys_windows_ipifcons.html \
$(DOCDIR)\core_sys_windows_iptypes.html \
$(DOCDIR)\core_sys_windows_lm.html \
$(DOCDIR)\core_sys_windows_lmerr.html \
$(DOCDIR)\core_sys_windows_lmuseflg.html \
$(DOCDIR)\core_sys_windows_ntldap.html \
$(DOCDIR)\core_sys_windows_ntsecapi.html \
$(DOCDIR)\core_sys_windows_ntsecpkg.html \
$(DOCDIR)\core_sys_windows_ole2ver.html \
$(DOCDIR)\core_sys_windows_raserror.html \
$(DOCDIR)\core_sys_windows_rpc.html \
$(DOCDIR)\core_sys_windows_rpcnterr.html \
$(DOCDIR)\core_sys_windows_sdkddkver.html \
$(DOCDIR)\core_sys_windows_security.html \
$(DOCDIR)\core_sys_windows_sspi.html \
$(DOCDIR)\core_sys_windows_stat.html \
$(DOCDIR)\core_sys_windows_threadaux.html \
$(DOCDIR)\core_sys_windows_tmschema.html \
$(DOCDIR)\core_sys_windows_uuid.html \
$(DOCDIR)\core_sys_windows_vfw.html \
$(DOCDIR)\core_sys_windows_w32api.html \
$(DOCDIR)\core_sys_windows_winber.html \
$(DOCDIR)\core_sys_windows_windows.html \
$(DOCDIR)\core_sys_windows_winhttp.html \
$(DOCDIR)\core_sys_windows_winperf.html \
$(DOCDIR)\core_sys_windows_winsock2.html \
$(DOCDIR)\core_sys_windows_accctrl.html \
$(DOCDIR)\core_sys_windows_aclui.html \
$(DOCDIR)\core_sys_windows_basetyps.html \
$(DOCDIR)\core_sys_windows_cguid.html \
$(DOCDIR)\core_sys_windows_comcat.html \
$(DOCDIR)\core_sys_windows_commctrl.html \
$(DOCDIR)\core_sys_windows_commdlg.html \
$(DOCDIR)\core_sys_windows_cpl.html \
$(DOCDIR)\core_sys_windows_custcntl.html \
$(DOCDIR)\core_sys_windows_dde.html \
$(DOCDIR)\core_sys_windows_ddeml.html \
$(DOCDIR)\core_sys_windows_dhcpcsdk.html \
$(DOCDIR)\core_sys_windows_dlgs.html \
$(DOCDIR)\core_sys_windows_docobj.html \
$(DOCDIR)\core_sys_windows_errorrep.html \
$(DOCDIR)\core_sys_windows_exdisp.html \
$(DOCDIR)\core_sys_windows_httpext.html \
$(DOCDIR)\core_sys_windows_imagehlp.html \
$(DOCDIR)\core_sys_windows_imm.html \
$(DOCDIR)\core_sys_windows_intshcut.html \
$(DOCDIR)\core_sys_windows_ipexport.html \
$(DOCDIR)\core_sys_windows_iphlpapi.html \
$(DOCDIR)\core_sys_windows_iprtrmib.html \
$(DOCDIR)\core_sys_windows_isguids.html \
$(DOCDIR)\core_sys_windows_lmaccess.html \
$(DOCDIR)\core_sys_windows_lmalert.html \
$(DOCDIR)\core_sys_windows_lmapibuf.html \
$(DOCDIR)\core_sys_windows_lmat.html \
$(DOCDIR)\core_sys_windows_lmaudit.html \
$(DOCDIR)\core_sys_windows_lmbrowsr.html \
$(DOCDIR)\core_sys_windows_lmchdev.html \
$(DOCDIR)\core_sys_windows_lmconfig.html \
$(DOCDIR)\core_sys_windows_lmcons.html \
$(DOCDIR)\core_sys_windows_lmerrlog.html \
$(DOCDIR)\core_sys_windows_lmmsg.html \
$(DOCDIR)\core_sys_windows_lmremutl.html \
$(DOCDIR)\core_sys_windows_lmrepl.html \
$(DOCDIR)\core_sys_windows_lmserver.html \
$(DOCDIR)\core_sys_windows_lmshare.html \
$(DOCDIR)\core_sys_windows_lmsname.html \
$(DOCDIR)\core_sys_windows_lmstats.html \
$(DOCDIR)\core_sys_windows_lmsvc.html \
$(DOCDIR)\core_sys_windows_lmuse.html \
$(DOCDIR)\core_sys_windows_lmwksta.html \
$(DOCDIR)\core_sys_windows_lzexpand.html \
$(DOCDIR)\core_sys_windows_mapi.html \
$(DOCDIR)\core_sys_windows_mciavi.html \
$(DOCDIR)\core_sys_windows_mcx.html \
$(DOCDIR)\core_sys_windows_mgmtapi.html \
$(DOCDIR)\core_sys_windows_mmsystem.html \
$(DOCDIR)\core_sys_windows_msacm.html \
$(DOCDIR)\core_sys_windows_mshtml.html \
$(DOCDIR)\core_sys_windows_mswsock.html \
$(DOCDIR)\core_sys_windows_nb30.html \
$(DOCDIR)\core_sys_windows_nddeapi.html \
$(DOCDIR)\core_sys_windows_nspapi.html \
$(DOCDIR)\core_sys_windows_ntdef.html \
$(DOCDIR)\core_sys_windows_ntdll.html \
$(DOCDIR)\core_sys_windows_oaidl.html \
$(DOCDIR)\core_sys_windows_objbase.html \
$(DOCDIR)\core_sys_windows_objfwd.html \
$(DOCDIR)\core_sys_windows_objidl.html \
$(DOCDIR)\core_sys_windows_objsafe.html \
$(DOCDIR)\core_sys_windows_ocidl.html \
$(DOCDIR)\core_sys_windows_odbcinst.html \
$(DOCDIR)\core_sys_windows_ole.html \
$(DOCDIR)\core_sys_windows_ole2.html \
$(DOCDIR)\core_sys_windows_oleacc.html \
$(DOCDIR)\core_sys_windows_oleauto.html \
$(DOCDIR)\core_sys_windows_olectl.html \
$(DOCDIR)\core_sys_windows_olectlid.html \
$(DOCDIR)\core_sys_windows_oledlg.html \
$(DOCDIR)\core_sys_windows_oleidl.html \
$(DOCDIR)\core_sys_windows_pbt.html \
$(DOCDIR)\core_sys_windows_powrprof.html \
$(DOCDIR)\core_sys_windows_prsht.html \
$(DOCDIR)\core_sys_windows_psapi.html \
$(DOCDIR)\core_sys_windows_rapi.html \
$(DOCDIR)\core_sys_windows_ras.html \
$(DOCDIR)\core_sys_windows_rasdlg.html \
$(DOCDIR)\core_sys_windows_rassapi.html \
$(DOCDIR)\core_sys_windows_reason.html \
$(DOCDIR)\core_sys_windows_regstr.html \
$(DOCDIR)\core_sys_windows_richedit.html \
$(DOCDIR)\core_sys_windows_richole.html \
$(DOCDIR)\core_sys_windows_rpcdce.html \
$(DOCDIR)\core_sys_windows_rpcdce2.html \
$(DOCDIR)\core_sys_windows_rpcdcep.html \
$(DOCDIR)\core_sys_windows_rpcndr.html \
$(DOCDIR)\core_sys_windows_rpcnsi.html \
$(DOCDIR)\core_sys_windows_rpcnsip.html \
$(DOCDIR)\core_sys_windows_schannel.html \
$(DOCDIR)\core_sys_windows_secext.html \
$(DOCDIR)\core_sys_windows_servprov.html \
$(DOCDIR)\core_sys_windows_setupapi.html \
$(DOCDIR)\core_sys_windows_shellapi.html \
$(DOCDIR)\core_sys_windows_shldisp.html \
$(DOCDIR)\core_sys_windows_shlguid.html \
$(DOCDIR)\core_sys_windows_shlobj.html \
$(DOCDIR)\core_sys_windows_shlwapi.html \
$(DOCDIR)\core_sys_windows_snmp.html \
$(DOCDIR)\core_sys_windows_sql.html \
$(DOCDIR)\core_sys_windows_sqlext.html \
$(DOCDIR)\core_sys_windows_sqltypes.html \
$(DOCDIR)\core_sys_windows_sqlucode.html \
$(DOCDIR)\core_sys_windows_stacktrace.html \
$(DOCDIR)\core_sys_windows_subauth.html \
$(DOCDIR)\core_sys_windows_tlhelp32.html \
$(DOCDIR)\core_sys_windows_unknwn.html \
$(DOCDIR)\core_sys_windows_winbase.html \
$(DOCDIR)\core_sys_windows_wincon.html \
$(DOCDIR)\core_sys_windows_wincrypt.html \
$(DOCDIR)\core_sys_windows_windef.html \
$(DOCDIR)\core_sys_windows_winerror.html \
$(DOCDIR)\core_sys_windows_wingdi.html \
$(DOCDIR)\core_sys_windows_wininet.html \
$(DOCDIR)\core_sys_windows_winioctl.html \
$(DOCDIR)\core_sys_windows_winldap.html \
$(DOCDIR)\core_sys_windows_winnetwk.html \
$(DOCDIR)\core_sys_windows_winnls.html \
$(DOCDIR)\core_sys_windows_winnt.html \
$(DOCDIR)\core_sys_windows_winreg.html \
$(DOCDIR)\core_sys_windows_winspool.html \
$(DOCDIR)\core_sys_windows_winsvc.html \
$(DOCDIR)\core_sys_windows_winuser.html \
$(DOCDIR)\core_sys_windows_winver.html \
$(DOCDIR)\core_sys_windows_wtsapi32.html \
$(DOCDIR)\core_sys_windows_wtypes.html \
\
$(DOCDIR)\core_sys_windows_stdc_malloc.html \
$(DOCDIR)\core_sys_windows_stdc_time.html \
\
$(DOCDIR)\core_thread_context.html \
$(DOCDIR)\core_thread_package.html \
$(DOCDIR)\core_thread_threadgroup.html \
$(DOCDIR)\core_thread_types.html \
$(DOCDIR)\core_thread_fiber.html \
$(DOCDIR)\core_thread_osthread.html \
$(DOCDIR)\core_thread_threadbase.html \
$(DOCDIR)\core_thread.html \
\
$(DOCDIR)\core_builtins.html \
\
$(DOCDIR)\etc_linux_memoryerror.html \
\
$(DOCDIR)\core_internal_gc_bits.html \
$(DOCDIR)\core_internal_gc_os.html \
$(DOCDIR)\core_internal_gc_pooltable.html \
$(DOCDIR)\core_internal_gc_proxy.html \
$(DOCDIR)\core_internal_gc_impl_conservative_gc.html \
$(DOCDIR)\core_internal_gc_impl_manual_gc.html \
$(DOCDIR)\core_internal_gc_impl_proto_gc.html \
\
$(DOCDIR)\rt_aApply.html \
$(DOCDIR)\rt_aApplyR.html \
$(DOCDIR)\rt_adi.html \
$(DOCDIR)\rt_alloca.html \
$(DOCDIR)\rt_arraycat.html \
$(DOCDIR)\rt_cast_.html \
$(DOCDIR)\rt_config.html \
$(DOCDIR)\rt_deh.html \
$(DOCDIR)\rt_deh_win32.html \
$(DOCDIR)\rt_deh_win64_posix.html \
$(DOCDIR)\rt_ehalloc.html \
$(DOCDIR)\rt_invariant.html \
$(DOCDIR)\rt_llmath.html \
$(DOCDIR)\rt_memory.html \
$(DOCDIR)\rt_memset.html \
$(DOCDIR)\rt_msvc.html \
$(DOCDIR)\rt_msvc_math.html \
$(DOCDIR)\rt_sections.html \
$(DOCDIR)\rt_sections_darwin_64.html \
$(DOCDIR)\rt_sections_solaris.html \
$(DOCDIR)\rt_sections_win32.html \
$(DOCDIR)\rt_sections_win64.html \
$(DOCDIR)\rt_tlsgc.html \
$(DOCDIR)\rt_trace.html \
$(DOCDIR)\rt_tracegc.html \
$(DOCDIR)\rt_aaA.html \
$(DOCDIR)\rt_cmath2.html \
$(DOCDIR)\rt_critical_.html \
$(DOCDIR)\rt_dmain2.html \
$(DOCDIR)\rt_dwarfeh.html \
$(DOCDIR)\rt_lifetime.html \
$(DOCDIR)\rt_minfo.html \
$(DOCDIR)\rt_profilegc.html \
$(DOCDIR)\rt_sections_android.html \
$(DOCDIR)\rt_sections_elf_shared.html \
$(DOCDIR)\rt_sections_osx_x86.html \
$(DOCDIR)\rt_sections_osx_x86_64.html \
$(DOCDIR)\rt_monitor_.html \
$(DOCDIR)\rt_cover.html \
\
$(DOCDIR)\rt_util_typeinfo.html \
$(DOCDIR)\rt_util_utility.html \