Displaying 1 result from an estimated 1 matches for "rb_get_dependencies".
Did you mean:
_rb_get_dependencies
2007 Aug 31
0
[ win32utils-Bugs-13560 ] Service dependencies has wierd string.
...cSs
Ndisuio
o
calSystem
tem
reless Zero Configuration
Zero Configuration
Configuration
uration
n
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...