plugins/consoles/vt100cons/src/tcp/vtc_tcp.cpp
changeset 30 35cb3fe43f60
parent 0 7f656887cf89
equal deleted inserted replaced
29:9a2198517f48 30:35cb3fe43f60
   100 	VA_LIST list;
   100 	VA_LIST list;
   101 	VA_START(list, aFmt);
   101 	VA_START(list, aFmt);
   102 	TBuf<0x100> buf;
   102 	TBuf<0x100> buf;
   103 	buf.AppendFormatList(aFmt, list, &overflow);
   103 	buf.AppendFormatList(aFmt, list, &overflow);
   104 
   104 
   105 	if (iUnderlyingConsole)
   105 	if (UnderlyingConsole())
   106 		{
   106 		{
   107 		Message(EInformation, buf);
   107 		Message(EInformation, buf);
   108 		// when using a console, the accept can be cancelled by hitting ctrl-c
   108 		// when using a console, the accept can be cancelled by hitting ctrl-c
   109 		return KErrNotSupported;
   109 		return KErrNotSupported;
   110 		}
   110 		}