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 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492
|
/*
KeePass Password Safe - The Open-Source Password Manager
Copyright (C) 2003-2019 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.Diagnostics;
using System.Runtime.InteropServices;
using System.Security;
using System.Text;
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 GetDesktopWindow();
[DllImport("User32.dll", SetLastError = true, CharSet = CharSet.Auto)]
internal static extern IntPtr FindWindowEx(IntPtr hwndParent,
IntPtr hwndChildAfter, string lpszClass, string lpszWindow);
[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", CharSet = CharSet.Auto, ExactSpelling = false)]
private static extern IntPtr GetClassLong(IntPtr hWnd, int nIndex);
[DllImport("User32.dll", CharSet = CharSet.Auto, ExactSpelling = false)]
private static extern IntPtr GetClassLongPtr(IntPtr hWnd, int nIndex);
// [DllImport("User32.dll", SetLastError = true, CharSet = CharSet.Auto)]
// private static extern int GetClassName(IntPtr hWnd,
// StringBuilder lpClassName, int nMaxCount);
[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, CharSet = CharSet.Auto,
ExactSpelling = false)]
private static extern int GetWindowTextLength(IntPtr hWnd);
// [DllImport("User32.dll", SetLastError = true, CharSet = CharSet.Auto,
// ExactSpelling = false)]
// private static extern int GetWindowText(IntPtr hWnd,
// StringBuilder lpString, int nMaxCount);
[DllImport("User32.dll", SetLastError = true, CharSet = CharSet.Auto,
ExactSpelling = false)]
private static extern int GetWindowText(IntPtr hWnd, IntPtr lpString,
int nMaxCount);
[DllImport("User32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool GetWindowRect(IntPtr hWnd, ref RECT lpRect);
// [DllImport("User32.dll")]
// internal static extern IntPtr GetActiveWindow();
[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")]
private static extern uint MapVirtualKey(uint uCode, uint uMapType);
[DllImport("User32.dll")]
private static extern uint MapVirtualKeyEx(uint uCode, uint uMapType,
IntPtr hKL);
[DllImport("User32.dll", CharSet = CharSet.Auto)]
private static extern ushort VkKeyScan(char ch);
[DllImport("User32.dll", CharSet = CharSet.Auto)]
private static extern ushort VkKeyScanEx(char ch, IntPtr hKL);
[DllImport("User32.dll", CharSet = CharSet.Unicode, ExactSpelling = true)]
private static extern int ToUnicode(uint wVirtKey, uint wScanCode,
IntPtr lpKeyState, [MarshalAs(UnmanagedType.LPWStr)] StringBuilder sbBuff,
int cchBuff, uint wFlags);
[DllImport("User32.dll", CharSet = CharSet.Unicode, ExactSpelling = true)]
private static extern int ToUnicodeEx(uint wVirtKey, uint wScanCode,
IntPtr lpKeyState, [MarshalAs(UnmanagedType.LPWStr)] StringBuilder sbBuff,
int cchBuff, uint wFlags, IntPtr hKL);
// [DllImport("User32.dll")]
// [return: MarshalAs(UnmanagedType.Bool)]
// private static extern bool GetKeyboardState(IntPtr lpKeyState);
[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("User32.dll")]
// internal static extern IntPtr GetClipboardOwner();
[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)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool GetUserObjectInformation(IntPtr hObj,
int nIndex, IntPtr pvInfo, uint nLength, ref uint lpnLengthNeeded);
[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("Imm32.dll")]
// internal static extern IntPtr ImmAssociateContext(IntPtr hWnd, IntPtr hIMC);
[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("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("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("User32.dll")]
internal static extern IntPtr GetDC(IntPtr hWnd);
[DllImport("User32.dll")]
internal static extern int ReleaseDC(IntPtr hWnd, IntPtr hDC);
[DllImport("Gdi32.dll")]
internal static extern int GetDeviceCaps(IntPtr hdc, int nIndex);
[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);
[DllImport("User32.dll", CharSet = CharSet.Auto)]
internal static extern int MessageBox(IntPtr hWnd, string lpText,
string lpCaption, [MarshalAs(UnmanagedType.U4)] MessageBoxFlags uType);
[DllImport("User32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool SetProcessDPIAware();
[DllImport("ShCore.dll")]
internal static extern int SetProcessDpiAwareness(
[MarshalAs(UnmanagedType.U4)] ProcessDpiAwareness a);
[DllImport("Kernel32.dll")]
internal static extern IntPtr CreateToolhelp32Snapshot(
[MarshalAs(UnmanagedType.U4)] ToolHelpFlags dwFlags, uint th32ProcessID);
[DllImport("Kernel32.dll", CharSet = CharSet.Auto)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool Process32First(IntPtr hSnapshot,
ref PROCESSENTRY32 lppe);
[DllImport("Kernel32.dll", CharSet = CharSet.Auto)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool Process32Next(IntPtr hSnapshot,
ref PROCESSENTRY32 lppe);
// [DllImport("Kernel32.dll", SetLastError = true)]
// internal static extern IntPtr OpenProcess(uint dwDesiredAccess,
// [MarshalAs(UnmanagedType.Bool)] bool bInheritHandle, uint dwProcessId);
// [DllImport("User32.dll")]
// [return: MarshalAs(UnmanagedType.Bool)]
// internal static extern bool IsImmersiveProcess(IntPtr hProcess);
[DllImport("Kernel32.dll", CharSet = CharSet.Auto)]
internal static extern IntPtr CreateActCtx(ref ACTCTX pActCtx);
[DllImport("Kernel32.dll")]
internal static extern void ReleaseActCtx(IntPtr hActCtx);
[DllImport("Kernel32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool ActivateActCtx(IntPtr hActCtx,
ref UIntPtr lpCookie);
[DllImport("Kernel32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool DeactivateActCtx(uint dwFlags,
UIntPtr ulCookie);
[DllImport("User32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool ShutdownBlockReasonCreate(IntPtr hWnd,
[MarshalAs(UnmanagedType.LPWStr)] string pwszReason);
[DllImport("User32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool ShutdownBlockReasonDestroy(IntPtr hWnd);
// [DllImport("User32.dll")]
// internal static extern int GetSystemMetrics(int nIndex);
}
}
|