__CFStringMakeConstantString() private method

private __CFStringMakeConstantString ( string cStr ) : IntPtr
cStr string
return System.IntPtr
Exemplo n.º 1
0
        internal static void SetWindowTitle(IntPtr windowRef, string title)
        {
            IntPtr title1 = API.__CFStringMakeConstantString(title);

            API.SetWindowTitleWithCFString(windowRef, title1);
        }