summaryrefslogblamecommitdiffstats
path: root/private/ntos/init/ntoskrnl.src
blob: a71148abbad7f9a4d4eaff77bea5b7af3efe7e5c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002









































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                          
#undef RtlMoveMemory
#undef RtlCopyMemory
#undef RtlFillMemory
#undef RtlZeroMemory
NAME ntoskrnl.exe

DESCRIPTION 'Windows NT Kernel'

EXPORTS
    CcCanIWrite
    CcCopyRead
    CcFastCopyRead
    CcCopyWrite
    CcFastCopyWrite
    CcDeferWrite
    CcFlushCache
    CcGetDirtyPages
    CcGetFileObjectFromBcb
    CcGetFileObjectFromSectionPtrs
    CcGetLsnForFileObject
    CcInitializeCacheMap
    CcIsThereDirtyData
    CcMapData
    CcMdlRead
    CcMdlReadComplete
    CcMdlWriteComplete
    CcPinMappedData
    CcPinRead
    CcPrepareMdlWrite
    CcPreparePinWrite
    CcPurgeCacheSection
    CcRepinBcb
    CcScheduleReadAhead
    CcSetAdditionalCacheAttributes
    CcSetBcbOwnerPointer
    CcSetDirtyPageThreshold
    CcSetDirtyPinnedData
    CcSetFileSizes
    CcSetLogHandleForFile
    CcSetReadAheadGranularity
    CcUninitializeCacheMap
    CcUnpinData
    CcUnpinDataForThread
    CcUnpinRepinnedBcb
    CcZeroData
    CcFastReadNotPossible CONSTANT      // Data - use pointer for access
    CcFastReadWait CONSTANT             // Data - use pointer for access
    CcFastMdlReadWait CONSTANT          // Data - use pointer for access
    DbgBreakPoint
    DbgBreakPointWithStatus
    DbgLoadImageSymbols
    DbgPrint
    DbgPrompt
    ExAcquireFastMutexUnsafe
    ExAcquireResourceExclusive
    ExAcquireResourceExclusiveLite
    ExAcquireResourceSharedLite
    ExAcquireSharedStarveExclusive
    ExAcquireSharedWaitForExclusive
    ExAllocatePool
    ExAllocatePoolWithQuota
    ExAllocatePoolWithQuotaTag
    ExAllocatePoolWithTag
    ExConvertExclusiveToSharedLite
    ExCreateCallback
    ExDeleteResource
    ExDeleteResourceLite
    ExDesktopObjectType CONSTANT        // Data - use pointer for access
    ExDisableResourceBoostLite
    ExEnumHandleTable
    ExEventObjectType CONSTANT          // Data - use pointer for access
    ExExtendZone
    ExFreePool
    ExGetExclusiveWaiterCount
    ExGetPreviousMode
    ExGetSharedWaiterCount
    ExInitializeNPagedLookasideList
    ExIsProcessorFeaturePresent
    ExDeleteNPagedLookasideList
    ExInitializePagedLookasideList
    ExDeletePagedLookasideList
    ExInitializeResource
    ExInitializeResourceLite
    ExReinitializeResourceLite
    ExInitializeZone
    ExInterlockedAddLargeInteger
    ExInterlockedAddLargeStatistic
    ExInterlockedAddUlong
    ExInterlockedDecrementLong
    ExInterlockedExchangeUlong
    ExInterlockedExtendZone
    ExInterlockedIncrementLong
    ExInterlockedInsertHeadList
    ExInterlockedInsertTailList
    ExInterlockedPopEntryList
    ExInterlockedPushEntryList
    ExInterlockedRemoveHeadList
    ExIsResourceAcquiredExclusiveLite
    ExIsResourceAcquiredSharedLite
    ExLocalTimeToSystemTime
    ExNotifyCallback
    ExPostSystemEvent
    ExQueryPoolBlockSize
    ExQueueWorkItem
    ExRaiseAccessViolation
    ExRaiseDatatypeMisalignment
    ExRaiseException
    ExRaiseStatus
    ExRaiseHardError
    ExRegisterCallback
    ExReleaseFastMutexUnsafe
    ExReleaseResourceLite
    ExReleaseResourceForThread
    ExReleaseResourceForThreadLite
    ExSetResourceOwnerPointer
    ExSystemExceptionFilter
    ExSystemTimeToLocalTime
