search for: v_depend

Displaying 1 result from an estimated 1 matches for "v_depend".

Did you mean: depend
2007 Aug 31
0
[ win32utils-Bugs-13560 ] Service dependencies has wierd string.
...tensions ns Service e Service ce I debugged service.c and service.h and found something wrong. I modified the function "rb_get_dependencies" from service.h like following and it works fine. static VALUE rb_get_dependencies(LPTSTR lpDependencies){ VALUE v_dependencies = rb_ary_new(); if(lpDependencies){ TCHAR* pszDepend = 0; int i = 0; pszDepend = &lpDependencies[i]; while(*pszDepend != 0){ rb_ary_push(v_dependencies, rb_str_new2(pszDepend)); //i += _tcslen(lpDependencies) + 1; <-- Ori...