__CFStringMakeConstantString() 개인적인 메소드

private __CFStringMakeConstantString ( string cStr ) : IntPtr
cStr string
리턴 System.IntPtr
예제 #1
0
        internal static void SetWindowTitle(IntPtr windowRef, string title)
        {
            IntPtr title1 = API.__CFStringMakeConstantString(title);

            API.SetWindowTitleWithCFString(windowRef, title1);
        }