문제

Is there an analogue of the function GetColorDirectory?

Or should I just call through a DLL?

The purpose is to get the path to the system directory with color profiles

도움이 되었습니까?

해결책

As per MSDN you call it using the API:

[DllImport(DllImport.Mscms, CharSet = CharSet.Auto, BestFitMapping = false)]
internal static extern bool GetColorDirectory(IntPtr pMachineName, StringBuilder pBuffer, ref uint pdwSize);
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top