RemoveProp function user32

int RemoveProp(
  1. int hWnd,
  2. Pointer<Utf16> lpString
)

Removes an entry from the property list of the specified window. The specified character string identifies the entry to be removed.

HANDLE RemovePropW(
  HWND    hWnd,
  LPCWSTR lpString
);

Implementation

int RemoveProp(int hWnd, Pointer<Utf16> lpString) =>
    _RemoveProp(hWnd, lpString);