GetClassName (coredll)
Last changed: -212.119.178.90

.
Summary
TODO - a short description

C# Signature:

   [DllImport("coredll.dll")]
   public static extern int GetClassName(IntPtr hwnd, StringBuilder buf, int nMaxCount);

VB Signature:

Declare Function GetClassName Lib "coredll.dll" (TODO) As TODO

User-Defined Types:

None.

Notes:

None.

Sample Code:

   StringBuilder strClassName = new StringBuilder(256);
   IntPtr hWnd = GetDesktopWindow();
   GetClassName(hWnd, strClassName, strClassName.Capacity);

Documentation