Createthread function common error cannot convert parameter 3 from 'unsigned long (void *) 'to 'U

Source: Internet
Author: User

Error c2664: 'createthread': cannot convert parameter 3 from 'unsigned long (void *) 'to 'unsigned long (_ stdcall *) (void *)'

Solution:

(1) If the thread is executing a member function of the class, it must be declared as a static function using static.
For example:
Class echo
{
Static DWORD winapi threadfunc (lpvoid pvoid)
......
......
}

(2) global functions are generally called.

When we use createthread (null, 0, threadproc, null, 0, null) to create a thread, this function requires the function address in the new thread, there are two common solutions:

1. Declare the new thread function we want to call to DWORD winapi threadproc (lpvoid lpparameter ).

2. We can declare the new thread function as a member function in the class: static DWORD winapi threadproc (lpvoid lpparameter)

However, when we write incorrectly, error c2664: 'createthread': cannot convert parameter 3 from 'unsigned long (void *) may often occur *) the question of 'to 'unsigned long (_ stdcall *) (void *)' is also annoying for our beginners,

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.