Re: winebuild: Add an "x86_64" flag
Robert Shearman <rob(a)codeweavers.com> writes:
ChangeLog: Add an "x86_64" flag in winebuild so we can export 64-bit-only functions in a 64-bit build.
Are there really enough functions that would need this to justify adding a new flag? -- Alexandre Julliard julliard(a)winehq.org
Alexandre Julliard wrote:
Robert Shearman <rob(a)codeweavers.com> writes:
ChangeLog: Add an "x86_64" flag in winebuild so we can export 64-bit-only functions in a 64-bit build.
Are there really enough functions that would need this to justify adding a new flag?
Get/SetWindowLongPtr in user32, RtlUnwindEx in ntdll, NdrClientCall3 in rpcrt4. These are the ones I have noticed so far. -- Rob Shearman
Robert Shearman <rob(a)codeweavers.com> writes:
Alexandre Julliard wrote:
Are there really enough functions that would need this to justify adding a new flag?
Get/SetWindowLongPtr in user32, RtlUnwindEx in ntdll, NdrClientCall3 in rpcrt4. These are the ones I have noticed so far.
These sound like they would need a win64 flag, they should be implemented on all 64-bit platforms, not only x86_64. But we can probably just as well export them on 32-bit too and avoid the flag. -- Alexandre Julliard julliard(a)winehq.org
participants (2)
-
Alexandre Julliard -
Robert Shearman