imm: Keep track of context associations between HWND and HIMC

Alexandre Julliard julliard at winehq.org
Tue Apr 1 06:32:35 CDT 2008


Aric Stewart <aric at codeweavers.com> writes:

> @@ -93,12 +93,21 @@ typedef struct _tagTRANSMSG {
>      LPARAM lParam;
>  } TRANSMSG, *LPTRANSMSG;
>  
> +typedef struct _tagContextAssociation {
> +    struct list entry;
> +
> +    HWND    *hwnds;
> +    UINT    wndCount;
> +    HIMC    context;
> +} ContextAssociation;

Wouldn't it be a lot easier to store the HIMC in a window property?

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list