Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
751 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. wnd.h
  5. Abstract:
  6. The header file for Window utility routines.
  7. Author:
  8. Jim Schmidt (jimschm) 01-Feb-2000
  9. Revision History:
  10. <alias> <date> <comments>
  11. --*/
  12. //
  13. // Includes
  14. //
  15. // None
  16. //
  17. // Strings
  18. //
  19. // None
  20. //
  21. // Constants
  22. //
  23. // None
  24. //
  25. // Macros
  26. //
  27. // None
  28. //
  29. // Types
  30. //
  31. // None
  32. //
  33. // Globals
  34. //
  35. // None
  36. //
  37. // Macro expansion list
  38. //
  39. // None
  40. //
  41. // Public function prototypes
  42. //
  43. HWND
  44. FindWindowInProcessA (
  45. IN DWORD ProcessId,
  46. IN PCSTR WindowTitle OPTIONAL
  47. );
  48. HWND
  49. FindWindowInProcessW (
  50. IN DWORD ProcessId,
  51. IN PCWSTR WindowTitle OPTIONAL
  52. );
  53. //
  54. // Macro expansion definition
  55. //
  56. // None