//    ExTryToAcquireFastMutexUnsafe
    ExUnregisterCallback
    ExWindowStationObjectType CONSTANT  // Data - use pointer for access
    FsRtlAddLargeMcbEntry
    FsRtlAddMcbEntry
    FsRtlAllocatePool
    FsRtlAllocatePoolWithTag
    FsRtlAllocatePoolWithQuota
    FsRtlAllocatePoolWithQuotaTag
    FsRtlAllocateResource
    FsRtlAreNamesEqual
    FsRtlBalanceReads
    FsRtlCheckLockForReadAccess
    FsRtlCheckLockForWriteAccess
    FsRtlCheckOplock
    FsRtlCopyRead
    FsRtlCopyWrite
    FsRtlGetFileSize
    FsRtlMdlReadDev
    FsRtlMdlReadComplete
    FsRtlMdlReadCompleteDev
    FsRtlPrepareMdlWriteDev
    FsRtlMdlWriteComplete
    FsRtlMdlWriteCompleteDev
    FsRtlCurrentBatchOplock
    FsRtlDeregisterUncProvider
    FsRtlDissectDbcs
    FsRtlDissectName
    FsRtlDoesDbcsContainWildCards
    FsRtlDoesNameContainWildCards
    FsRtlFastCheckLockForRead
    FsRtlFastCheckLockForWrite
    FsRtlFastUnlockSingle
    FsRtlFastUnlockAll
    FsRtlFastUnlockAllByKey
    FsRtlGetNextFileLock
    FsRtlGetNextLargeMcbEntry
    FsRtlGetNextMcbEntry
    FsRtlInitializeFileLock
    FsRtlInitializeLargeMcb
    FsRtlInitializeMcb
    FsRtlInitializeOplock
    FsRtlIsDbcsInExpression
    FsRtlIsFatDbcsLegal
    FsRtlIsHpfsDbcsLegal
    FsRtlIsNameInExpression
    FsRtlIsNtstatusExpected
    FsRtlIsTotalDeviceFailure
    FsRtlLegalAnsiCharacterArray CONSTANT // Data - use pointer for access
    FsRtlLookupLargeMcbEntry
    FsRtlLookupLastLargeMcbEntry
    FsRtlLookupLastMcbEntry
    FsRtlLookupMcbEntry
    FsRtlMdlRead
    FsRtlNormalizeNtstatus
    FsRtlNotifyInitializeSync
    FsRtlNotifyUninitializeSync
    FsRtlNotifyChangeDirectory
    FsRtlNotifyReportChange
    FsRtlNotifyCleanup
    FsRtlNotifyFullChangeDirectory
    FsRtlNotifyFullReportChange
    FsRtlNumberOfRunsInLargeMcb
    FsRtlNumberOfRunsInMcb
    FsRtlOplockFsctrl
    FsRtlOplockIsFastIoPossible
    FsRtlPostStackOverflow
    FsRtlPostPagingFileStackOverflow
    FsRtlPrepareMdlWrite
    FsRtlPrivateLock
    FsRtlProcessFileLock
    FsRtlRegisterUncProvider
    FsRtlRemoveLargeMcbEntry
    FsRtlRemoveMcbEntry
    FsRtlSplitLargeMcb
    FsRtlSyncVolumes
    FsRtlTruncateMcb
    FsRtlTruncateLargeMcb
    FsRtlUninitializeFileLock
    FsRtlUninitializeLargeMcb
    FsRtlUninitializeMcb
    FsRtlUninitializeOplock
    FsRtlInitializeTunnelCache
    FsRtlAddToTunnelCache
    FsRtlFindInTunnelCache
    FsRtlDeleteKeyFromTunnelCache
    FsRtlDeleteTunnelCache
    HalDispatchTable CONSTANT           // Data - use pointer for access
    HalPrivateDispatchTable CONSTANT    // Data - use pointer for access
    IoAcquireCancelSpinLock
    IoAcquireVpbSpinLock
    IoAdapterObjectType CONSTANT        // Data - use pointer for access
    IoDeviceHandlerObjectType CONSTANT  // Data - use pointer for access
    IoDeviceHandlerObjectSize CONSTANT  // Data - use pointer for access
    IoAllocateAdapterChannel
    IoAllocateController
    IoAllocateErrorLogEntry
    IoAllocateIrp
    IoAllocateMdl
    IoAssignResources
    IoAttachDevice
    IoAttachDeviceByPointer
    IoAttachDeviceToDeviceStack
    IoBuildAsynchronousFsdRequest
    IoBuildDeviceIoControlRequest
    IoBuildPartialMdl
    IoBuildSynchronousFsdRequest
    IoCallDriver
    IofCallDriver
    IoCancelIrp
    IoCheckDesiredAccess
    IoCheckEaBufferValidity
    IoCheckFunctionAccess
    IoCheckShareAccess
    IoCompleteRequest
    IofCompleteRequest
    IoConnectInterrupt
    IoCreateController
    IoCreateDevice
    IoCreateFile
    IoCreateNotificationEvent
    IoCreateStreamFileObject
    IoCreateSymbolicLink
    IoCreateSynchronizationEvent
    IoCreateUnprotectedSymbolicLink
    IoDeleteController
    IoDeleteDevice
    IoDeleteSymbolicLink
    IoDetachDevice
    IoDeviceObjectType CONSTANT         // Data - use pointer for access
    IoDisconnectInterrupt
    IoDriverObjectType CONSTANT         // Data - use pointer for access
    IoEnqueueIrp
    IoFastQueryNetworkAttributes
    IoFileObjectType CONSTANT           // Data - use pointer for access
    IoFreeController
    IoFreeIrp
    IoFreeMdl
    IoGetAttachedDevice
    IoGetBaseFileSystemDeviceObject
    IoGetConfigurationInformation
    IoGetCurrentProcess
    IoGetDeviceObjectPointer
