コード例 #1
0
 internal static extern bool SymFindFileInPathW(
     IntPtr hProcess,
     string searchPath,
     [MarshalAs(UnmanagedType.LPWStr), In] string fileName,
     ref Guid id,
     int two,
     int three,
     int flags,
     [Out] System.Text.StringBuilder filepath,
     SymFindFileInPathProc findCallback,
     IntPtr context // void*
     );
コード例 #2
0
 public static extern bool SymFindFileInPath(
     IntPtr hProcess,
     [MarshalAs(UnmanagedType.LPTStr)] string SearchPath,
     [MarshalAs(UnmanagedType.LPTStr)] string FileName,
     IntPtr id,
     uint two,
     uint three,
     uint flags,
     StringBuilder FilePath,
     SymFindFileInPathProc callback,
     IntPtr context
     );
コード例 #3
0
 internal static extern bool SymFindFileInPath(
     IntPtr hProcess,
     string searchPath,
     string fileName,
     IntPtr id, //void*
     int two,
     int three,
     int flags,
     out string filepath,
     SymFindFileInPathProc findCallback,
     IntPtr context // void*
     );
コード例 #4
0
ファイル: SymbolReader.cs プロジェクト: Brar/entlib
 internal static extern bool SymFindFileInPathW(
     IntPtr hProcess,
     string searchPath,
     [MarshalAs(UnmanagedType.LPWStr), In] string fileName,
     ref Guid id,
     int two,
     int three,
     int flags,
     [Out]System.Text.StringBuilder filepath,
     SymFindFileInPathProc findCallback,
     IntPtr context // void*
     );
コード例 #5
0
 internal static extern bool SymFindFileInPath(
     IntPtr hProcess,
     string searchPath,
     string fileName,
     IntPtr id, //void*
     int two,
     int three,
     int flags,
     out string filepath,
     SymFindFileInPathProc findCallback,
     IntPtr context // void*
     );