Ejemplo n.º 1
0
 public bool IIPSFindNextFile(uint findHandle, ref IIPS_FIND_FILE_INFO pInfo)
 {
     if (this.mDataQuery == IntPtr.Zero)
     {
         return(false);
     }
     return(IIPSFindNextFile(this.mDataQuery, findHandle, ref pInfo) > 0);
 }
Ejemplo n.º 2
0
 public uint IIPSFindFirstFile(uint fileId, ref IIPS_FIND_FILE_INFO pInfo)
 {
     if (this.mDataQuery == IntPtr.Zero)
     {
         return(0);
     }
     return(IIPSFindFirstFile(this.mDataQuery, fileId, ref pInfo));
 }
Ejemplo n.º 3
0
        public bool IIPSFindNextFile(System.UInt32 findHandle, ref IIPS_FIND_FILE_INFO pInfo)
        {
            if (mDataQuery == System.IntPtr.Zero)
            {
                return(false);
            }

            return(IIPSFindNextFile(mDataQuery, findHandle, ref pInfo) > 0);
        }
Ejemplo n.º 4
0
        public System.UInt32 IIPSFindFirstFile(System.UInt32 fileId, ref IIPS_FIND_FILE_INFO pInfo)
        {
            if (mDataQuery == System.IntPtr.Zero)
            {
                return(0);
            }

            return(IIPSFindFirstFile(mDataQuery, fileId, ref pInfo));
        }
Ejemplo n.º 5
0
 static extern System.Byte IIPSFindNextFile(System.IntPtr dataQuery, System.UInt32 findHandle, ref IIPS_FIND_FILE_INFO pInfo);
Ejemplo n.º 6
0
 static extern System.UInt32 IIPSFindFirstFile(System.IntPtr dataQuery, System.UInt32 fileId, ref IIPS_FIND_FILE_INFO pInfo);
Ejemplo n.º 7
0
 private static extern uint IIPSFindFirstFile(IntPtr dataQuery, uint fileId, ref IIPS_FIND_FILE_INFO pInfo);
Ejemplo n.º 8
0
 private static extern byte IIPSFindNextFile(IntPtr dataQuery, uint findHandle, ref IIPS_FIND_FILE_INFO pInfo);