#if _PNP_POWER_STUB_ENABLED_
    IoGetDeviceProperty
#endif
    IoGetDeviceToVerify
    IoGetFileObjectGenericMapping
    IoGetInitialStack
    IoGetRelatedDeviceObject
    IoGetRequestorProcess
    IoGetStackLimits=RtlpGetStackLimits
    IoGetTopLevelIrp
    IoInitializeIrp
    IoInitializeTimer
    IoIsOperationSynchronous
    IoIsSystemThread
    IoMakeAssociatedIrp
    IoOpenDeviceInstanceKey
    IoPageRead
    IoQueryDeviceDescription
    IoQueryDeviceEnumInfo
    IoQueryFileInformation
#if _PNP_POWER_STUB_ENABLED_
    IoQuerySystemInformation
#endif
    IoQueryVolumeInformation
    IoQueueThreadIrp
    IoRaiseHardError
    IoRaiseInformationalHardError
    IoReadOperationCount CONSTANT       // Data - use pointer for access
    IoReadTransferCount CONSTANT        // Data - use pointer for access
    IoRegisterDriverReinitialization
    IoRegisterFileSystem
    IoRegisterFsRegistrationChange
#if _PNP_POWER_STUB_ENABLED_
    IoRegisterPlugPlayNotification
#endif
    IoRegisterShutdownNotification
    IoReleaseCancelSpinLock
    IoReleaseVpbSpinLock
    IoRemoveShareAccess
#if _PNP_POWER_STUB_ENABLED_
    IoReportDeviceStatus
#endif
    IoReportHalResourceUsage
    IoReportResourceUsage
#if _PNP_POWER_STUB_ENABLED_
    IoSetDeviceProperty
#endif
    IoSetDeviceToVerify
    IoSetHardErrorOrVerifyDevice
    IoSetInformation
    IoSetShareAccess
    IoSetThreadHardErrorMode
    IoSetTopLevelIrp
    IoStartNextPacket
    IoStartNextPacketByKey
    IoStartPacket
    IoStartTimer
    IoStatisticsLock CONSTANT           // Data - use pointer for access
    IoStopTimer
    IoSynchronousPageWrite
    IoThreadToProcess
    IoUnregisterFileSystem
    IoUnregisterFsRegistrationChange
#if _PNP_POWER_STUB_ENABLED_
    IoUnregisterPlugPlayNotification
