On Mon, Jul 27, 2009 at 09:11:34PM +0200, Nicolas Palix wrote: > > Remove typedef HANDLE which aliases a void pointer and use void * > anywhere HANDLE was used. No, I would like to change this to be the "real" pointer that the HANDLE was used for, instead of just a void pointer. These need to point to real structures. I did this already for the locks, and can be done for pretty much everything else as well. > -int WorkQueueQueueWorkItem(HANDLE hWorkQueue, PFN_WORKITEM_CALLBACK workItem, void* context) > +int WorkQueueQueueWorkItem(void *hWorkQueue, PFN_WORKITEM_CALLBACK workItem, void *context) > { > WORKQUEUE *wq = (WORKQUEUE *)hWorkQueue; Here's an example. This should really be a pointer to a "work queue" and not a void pointer at all. Changes like that would be gladly accepted. thanks, greg k-h -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html