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.

26 lines
758 B

  1. // PromptUser.h -- declaration of utility to prompt the user for a response.
  2. // (c) Copyright Schlumberger Technology Corp., unpublished work, created
  3. // 2000. This computer program includes Confidential, Proprietary
  4. // Information and is a Trade Secret of Schlumberger Technology Corp. All
  5. // use, disclosure, and/or reproduction is prohibited unless authorized
  6. // in writing. All Rights Reserved.
  7. #if !defined(SLBCSP_PROMPTUSER_H)
  8. #define SLBCSP_PROMPTUSER_H
  9. #include <Windows.h>
  10. /////////////////////////// HELPERS /////////////////////////////////
  11. int
  12. PromptUser(HWND hWnd,
  13. UINT uiResourceId,
  14. UINT uiStyle);
  15. int
  16. PromptUser(HWND hWnd,
  17. LPCTSTR lpMessage,
  18. UINT uiStyle);
  19. #endif // SLBCSP_PROMPTUSER_H