我安装的操作系统是windows 2003 server ,请问系统本身带的那些DLL中的函数类型,有多少种?什么地方有对这些类型的详细解释?我有时搞不清楚那些参数类型是哪些英文单词的缩写,比如说,HWND估计是handler windows这两个单词的缩写.那LPCTSTR是什么哪些单词的缩写呢?大家是不是也有这样的困惑呢?

解决方案 »

  1.   

    long pointer const string
      

  2.   

    long pointer const tall string
      

  3.   

    long pointer const string
      

  4.   

    Long Pointer Const STRing还缺个T啊
    请问楼楼上的朋友,你那个tall是什么意思啊?
      

  5.   

    long pointer const TCHAR type string
      

  6.   

    TCHAR 表示随是否定义UNICODE而不同,定义了UNICODE则表示wchar_t,没定义则为char
      

  7.   

    Long Pointer Const TCHAR STRing.
      

  8.   


    HWND是"Handler of WiNDows"的缩写
    UINT是"Unsigned INT"的缩写
    那LPCTSTR是什么的缩写呢?如果您知道是什么的缩写,麻烦您在把含义讲讲.谢谢帮助
      

  9.   

    CloudWater(秋云开水),ddszhan(高等数学) 都已经说了正确答案,你还问什么啊?
      

  10.   

    LPCTSTR   A 32-bit pointer to a constant character string that is portable for Unicode and DBCS.
      

  11.   

    Data Types
    This topic lists the data types most commonly used in the Microsoft Foundation Class Library. Most of the data types are exactly the same as those in the Windows Software Development Kit (SDK), while others are unique to MFC.Commonly used Windows SDK and MFC data types are as follows: BOOL   A Boolean value.
    BSTR   A 32-bit character pointer.
    BYTE   An 8-bit integer that is not signed.
    COLORREF   A 32-bit value used as a color value.
    DWORD   A 32-bit unsigned integer or the address of a segment and its associated offset.
    LONG   A 32-bit signed integer.
    LPARAM   A 32-bit value passed as a parameter to a window procedure or callback function.
    LPCSTR   A 32-bit pointer to a constant character string.
    LPSTR   A 32-bit pointer to a character string.
    LPCTSTR   A 32-bit pointer to a constant character string that is portable for Unicode and DBCS.
    LPTSTR   A 32-bit pointer to a character string that is portable for Unicode and DBCS.
    LPVOID   A 32-bit pointer to an unspecified type.
    LRESULT   A 32-bit value returned from a window procedure or callback function.
    UINT   A 16-bit unsigned integer on Windows versions 3.0 and 3.1; a 32-bit unsigned integer on Win32.
    WNDPROC   A 32-bit pointer to a window procedure.
    WORD   A 16-bit unsigned integer.
    WPARAM   A value passed as a parameter to a window procedure or callback function: 16 bits on Windows versions 3.0 and 3.1; 32 bits on Win32. 
    Data types unique to the Microsoft Foundation Class Library include the following: POSITION   A value used to denote the position of an element in a collection; used by MFC collection classes.
    LPCRECT   A 32-bit pointer to a constant (nonmodifiable) RECT structure. --------------------------------------------------------------------------------
    Send feedback to MSDN.Look here for MSDN Online resources.