NO

Author Topic: process.h _execvp  (Read 2147 times)

Offline TimoVJL

  • Global Moderator
  • Member
  • *****
  • Posts: 2091
process.h _execvp
« on: July 15, 2011, 10:27:28 AM »
In process.h this
Code: [Select]
intptr_t __cdecl _execvp(const char *, char * const *);should be ?
Code: [Select]
intptr_t __cdecl _execvp(const char *, const char * const *);Look at  http://msdn.microsoft.com/en-us/library/3xw6zy53
May the source be with you