mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 17:40:39 +00:00
9460fbd970
* This allows you to hook into processes that are difficult to launch directly with the existing functionality in RenderDoc. * This is rather risky, as it modifies the AppInit_DLLs registry key to inject a small shim dll that checks for the desired process and injects the full renderdoc.dll. If that registry key got left, or if there was some incompatibility with the shim dll, you could have problems. It should only ever be used as a last resort if there's no other way to capture.
108 lines
4.0 KiB
C#
108 lines
4.0 KiB
C#
/******************************************************************************
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2014 Crytek
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
******************************************************************************/
|
|
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace renderdocui.Code
|
|
{
|
|
class Win32PInvoke
|
|
{
|
|
[DllImport("kernel32", SetLastError = true, CharSet = CharSet.Unicode)]
|
|
public static extern IntPtr LoadLibrary(string lpFileName);
|
|
|
|
// for redirecting mousewheel
|
|
[DllImport("user32.dll")]
|
|
public static extern IntPtr WindowFromPoint(System.Drawing.Point pt);
|
|
[DllImport("user32.dll")]
|
|
public static extern IntPtr SendMessage(IntPtr wnd, int msg, IntPtr wp, IntPtr lp);
|
|
|
|
// windows message from winuser.h
|
|
public enum Win32Message
|
|
{
|
|
WM_MOUSEWHEEL = 0x020A,
|
|
TCM_ADJUSTRECT = 0x1328,
|
|
};
|
|
|
|
[Flags]
|
|
public enum HChangeNotifyEventID
|
|
{
|
|
SHCNE_ALLEVENTS = 0x7FFFFFFF,
|
|
SHCNE_ASSOCCHANGED = 0x08000000,
|
|
SHCNE_ATTRIBUTES = 0x00000800,
|
|
SHCNE_CREATE = 0x00000002,
|
|
SHCNE_DELETE = 0x00000004,
|
|
SHCNE_DRIVEADD = 0x00000100,
|
|
SHCNE_DRIVEADDGUI = 0x00010000,
|
|
SHCNE_DRIVEREMOVED = 0x00000080,
|
|
SHCNE_EXTENDED_EVENT = 0x04000000,
|
|
SHCNE_FREESPACE = 0x00040000,
|
|
SHCNE_MEDIAINSERTED = 0x00000020,
|
|
SHCNE_MEDIAREMOVED = 0x00000040,
|
|
SHCNE_MKDIR = 0x00000008,
|
|
SHCNE_NETSHARE = 0x00000200,
|
|
SHCNE_NETUNSHARE = 0x00000400,
|
|
SHCNE_RENAMEFOLDER = 0x00020000,
|
|
SHCNE_RENAMEITEM = 0x00000001,
|
|
SHCNE_RMDIR = 0x00000010,
|
|
SHCNE_SERVERDISCONNECT = 0x00004000,
|
|
SHCNE_UPDATEDIR = 0x00001000,
|
|
SHCNE_UPDATEIMAGE = 0x00008000,
|
|
}
|
|
|
|
[Flags]
|
|
public enum HChangeNotifyFlags
|
|
{
|
|
SHCNF_DWORD = 0x0003,
|
|
SHCNF_IDLIST = 0x0000,
|
|
SHCNF_PATHA = 0x0001,
|
|
SHCNF_PATHW = 0x0005,
|
|
SHCNF_PRINTERA = 0x0002,
|
|
SHCNF_PRINTERW = 0x0006,
|
|
SHCNF_FLUSH = 0x1000,
|
|
SHCNF_FLUSHNOWAIT = 0x2000,
|
|
SHCNF_NOTIFYRECURSIVE = 0x10000,
|
|
}
|
|
|
|
[DllImport("shell32.dll")]
|
|
public static extern void SHChangeNotify(HChangeNotifyEventID wEventId, HChangeNotifyFlags uFlags, IntPtr dwItem1, IntPtr dwItem2);
|
|
|
|
[DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
|
|
private static extern uint GetShortPathName(string lpszLongPath, char[] lpszShortPath, int cchBuffer);
|
|
|
|
public static string ShortPath(string longpath)
|
|
{
|
|
char[] buffer = new char[256];
|
|
|
|
GetShortPathName(longpath, buffer, buffer.Length);
|
|
|
|
return new string(buffer);
|
|
}
|
|
}
|
|
}
|