rfc: 16bit USER function
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 Tel.: +49-711-96437-199 System Administration Fax.: +49-711-96437-111 Red Hat GmbH Email: mstefani(a)redhat.com Hauptstaetterstr. 58 http://www.redhat.de/ D-70178 Stuttgart
Michael Stefaniuc <mstefani(a)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. -- Alexandre Julliard julliard(a)winehq.com
participants (2)
-
Alexandre Julliard -
Michael Stefaniuc