mirror of
https://github.com/intelpt/WindowsIntelPT
synced 2026-06-08 14:50:14 +00:00
21 lines
520 B
Modula-2
21 lines
520 B
Modula-2
; Windows Intel Processor Trace (PT) Driver
|
|
; Filename: Exports.def
|
|
; Defines all the exported functions of the kernel driver, used for tracing Kernel code
|
|
; Last revision: 01/06/2016
|
|
LIBRARY WindowsPtDriver
|
|
|
|
EXPORTS
|
|
IntelPtCheckCpuSupport = CheckIntelPtSupport
|
|
IntelPtAllocBuffer
|
|
IntelPtAddBufferPmi
|
|
IntelPtRemoveBufferPmi
|
|
IntelPtPauseResumeTrace = PauseResumeTrace
|
|
IntelPtStopTrace
|
|
IntelPtFreeBuffer = FreePtBuffer
|
|
IntelPtRegisterPmiHandler
|
|
IntelPtRemovePmiHandler
|
|
IntelPtSetOptions
|
|
IntelPtGetOptions
|
|
|
|
|