cadencii.win32.GetFullPathNameW C# (CSharp) Method

GetFullPathNameW() private method

private GetFullPathNameW ( [ lpFileName, DWORD nBufferLength, [ lpBuffer, [ lpFilePart ) : DWORD
lpFileName [
nBufferLength DWORD
lpBuffer [
lpFilePart [
return DWORD
        public static extern DWORD GetFullPathNameW(
            [MarshalAs( UnmanagedType.LPWStr )]
            string lpFileName,
            DWORD nBufferLength,
            [MarshalAs( UnmanagedType.LPWStr )][Out]
            StringBuilder lpBuffer,
            [Out]
            IntPtr lpFilePart
        );
        
win32