首页 文章

Windows 98 SE - 从16位控制台应用程序调用OutputDebugString

提问于
浏览
1

我希望能够从Turbo Pascal 7.0控制台模式程序中调用 OutputDebugString . 主机PC正在运行Windows98,据我所知,它支持 OutputDebugString . 但是,我找不到任何声明入口点并且可以与TPC或BPC编译的头文件 .

SysInternals实用程序DebugView可以显示来自Win16系统的调试消息,所以我相信它的结尾是有序的 . 根据SysInternals文档:

DebugView Capture
Under Windows 95, 98, and Me DebugView will capture output from the following sources:

    Win32       OutputDebugString
    Win16       OutputDebugString
    Kernel-mode Out_Debug_String
    Kernel-mode _Debug_Printf_Service

我搜索了TP7文档,字符串 dll 没有出现在任何地方 . 任何人都可以建议如何调用 OutputDebugString ,或者甚至可能?

1 回答

  • 0

    根据this,它应该在Kernel32.dll(Winbase.h / Windows.h . )中 .

相关问题