FSlotHandle := CreateMailSlot(PChar('//./mailslot/' + MailSlotName), 0, MAILSLOT_WAIT_FOREVER, nil);
//./mailslot/ 就是 本地机器的 mailslot 文件夹,如果对方机器是 p11,
那么就是 //p11/mailslot/ 了。
MailSlotName 是个字符串,你随便写一个就行,如
FSlotHandle := CreateMailSlot(PChar('//./mailslot/' +'mytest'), 0, MAILSLOT_WAIT_FOREVER, nil);