re: kernel32: CreateProcessA should not call CreateProcessW directly

2011-03-16 Thread Dan Kegel
Does that work when compiling with -O3 ?
Maybe you need a noinline attribute,
http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html#Function-Attributes




Re: kernel32: CreateProcessA should not call CreateProcessW directly

2011-03-16 Thread Maarten Lankhorst

Hi Dan,

Op 16-03-11 20:06, Dan Kegel schreef:

Does that work when compiling with -O3 ?
Maybe you need a noinline attribute,
http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html#Function-Attributes


I don't think it will ever be inlined because of the calling convention 
differences. Doing a dumb -O3 to be sure confirms it.


Cheers,
Maarten.