WdbgExts 輸入和輸出
本主題提供如何使用 WdbgExts API 執行輸入和輸出的簡短概觀。 如需偵錯工具引擎中輸入和輸出資料流程的概觀,請參閱本檔的偵錯工具引擎概觀一節中的輸入和輸出。
dprintf函式的運作方式類似于標準 C printf 函式,並將格式化的字串列印至 [偵錯工具命令] 視窗,或更精確地將格式化字串傳送至輸出回呼。 若要從偵錯工具引擎讀取一行輸入,請使用 函式 GetInputLine。
若要檢查使用者起始的中斷,請使用 CheckControlC。 此函式應該用於迴圈中,以判斷使用者是否嘗試取消延伸模組的執行。
For a more powerful input and output API, see Using Input and Output in the Using the Debugger Engine API section of this documentation.