LRESULT   A 32-bit value returned from a window procedure or callback function.CALLBACK Use in place of FAR PASCAL in application callback routines such as window procedures and dialog procedures. UINT   A 16-bit unsigned integer on Windows versions 3.0 and 3.1; a 32-bit unsigned integer on Win32.

解决方案 »

  1.   

    1。回调函数,(被windows调用)
    2。unsigned int
      

  2.   

    CALLBACK是回调函数,具体说来,它不是你自己调用的,而是由你提供,而有操作系统调用的函数,一般是满足某种条件时由系统调用。所以它不能有this指针,只能是全局函数和类的静态成员函数。UINT就是unsigned int,它属于windows的一套类型,与我们常见的C类型大同小异。《windows核心编程》