Andrej Mitrovic: > HANDLE is defined as: > typedef void* HANDLE; >... > I can't send this to a background thread via send() since typedef > creates a new type. typedef is deprecated in D2. Try using an alias. Bye, bearophile