Leaked source code of windows server 2003
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.

38 lines
935 B

  1. /**********************************************************************/
  2. /** Microsoft Windows/NT **/
  3. /** Copyright(c) Microsoft Corporation, 1997 - 1998 **/
  4. /**********************************************************************/
  5. /*
  6. helper.h
  7. This file defines the following macros helper classes and functions:
  8. IASGetSdoInterfaceProperty()
  9. FILE HISTORY:
  10. 2/18/98 byao Created
  11. */
  12. #ifndef _IASHELPER_
  13. #define _IASHELPER_
  14. // SDO helper functions
  15. extern HRESULT IASGetSdoInterfaceProperty(ISdo *pISdo,
  16. LONG lPropID,
  17. REFIID riid,
  18. void ** ppvInterface);
  19. int ShowErrorDialog(
  20. HWND hWnd = NULL
  21. , UINT uErrorID = 0
  22. , BSTR bstrSupplementalErrorString = NULL
  23. , HRESULT hr = S_OK
  24. , UINT uTitleID = 0
  25. , UINT uType = MB_OK | MB_ICONEXCLAMATION
  26. );
  27. #endif