mirror of https://github.com/tongzx/nt5src
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.
27 lines
810 B
27 lines
810 B
/*****************************************************************************
|
|
*
|
|
* (C) COPYRIGHT MICROSOFT CORPORATION, 2000
|
|
*
|
|
* TITLE: ImageLst.h
|
|
*
|
|
* VERSION: 1.0
|
|
*
|
|
* DATE: 2000/11/14
|
|
*
|
|
* DESCRIPTION: Handles WIA side of things
|
|
*
|
|
*****************************************************************************/
|
|
#ifndef _IMAGELST_H_
|
|
#define _IMAGELST_H_
|
|
|
|
HRESULT ImageLst_PostAddImageRequest(BSTR bstrNewImage);
|
|
HRESULT ImageLst_AddImageToList(BSTR bstrNewImage);
|
|
HRESULT ImageLst_PopulateWiaItemList(IGlobalInterfaceTable *pGIT,
|
|
DWORD dwCookie);
|
|
HRESULT ImageLst_PopulateDShowItemList(const TCHAR *pszImagesDirectory);
|
|
HRESULT ImageLst_Clear();
|
|
HRESULT ImageLst_CancelLoadAndWait(DWORD dwTimeout);
|
|
|
|
|
|
|
|
#endif // _IMAGELST_H_
|