Dimi Paun wrote:
> if you *really* want to do it:
> -- at compile time:
> #ifdef __WINE__
> ....
> #endif
>
> -- at runtime:
> if( GetProcAddress(LoadLibrary("kernel32"), "wine_get_unix_file_name")
> {
> .....
> }
>
much appreciated, cdr