views:

11

answers:

1

Hello,

I am developping a Mac OS X app using the undocummented CGSSetWindowWarp function. Everything is ok when compiing in 32 bits but it stop to work (window dissapear completly) when compiling in 64 bits. Do you have any idée where the issue can be?

Thanks in advance for your help

Regards,

+1  A: 

Are you sure about the function signature? The size of the parameters might have changed / might not have changed but int needs to be short, etc.

Or they might have stopped supporting that function altogether.

Yuji
This function is used by the dock for the "genie" minimizing effect but you're right, maybe something has changed. What is strange is that in 32 bits it works fine.
AP