#endif
    IoUnregisterShutdownNotification
    IoUpdateShareAccess
    IoVerifyVolume
    IoWriteErrorLogEntry
    IoWriteOperationCount CONSTANT      // Data - use pointer for access
    IoWriteTransferCount CONSTANT       // Data - use pointer for access
    KdDebuggerEnabled    CONSTANT       // Data - use pointer for access
    KdDebuggerNotPresent CONSTANT       // Data - use pointer for access
    KdPollBreakIn
    KeAddSystemServiceTable
    KeAttachProcess
    KeBoostCurrentThread
    KeBugCheck
    KeBugCheckEx
    KeCancelTimer
    KeClearEvent
    KeConnectInterrupt
    KeDcacheFlushCount CONSTANT         // Data - use pointer for access
    KeDelayExecutionThread
    KeDetachProcess
    KeDeregisterBugCheckCallback
    KeDisconnectInterrupt
    KeEnterCriticalRegion
    KeEnterKernelDebugger
    KeFindConfigurationEntry
    KeFindConfigurationNextEntry
    KeFlushEntireTb
    KeIcacheFlushCount CONSTANT         // Data - use pointer for access
    KeInitializeDeviceQueue
    KeInitializeApc
    KeInitializeDpc
    KeInitializeEvent
    KeInitializeInterrupt
    KeInitializeMutant
    KeInitializeMutex
    KeInitializeQueue
    KeInitializeSemaphore
    KeInitializeTimer
    KeInitializeTimerEx
    KeInsertByKeyDeviceQueue
    KeInsertDeviceQueue
    KeInsertQueue
    KeInsertHeadQueue
    KeInsertQueueApc
    KeInsertQueueDpc
    KeLeaveCriticalRegion
    KeLoaderBlock CONSTANT              // Data - use pointer for access
    KeNumberProcessors CONSTANT         // Data - use pointer for access
    KeProfileInterrupt
    KeProfileInterruptWithSource
    KePulseEvent
    KeQuerySystemTime
    KeQueryTickCount
    KeQueryTimeIncrement
    KeRaiseUserException
    KeReadStateTimer
    KeReadStateEvent
    KeReadStateMutant
    KeReadStateMutex=KeReadStateMutant
    KeReadStateQueue
    KeReadStateSemaphore
    KeRegisterBugCheckCallback
    KeReleaseMutant
    KeReleaseMutex
    KeReleaseSemaphore
    KeRemoveByKeyDeviceQueue
    KeRemoveDeviceQueue
    KeRemoveEntryDeviceQueue
    KeRemoveQueue
    KeRemoveQueueDpc
    KeResetEvent
    KeRundownQueue
    KeServiceDescriptorTable CONSTANT   // Data - use pointer for access
    KeSetAffinityThread
    KeSetDmaIoCoherency
    KeSetEvent
    KeSetEventBoostPriority
    KeSetBasePriorityThread
    KeSetIdealProcessorThread
    KeSetImportanceDpc
    KeSetPriorityThread
    KeSetSwapContextNotifyRoutine;
    KeSetTargetProcessorDpc
    KeSetTimeIncrement
    KeSetTimer
    KeSetTimerEx
    KeSetTimeUpdateNotifyRoutine;
    KeSetThreadSelectNotifyRoutine;
    KeSynchronizeExecution
    KeTerminateThread
    KeTickCount CONSTANT                // Data - use pointer for access
    KeUserModeCallback
    KeUpdateRunTime
    KeUpdateSystemTime
    KeWaitForMultipleObjects
    KeWaitForSingleObject
    KeWaitForMutexObject=KeWaitForSingleObject
    KiAcquireSpinLock
    KiBugCheckData                  // Data - use pointer for access
    KiReleaseSpinLock
    KeInitializeSpinLock
    KeAcquireSpinLockAtDpcLevel
    KeReleaseSpinLockFromDpcLevel
    KeSetKernelStackSwapEnable
    LdrEnumResources
    LdrAccessResource
    LdrFindResource_U
    LdrFindResourceDirectory_U
    LpcRequestPort
    LsaCallAuthenticationPackage
    LsaDeregisterLogonProcess
    LsaFreeReturnBuffer
    LsaLogonUser
    LsaLookupAuthenticationPackage
    LsaRegisterLogonProcess
    MmAdjustWorkingSetSize
    MmAllocateContiguousMemory
#ifdef MEMPRINT
    MemPrint
    MemPrintInitialize
