Hello,
i would like to move USER functions of the type
$type WINAPI $function16(@args) { return $function(@args); }
from windows/*.c to dlls/user/user16.c but i don't know if that's the right place to put them because there are already some dlls/user/*16.c files.
bye michael
Michael Stefaniuc mstefani@redhat.de writes:
from windows/*.c to dlls/user/user16.c but i don't know if that's the right place to put them because there are already some dlls/user/*16.c files.
The ones dealing with windows and messages should be in wnd16.c and msg16.c respectively; you can put all the rest into user16.c. If it gets too large we can always split it later on.