1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
|
/*
KeePass Password Safe - The Open-Source Password Manager
Copyright (C) 2003-2012 Dominik Reichl <dominik.reichl@t-online.de>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
using System;
using System.Text;
using System.Security;
using System.Runtime.InteropServices;
using System.Diagnostics;
using System.Windows.Forms;
using KeePass.UI;
namespace KeePass.Native
{
internal static partial class NativeMethods
{
[DllImport("Kernel32.dll", SetLastError = true, CharSet = CharSet.Auto)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool SetDllDirectory(string lpPathName);
[DllImport("User32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
private static extern bool IsWindow(IntPtr hWnd);
[DllImport("User32.dll")]
internal static extern IntPtr SendMessage(IntPtr hWnd, int nMsg,
IntPtr wParam, IntPtr lParam);
[DllImport("User32.dll", EntryPoint = "SendMessage")]
internal static extern IntPtr SendMessageHDItem(IntPtr hWnd, int nMsg,
IntPtr wParam, ref HDITEM hdItem);
// [DllImport("User32.dll", EntryPoint = "SendMessage")]
// private static extern IntPtr SendMessageLVGroup(IntPtr hWnd, int nMsg,
// IntPtr wParam, ref LVGROUP lvGroup);
[DllImport("User32.dll", SetLastError = true)]
internal static extern IntPtr SendMessageTimeout(IntPtr hWnd, int nMsg,
IntPtr wParam, IntPtr lParam, uint fuFlags, uint uTimeout,
ref IntPtr lpdwResult);
[DllImport("User32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool PostMessage(IntPtr hWnd, int nMsg,
IntPtr wParam, IntPtr lParam);
// [DllImport("User32.dll")]
// internal static extern uint GetMessagePos();
[DllImport("User32.dll", SetLastError = true, CharSet = CharSet.Auto)]
internal static extern int RegisterWindowMessage(string lpString);
[DllImport("User32.dll")]
internal static extern IntPtr GetWindow(IntPtr hWnd, uint uCmd);
[DllImport("User32.dll")]
internal static extern int GetWindowLong(IntPtr hWnd, int nIndex);
[DllImport("User32.dll", SetLastError = true)]
internal static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);
[DllImport("User32.dll", EntryPoint = "GetClassLong")]
private static extern IntPtr GetClassLongPtr32(IntPtr hWnd, int nIndex);
[DllImport("User32.dll", EntryPoint = "GetClassLongPtr")]
private static extern IntPtr GetClassLongPtr64(IntPtr hWnd, int nIndex);
[DllImport("User32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool IsIconic(IntPtr hWnd);
[DllImport("User32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool IsZoomed(IntPtr hWnd);
[DllImport("User32.dll", SetLastError = true)]
private static extern int GetWindowTextLength(IntPtr hWnd);
[DllImport("User32.dll", SetLastError = true, CharSet = CharSet.Auto)]
private static extern int GetWindowText(IntPtr hWnd,
[Out] StringBuilder lpString, int nMaxCount);
[DllImport("User32.dll")]
private static extern IntPtr GetForegroundWindow(); // Private, is wrapped
[DllImport("User32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
private static extern bool SetForegroundWindow(IntPtr hWnd);
[DllImport("User32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool EnumWindows(EnumWindowsProc lpEnumFunc,
IntPtr lParam);
[DllImport("User32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool RegisterHotKey(IntPtr hWnd, int id,
uint fsModifiers, uint vk);
[DllImport("User32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool UnregisterHotKey(IntPtr hWnd, int id);
[DllImport("User32.dll", EntryPoint = "SendInput", SetLastError = true)]
internal static extern uint SendInput32(uint nInputs, INPUT32[] pInputs,
int cbSize);
[DllImport("User32.dll", EntryPoint = "SendInput", SetLastError = true)]
internal static extern uint SendInput64Special(uint nInputs,
SpecializedKeyboardINPUT64[] pInputs, int cbSize);
[DllImport("User32.dll")]
internal static extern IntPtr GetMessageExtraInfo();
// [DllImport("User32.dll")]
// internal static extern void keybd_event(byte bVk, byte bScan, uint dwFlags,
// IntPtr dwExtraInfo);
[DllImport("User32.dll")]
internal static extern uint MapVirtualKey(uint uCode, uint uMapType);
[DllImport("User32.dll", CharSet = CharSet.Auto)]
internal static extern ushort VkKeyScan(char ch); // TCHAR
[DllImport("User32.dll")]
internal static extern ushort GetKeyState(int vKey);
[DllImport("User32.dll")]
internal static extern ushort GetAsyncKeyState(int vKey);
[DllImport("User32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool BlockInput([MarshalAs(UnmanagedType.Bool)]
bool fBlockIt);
// [DllImport("User32.dll")]
// [return: MarshalAs(UnmanagedType.Bool)]
// internal static extern bool AttachThreadInput(uint idAttach,
// uint idAttachTo, [MarshalAs(UnmanagedType.Bool)] bool fAttach);
[DllImport("User32.dll")]
internal static extern IntPtr SetClipboardViewer(IntPtr hWndNewViewer);
[DllImport("User32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool ChangeClipboardChain(IntPtr hWndRemove,
IntPtr hWndNewNext);
[DllImport("User32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool OpenClipboard(IntPtr hWndNewOwner);
[DllImport("User32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool EmptyClipboard();
[DllImport("User32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool CloseClipboard();
[DllImport("User32.dll", SetLastError = true)]
internal static extern IntPtr SetClipboardData(uint uFormat, IntPtr hMem);
[DllImport("User32.dll", SetLastError = true)]
internal static extern IntPtr GetClipboardData(uint uFormat);
[DllImport("User32.dll", SetLastError = true, CharSet = CharSet.Auto)]
internal static extern uint RegisterClipboardFormat(string lpszFormat);
[DllImport("User32.dll")]
internal static extern uint GetClipboardSequenceNumber();
[DllImport("Kernel32.dll")]
internal static extern IntPtr GlobalAlloc(uint uFlags, UIntPtr dwBytes);
[DllImport("Kernel32.dll")]
internal static extern IntPtr GlobalFree(IntPtr hMem);
[DllImport("Kernel32.dll")]
internal static extern IntPtr GlobalLock(IntPtr hMem);
[DllImport("Kernel32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool GlobalUnlock(IntPtr hMem);
[DllImport("Kernel32.dll")]
internal static extern UIntPtr GlobalSize(IntPtr hMem);
[DllImport("ShlWApi.dll", CharSet = CharSet.Auto)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool PathCompactPathEx(StringBuilder pszOut,
string szPath, uint cchMax, uint dwFlags);
[DllImport("User32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool DrawAnimatedRects(IntPtr hWnd,
int idAni, [In] ref RECT lprcFrom, [In] ref RECT lprcTo);
[DllImport("User32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool GetComboBoxInfo(IntPtr hWnd,
ref COMBOBOXINFO pcbi);
[DllImport("User32.dll", SetLastError = true, CharSet = CharSet.Auto)]
internal static extern IntPtr CreateDesktop(string lpszDesktop,
string lpszDevice, IntPtr pDevMode, UInt32 dwFlags,
[MarshalAs(UnmanagedType.U4)] DesktopFlags dwDesiredAccess,
IntPtr lpSecurityAttributes);
[DllImport("User32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool CloseDesktop(IntPtr hDesktop);
// [DllImport("User32.dll", SetLastError = true)]
// internal static extern IntPtr OpenDesktop(string lpszDesktop,
// UInt32 dwFlags, [MarshalAs(UnmanagedType.Bool)] bool fInherit,
// [MarshalAs(UnmanagedType.U4)] DesktopFlags dwDesiredAccess);
[DllImport("User32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool SwitchDesktop(IntPtr hDesktop);
// [DllImport("User32.dll", SetLastError = true)]
// internal static extern IntPtr OpenInputDesktop(uint dwFlags,
// [MarshalAs(UnmanagedType.Bool)] bool fInherit,
// [MarshalAs(UnmanagedType.U4)] DesktopFlags dwDesiredAccess);
[DllImport("User32.dll", SetLastError = true)]
internal static extern IntPtr GetThreadDesktop(uint dwThreadId);
[DllImport("User32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool SetThreadDesktop(IntPtr hDesktop);
[DllImport("Kernel32.dll")]
internal static extern uint GetCurrentThreadId();
[DllImport("Imm32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool ImmDisableIME(uint idThread);
[DllImport("Kernel32.dll", SetLastError = true, CharSet = CharSet.Auto)]
internal static extern IntPtr CreateFile(string lpFileName,
[MarshalAs(UnmanagedType.U4)] EFileAccess dwDesiredAccess,
[MarshalAs(UnmanagedType.U4)] EFileShare dwShareMode,
IntPtr lpSecurityAttributes,
[MarshalAs(UnmanagedType.U4)] ECreationDisposition dwCreationDisposition,
[MarshalAs(UnmanagedType.U4)] uint dwFlagsAndAttributes,
IntPtr hTemplateFile);
[DllImport("Kernel32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool CloseHandle(IntPtr hObject);
[DllImport("Kernel32.dll", SetLastError = true, CharSet = CharSet.Auto)]
internal static extern uint GetFileAttributes(string lpFileName);
[DllImport("Kernel32.dll", SetLastError = true, CharSet = CharSet.Auto)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool DeleteFile(string lpFileName);
[DllImport("Kernel32.dll", ExactSpelling = true, SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool DeviceIoControl(IntPtr hDevice, uint dwIoControlCode,
IntPtr lpInBuffer, uint nInBufferSize, IntPtr lpOutBuffer, uint nOutBufferSize,
out uint lpBytesReturned, IntPtr lpOverlapped);
// [DllImport("DwmApi.dll")]
// internal static extern Int32 DwmExtendFrameIntoClientArea(IntPtr hWnd,
// ref MARGINS pMarInset);
// [DllImport("DwmApi.dll")]
// internal static extern Int32 DwmIsCompositionEnabled(ref Int32 pfEnabled);
[DllImport("ComCtl32.dll", CharSet = CharSet.Auto)]
internal static extern Int32 TaskDialogIndirect([In] ref VtdConfig pTaskConfig,
[Out] out int pnButton, [Out] out int pnRadioButton,
[Out] [MarshalAs(UnmanagedType.Bool)] out bool pfVerificationFlagChecked);
[DllImport("UxTheme.dll", ExactSpelling = true, CharSet = CharSet.Unicode)]
internal static extern int SetWindowTheme(IntPtr hWnd, string pszSubAppName,
string pszSubIdList);
[DllImport("Shell32.dll")]
internal static extern void SHChangeNotify(int wEventId, uint uFlags,
IntPtr dwItem1, IntPtr dwItem2);
[DllImport("User32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
private static extern bool GetScrollInfo(IntPtr hwnd, int fnBar,
ref SCROLLINFO lpsi);
// [DllImport("User32.dll")]
// private static extern int SetScrollInfo(IntPtr hwnd, int fnBar,
// [In] ref SCROLLINFO lpsi, [MarshalAs(UnmanagedType.Bool)] bool fRedraw);
// [DllImport("User32.dll")]
// private static extern int ScrollWindowEx(IntPtr hWnd, int dx, int dy,
// IntPtr prcScroll, IntPtr prcClip, IntPtr hrgnUpdate, IntPtr prcUpdate,
// uint flags);
[DllImport("User32.dll")]
internal static extern IntPtr GetKeyboardLayout(uint idThread);
[DllImport("User32.dll")]
internal static extern IntPtr ActivateKeyboardLayout(IntPtr hkl, uint uFlags);
[DllImport("User32.dll")]
internal static extern uint GetWindowThreadProcessId(IntPtr hWnd,
[Out] out uint lpdwProcessId);
// [DllImport("UxTheme.dll")]
// internal static extern IntPtr OpenThemeData(IntPtr hWnd,
// [MarshalAs(UnmanagedType.LPWStr)] string pszClassList);
// [DllImport("UxTheme.dll")]
// internal static extern uint CloseThemeData(IntPtr hTheme);
// [DllImport("UxTheme.dll")]
// internal extern static uint DrawThemeBackground(IntPtr hTheme, IntPtr hdc,
// int iPartId, int iStateId, ref RECT pRect, ref RECT pClipRect);
// [DllImport("Gdi32.dll")]
// [return: MarshalAs(UnmanagedType.Bool)]
// internal static extern bool DeleteObject(IntPtr hObject);
// [DllImport("DwmApi.dll")]
// internal static extern int DwmInvalidateIconicBitmaps(IntPtr hWnd);
[DllImport("DwmApi.dll", EntryPoint = "DwmSetWindowAttribute")]
internal static extern int DwmSetWindowAttributeInt(IntPtr hWnd,
uint dwAttribute, [In] ref int pvAttribute, uint cbAttribute);
// [DllImport("DwmApi.dll")]
// internal static extern int DwmSetIconicThumbnail(IntPtr hWnd,
// IntPtr hBmp, uint dwSITFlags);
// [DllImport("DwmApi.dll")]
// internal static extern int DwmSetIconicLivePreviewBitmap(IntPtr hWnd,
// IntPtr hBmp, IntPtr pptClient, uint dwSITFlags);
[DllImport("User32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
private static extern bool GetLastInputInfo(ref LASTINPUTINFO plii);
[DllImport("Shell32.dll", CharSet = CharSet.Auto)]
private static extern IntPtr SHGetFileInfo(string pszPath,
uint dwFileAttributes, ref SHFILEINFO psfi, uint cbFileInfo,
uint uFlags);
[DllImport("User32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool DestroyIcon(IntPtr hIcon);
// [DllImport("User32.dll", SetLastError = true)]
// [return: MarshalAs(UnmanagedType.Bool)]
// internal static extern bool DrawIconEx(IntPtr hdc, int xLeft, int yTop,
// IntPtr hIcon, int cxWidth, int cyWidth, uint istepIfAniCur,
// IntPtr hbrFlickerFreeDraw, uint diFlags);
[DllImport("WinMM.dll", CharSet = CharSet.Auto)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool PlaySound(string pszSound, IntPtr hmod,
uint fdwSound);
[DllImport("Shell32.dll", CharSet = CharSet.Auto)]
internal static extern IntPtr ShellExecute(IntPtr hwnd,
string lpOperation, string lpFile, string lpParameters,
string lpDirectory, int nShowCmd);
}
}
|