发布网友 发布时间:2022-05-26 11:03
共1个回答
热心网友 时间:2023-09-10 11:44
explorer显示的是application title, 这是对的。不信试试。在Delphi的win32 SDK中有这样的一段:Copies the application title to the specified buffer.mov ah, 16h ; Windows multiplex functionmov al, 8Eh ; VM Titlemov di, seg AppTitle ; see belowmov es, dimov di, offset AppTitlemov cx, Size ; see belowmov dx, 2 ; Get Application Titleint 2Fhcmp ax, 1je success ParametersAppTitleAddress of a buffer that receives the application title. This parameter must not be zero.SizeSize, in bytes, of the buffer pointed to by AppTitle. Return ValueReturns 1 in the AX register if successful or zero otherwise.RemarksGet Application Title copies as much of the title as possible, but never more than the specified number of bytes. The function always appends a terminating null character to the title in the buffer.