#endif
    MmAllocateNonCachedMemory
    MmBuildMdlForNonPagedPool
    MmCanFileBeTruncated
    MmCreateMdl
    MmCreateSection
    MmDbgTranslatePhysicalAddress
    MmDisableModifiedWriteOfSection
    MmFlushImageSection
    MmForceSectionClosed
    MmFreeContiguousMemory
    MmFreeNonCachedMemory
    MmGetPhysicalAddress
    MmGrowKernelStack
    MmIsAddressValid
    MmIsNonPagedSystemAddressValid
    MmIsRecursiveIoFault
    MmIsThisAnNtAsSystem
    MmLockPagableDataSection
    MmLockPagableSectionByHandle
    MmMapIoSpace
    MmMapLockedPages
    MmMapMemoryDumpMdl
    MmMapVideoDisplay
    MmMapViewOfSection
    MmMapViewInSystemSpace
    MmPageEntireDriver
    MmProbeAndLockPages
    MmQuerySystemSize
    MmResetDriverPaging
    MmSectionObjectType CONSTANT
    MmSecureVirtualMemory
    MmSetAddressRangeModified
    MmSetBankedSection
    MmSizeOfMdl
    MmUnlockPagableImageSection
    MmUnlockPages
    MmUnmapIoSpace
    MmUnmapLockedPages
    MmUnmapVideoDisplay
    MmUnmapViewOfSection
    MmUnmapViewInSystemSpace
    MmUnsecureVirtualMemory
    NlsAnsiCodePage CONSTANT            // Data - use pointer for access
    NlsLeadByteInfo CONSTANT            // Data - use pointer for access
    NlsOemLeadByteInfo CONSTANT         // Data - use pointer for access
    NlsMbCodePageTag CONSTANT           // Data - use pointer for access
    NlsMbOemCodePageTag CONSTANT        // Data - use pointer for access
    NtAddAtom
    NtAdjustPrivilegesToken
    NtAllocateLocallyUniqueId
    NtAllocateUuids
    NtAllocateVirtualMemory
    NtClose
    NtConnectPort
    NtCreateEvent
    NtCreateFile
    NtCreateSection
    NtDeleteAtom
    NtDeleteFile
    NtDeviceIoControlFile
    NtDuplicateObject
    NtDuplicateToken
    NtFindAtom
    NtFreeVirtualMemory
    NtFsControlFile
    NtGlobalFlag CONSTANT               // Data - use pointer for access
    NtLockFile
    NtMapViewOfSection
    NtNotifyChangeDirectoryFile
    NtOpenFile
    NtOpenProcess
    NtOpenProcessToken
    NtQueryDirectoryFile
    NtQueryEaFile
    NtQueryInformationAtom
    NtQueryInformationFile
    NtQueryInformationProcess
    NtQueryInformationToken
    NtQueryOleDirectoryFile
    //NtQueryQuotaInformationFile
    NtQuerySecurityObject
    NtQueryVolumeInformationFile
    NtReadFile
    NtRequestPort
    NtRequestWaitReplyPort
    NtSetEvent
    NtSetInformationFile
    NtSetInformationProcess
    NtSetInformationThread
    //NtSetQuotaInformationFile
    NtSetSecurityObject
    NtUnlockFile
    NtVdmControl
    NtWaitForSingleObject
    NtWriteFile
    ObAssignSecurity
    ObCheckCreateObjectAccess
    ObCheckObjectAccess
    ObCreateObject
    ObDereferenceObject
    ObfDereferenceObject
    ObFindHandleForObject
    ObGetObjectPointerCount
    ObGetObjectSecurity
    ObInsertObject
    ObMakeTemporaryObject
    ObOpenObjectByName
    ObOpenObjectByPointer
    ObQueryObjectAuditingByHandle
    ObQueryNameString
    ObReferenceObjectByHandle
    ObReferenceObjectByName
    ObReferenceObjectByPointer
    ObReleaseObjectSecurity
    ObSetSecurityDescriptorInfo
    ObfReferenceObject
    PfxFindPrefix
    PfxInitialize
    PfxInsertPrefix
    PfxRemovePrefix
    PoQueryPowerSequence
    PoSetDeviceIdleDetection
    PoRequestPowerChange
    ProbeForWrite
    PsAssignImpersonationToken
    PsChargePoolQuota
    PsCreateSystemProcess
    PsCreateSystemThread
    PsCreateWin32Process
    PsGetCurrentProcessId
    PsGetCurrentThreadId
    PsGetProcessExitTime
    PsGetVersion
    PsImpersonateClient
    PsInitialSystemProcess
    PsIsThreadTerminating
    PsEstablishWin32Callouts
    PsLookupProcessThreadByCid
    PsLookupProcessByProcessId
    PsLookupThreadByThreadId
    PsProcessType CONSTANT
    PsReferenceImpersonationToken
    PsReferencePrimaryToken
    PsReturnPoolQuota
    PsRevertToSelf
    PsSetCreateProcessNotifyRoutine
    PsSetCreateThreadNotifyRoutine
    PsSetLegoNotifyRoutine
    PsSetProcessPriorityByClass
    PsTerminateSystemThread
    PsThreadType CONSTANT
    RtlAddAce
    RtlAllocateAndInitializeSid
    RtlAllocateHeap
    RtlAddAccessAllowedAce
    RtlAddAtomToAtomTable
    RtlAnsiCharToUnicodeChar
    RtlAnsiStringToUnicodeSize=RtlxAnsiStringToUnicodeSize
    RtlAnsiStringToUnicodeString
    RtlAppendAsciizToString
    RtlAppendStringToString
    RtlAppendUnicodeStringToString
    RtlAppendUnicodeToString
    RtlAreAllAccessesGranted
    RtlAreAnyAccessesGranted
    RtlAreBitsClear
    RtlAreBitsSet
    RtlAssert
    RtlCaptureStackBackTrace
    RtlCharToInteger
    RtlCheckRegistryKey
    RtlClearAllBits
    RtlClearBits
    RtlCompareMemory
    RtlCompareMemoryUlong
    RtlCompareString
    RtlCompareUnicodeString
    RtlCompressBuffer
    RtlCompressChunks
    RtlConvertLongToLargeInteger
    RtlConvertUlongToLargeInteger
    RtlCopyLuid
    RtlCopyString
    RtlCopyUnicodeString
    RtlCreateAtomTable
    RtlCreateAcl
    RtlCreateHeap
    RtlCreateRegistryKey
    RtlCreateSecurityDescriptor
    RtlCreateUnicodeString
    RtlDecompressBuffer
    RtlDecompressChunks
    RtlDecompressFragment
    RtlDelete
    RtlDeleteAtomFromAtomTable
    RtlDeleteNoSplay
    RtlDeleteElementGenericTable
    RtlDeleteRegistryValue
    RtlDescribeChunk
    RtlDestroyAtomTable
    RtlDestroyHeap
    RtlDowncaseUnicodeString
    RtlEmptyAtomTable
    RtlEnlargedIntegerMultiply
    RtlEnlargedUnsignedDivide
    RtlEnlargedUnsignedMultiply
    RtlEnumerateGenericTable
    RtlEnumerateGenericTableWithoutSplaying
    RtlEqualLuid
    RtlEqualString
    RtlEqualUnicodeString
    RtlExtendedIntegerMultiply
    RtlExtendedLargeIntegerDivide
    RtlExtendedMagicDivide
    RtlFillMemory
    RtlFillMemoryUlong
    RtlFindClearBits
    RtlFindClearBitsAndSet
    RtlFindFirstRunClear
    RtlFindFirstRunSet
    RtlFindLongestRunClear
    RtlFindLongestRunSet
    RtlFindMessage
    RtlFindSetBits
    RtlFindSetBitsAndClear
    RtlFindUnicodePrefix
    RtlFormatCurrentUserKeyPath
    RtlFreeAnsiString
    RtlFreeHeap
    RtlFreeOemString
    RtlFreeUnicodeString
    RtlGenerate8dot3Name
    RtlGetCallersAddress
    RtlGetCompressionWorkSpaceSize
    RtlGetDefaultCodePage
    RtlGetElementGenericTable
    RtlImageNtHeader
    RtlInitAnsiString
    RtlInitString
    RtlInitUnicodeString
    RtlInitializeBitMap
    RtlInitializeGenericTable
    RtlInitializeUnicodePrefix
    RtlInsertElementGenericTable
    RtlInsertUnicodePrefix
    RtlIntegerToChar
    RtlIntegerToUnicodeString
    RtlIsNameLegalDOS8Dot3
    RtlLargeIntegerAdd
    RtlLargeIntegerArithmeticShift
    RtlLargeIntegerDivide
    RtlLargeIntegerNegate
    RtlLargeIntegerShiftLeft
    RtlLargeIntegerShiftRight
    RtlLargeIntegerSubtract
    RtlLengthSecurityDescriptor
    RtlLookupAtomInAtomTable
    RtlLookupElementGenericTable
    RtlMapGenericMask
    RtlMoveMemory
    RtlMultiByteToUnicodeN
    RtlMultiByteToUnicodeSize
    RtlNextUnicodePrefix
    RtlNtStatusToDosError
    RtlNtStatusToDosErrorNoTeb
    RtlNumberGenericTableElements
    RtlNumberOfClearBits
    RtlNumberOfSetBits
    RtlOemStringToCountedUnicodeString
    RtlOemStringToUnicodeSize=RtlxOemStringToUnicodeSize
    RtlOemStringToUnicodeString
    RtlOemToUnicodeN
    RtlPinAtomInAtomTable
    RtlPrefixString
    RtlPrefixUnicodeString
    RtlQueryAtomInAtomTable
    RtlQueryRegistryValues
    RtlQueryTimeZoneInformation
    RtlRaiseException
    RtlRemoveUnicodePrefix
    RtlReserveChunk
    RtlRandom
    RtlSecondsSince1970ToTime
    RtlSecondsSince1980ToTime
    RtlSetAllBits
    RtlSetBits
    RtlSetDaclSecurityDescriptor
    RtlSetSaclSecurityDescriptor
    RtlSetTimeZoneInformation
    RtlSplay
    RtlTimeFieldsToTime
    RtlTimeToSecondsSince1970
    RtlTimeToSecondsSince1980
    RtlTimeToTimeFields
    RtlUnicodeStringToAnsiSize=RtlxUnicodeStringToAnsiSize
    RtlUnicodeStringToAnsiString
    RtlUnicodeToMultiByteN
    RtlUnicodeToMultiByteSize
    RtlUnicodeToOemN
    RtlUnicodeStringToOemSize=RtlxUnicodeStringToOemSize
    RtlUnicodeStringToOemString
    RtlUnicodeStringToCountedOemString
    RtlCustomCPToUnicodeN
    RtlUnicodeToCustomCPN
    RtlInitCodePageTable
    RtlUnicodeStringToInteger
    RtlUnwind
    RtlUpcaseUnicodeChar
    RtlUpcaseUnicodeString
    RtlUpcaseUnicodeStringToAnsiString
    RtlUpcaseUnicodeToMultiByteN
    RtlUpcaseUnicodeToOemN
    RtlUpcaseUnicodeStringToOemString
    RtlUpcaseUnicodeStringToCountedOemString
    RtlUpcaseUnicodeToCustomCPN
    RtlUpperChar
    RtlUpperString
    RtlValidSecurityDescriptor
    RtlWriteRegistryValue
    RtlxAnsiStringToUnicodeSize
    RtlxOemStringToUnicodeSize
    RtlxUnicodeStringToAnsiSize
    RtlxUnicodeStringToOemSize
    RtlZeroHeap
    RtlZeroMemory
    SeAccessCheck
    SeAssignSecurity
    SeCaptureSecurityDescriptor
    SeCaptureSubjectContext
    SeCloseObjectAuditAlarm
    SeCreateAccessState
    SeCreateClientSecurity
    SeDeassignSecurity
    SeDeleteAccessState
    SeDeleteObjectAuditAlarm
    SeImpersonateClient
    SeLockSubjectContext
    SeOpenObjectAuditAlarm
    SeOpenObjectForDeleteAuditAlarm
    SePrivilegeCheck
    SePrivilegeObjectAuditAlarm
    SeQuerySecurityDescriptorInfo
    SeReleaseSecurityDescriptor
    SeReleaseSubjectContext
    SeSetSecurityDescriptorInfo
    SeSinglePrivilegeCheck
    SeTokenType
    SeTokenImpersonationLevel
    SeUnlockSubjectContext
    SeAppendPrivileges
    SeFreePrivileges
    SeAuditingFileEvents
    SeAuditingFileOrGlobalEvents
    SeSetAccessStateGenericMapping
    SeQueryAuthenticationIdToken
    SeValidSecurityDescriptor
    SeRegisterLogonSessionTerminatedRoutine
    SeUnregisterLogonSessionTerminatedRoutine
    SeMarkLogonSessionForTerminationNotification

    //
    // System default DACLs
    //
    //          SePublicDefaultDacl - is for protecting things so that
    //              normal users can use it.
    //
    //          SeSystemDefaultDacl - is for protecting things so that
    //              only the system (and administrators) can get to it.
    //

    SePublicDefaultDacl CONSTANT
    SeSystemDefaultDacl CONSTANT

    //
    // Pointer to structure containing security
    // exports
    //

    //
    // Use SeEnableAccessToExports() before
    // using (see se.h)
    //

    SeExports CONSTANT


    ZwAccessCheckAndAuditAlarm
    ZwAlertThread
    ZwAllocateVirtualMemory
    ZwConnectPort
    ZwClearEvent
    ZwClose
    ZwCloseObjectAuditAlarm
    ZwCreateDirectoryObject
    ZwCreateEvent
    ZwCreateFile
    ZwCreateKey
    ZwCreateSection
    ZwCreateSymbolicLinkObject
    ZwDeleteFile
    ZwDeleteKey
    ZwDeleteValueKey
    ZwDeviceIoControlFile
    ZwDisplayString
    ZwDuplicateObject
    ZwDuplicateToken
    ZwEnumerateKey
    ZwEnumerateValueKey
    ZwFlushInstructionCache
    ZwFlushKey
    ZwFreeVirtualMemory
    ZwFsControlFile
    ZwLoadDriver
    ZwLoadKey
    ZwMakeTemporaryObject
    ZwMapViewOfSection
    ZwNotifyChangeKey
    ZwOpenDirectoryObject
    ZwOpenEvent
    ZwOpenFile
    ZwOpenKey
    ZwOpenProcess
    ZwOpenProcessToken
    ZwOpenThread
    ZwOpenThreadToken
    ZwOpenSection
    ZwOpenSymbolicLinkObject
    ZwPulseEvent
    ZwQueryDefaultLocale
    ZwQueryDirectoryFile
    ZwQueryInformationFile
    ZwQueryInformationProcess
    ZwQueryInformationToken
    ZwQueryKey
    ZwQueryObject
    ZwQuerySection
    ZwQuerySecurityObject
    ZwQuerySymbolicLinkObject
    ZwQuerySystemInformation
    ZwQueryInformationToken
    ZwQueryVolumeInformationFile
    ZwQueryValueKey
    ZwReadFile
    ZwReplaceKey
    ZwRequestWaitReplyPort
    ZwResetEvent
    ZwSaveKey
    ZwSetDefaultLocale
    ZwSetEvent
    ZwSetInformationFile
    ZwSetInformationObject
    ZwSetInformationProcess
    ZwSetInformationThread
    ZwSetSystemInformation
    ZwSetSystemTime
    ZwSetValueKey
    ZwTerminateProcess
    ZwUnmapViewOfSection
    ZwUnloadDriver
    ZwUnloadKey
    ZwWaitForMultipleObjects
    ZwWaitForSingleObject
    ZwWriteFile
    ZwYieldExecution

    RtlAbsoluteToSelfRelativeSD
    RtlConvertSidToUnicodeString
    RtlCopySid
    RtlEqualSid
    RtlGetDaclSecurityDescriptor
    RtlGetGroupSecurityDescriptor
    RtlGetOwnerSecurityDescriptor
    RtlInitializeSid
    RtlLengthRequiredSid
    RtlLengthSid
    RtlSetGroupSecurityDescriptor
    RtlSetOwnerSecurityDescriptor
    RtlSubAuthorityCountSid
    RtlSubAuthoritySid
    RtlValidSid

    NtBuildNumber CONSTANT

//
// ntcrt.lib
//
    _itoa
    _purecall
    _snprintf
    _snwprintf
    _stricmp
    _strlwr
    _strnicmp
    _strnset
    _strrev
    _strset
    _strupr
    _vsnprintf
    _wcsicmp
    _wcslwr
    _wcsnicmp
    _wcsnset
    _wcsrev
    _wcsupr
    isdigit
    islower
    isprint
    isspace
    isupper
    isxdigit
    mbstowcs
    mbtowc
    memchr
    qsort
    rand
    sprintf
    srand
    strcat
    strchr
    strcmp
    strcpy
    strlen
    strncat
    strncmp
    strncpy
    strrchr
    strspn
    strstr
    swprintf
    tolower
    towlower
    toupper
    towupper
    vsprintf
    wcscat
    wcschr
    wcscmp
    wcscpy
    wcscspn
    wcslen
    wcsncat
    wcsncmp
    wcsncpy
    wcsrchr
    wcsspn
    wcsstr
    wcstombs
    wctomb

//
// Hack-o-rama to support the stupid ATI miniport driver.
// Get rid of these if we can someday.
//
    atol
    atoi