I am updating my SIV program (http://rh-software.com/) to work with Wine and would like to be able to display the Wine Version Number. Is there an API that allows me to read it please ? Thank you, Ray.
On Sat, Sep 5, 2009 at 1:18 PM, red-ray<wineforum-user at winehq.org> wrote:> I am updating my SIV program (http://rh-software.com/) to work with Wine and would like to be able to display the Wine Version Number. ?Is there an API that allows me to read it please ? > Thank you, Ray.NTDLL_wine_get_version -- -Austin
Hi Austin, Thank you for the pointer. I defined and used the following which all work sell. CONST CHAR *( CDECL *pwine_get_version )( VOID ); CONST CHAR *( CDECL *pwine_get_build_id )( VOID ); VOID ( CDECL *pwine_get_host_version )( CONST CHAR **sys, CONST CHAR **rel ); Regards, Ray