Skip to content
Snippets Groups Projects
Commit 1748f0de authored by André Zwing's avatar André Zwing Committed by Alexandre Julliard
Browse files

ntdll: Add default COM device for DragonFly BSD.

parent 1013d2e7
Branches
Tags
No related merge requests found
......@@ -320,6 +320,13 @@ static char *get_default_com_device( int num )
strcpy( ret, "/dev/cuad0" );
ret[strlen(ret) - 1] = '0' + num - 1;
}
#elif defined(__DragonFly__)
ret = RtlAllocateHeap( GetProcessHeap(), 0, sizeof("/dev/cuaa0") );
if (ret)
{
strcpy( ret, "/dev/cuaa0" );
ret[strlen(ret) - 1] = '0' + num - 1;
}
#else
FIXME( "no known default for device com%d\n", num );
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment