dllhost.c 286 B

1234567891011121314151617
  1. #include "wine/debug.h"
  2. #include "windef.h"
  3. WINE_DEFAULT_DEBUG_CHANNEL(dllhost);
  4. int __cdecl wmain(int argc, WCHAR *argv[])
  5. {
  6. int i;
  7. WINE_FIXME("stub:");
  8. for (i = 0; i < argc; i++)
  9. WINE_FIXME(" %s", wine_dbgstr_w(argv[i]));
  10. WINE_FIXME("\n");
  11. return 0;
  12. }