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.
|
|
/**********************************************************************/ /** Microsoft Windows/NT **/ /** Copyright(c) Microsoft Corporation, 1997 - 1998 **/ /**********************************************************************/
/*
helper.h This file defines the following macros helper classes and functions:
IASGetSdoInterfaceProperty()
FILE HISTORY:
2/18/98 byao Created */
#ifndef _IASHELPER_
#define _IASHELPER_
// SDO helper functions
extern HRESULT IASGetSdoInterfaceProperty(ISdo *pISdo, LONG lPropID, REFIID riid, void ** ppvInterface);
int ShowErrorDialog( HWND hWnd = NULL , UINT uErrorID = 0 , BSTR bstrSupplementalErrorString = NULL , HRESULT hr = S_OK , UINT uTitleID = 0 , UINT uType = MB_OK | MB_ICONEXCLAMATION );
#endif
|