rundll.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * 16-bit rundll implementation
  3. *
  4. * Copyright 2009 Alexandre Julliard
  5. * Copyright 2010 Detlef Riekenberg
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  20. */
  21. #include <stdarg.h>
  22. #include <stdio.h>
  23. #include "wine/winbase16.h"
  24. #include "wine/debug.h"
  25. WINE_DEFAULT_DEBUG_CHANNEL(rundll);
  26. /**************************************************************************
  27. * RUNDLL entry point
  28. */
  29. WORD WINAPI WinMain16( HINSTANCE16 inst, HINSTANCE16 prev, LPSTR cmdline, WORD show )
  30. {
  31. int len = GetSystemDirectoryA( NULL, 0 ) + sizeof("\\rundll32.exe ") + strlen(cmdline);
  32. char *buffer = HeapAlloc( GetProcessHeap(), 0, len );
  33. GetSystemDirectoryA( buffer, len );
  34. strcat( buffer, "\\rundll32.exe " );
  35. strcat( buffer, cmdline );
  36. WINE_TRACE( "starting %s\n", wine_dbgstr_a(buffer) );
  37. WinExec16( buffer, show );
  38. HeapFree( GetProcessHeap(), 0, buffer );
  39. ExitThread( 0 );
  40. }