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.
53 lines
823 B
53 lines
823 B
/*++
|
|
|
|
Copyright (c) 1997 Microsoft Corporation
|
|
|
|
Abstract:
|
|
|
|
This module provides functionality for publishing printers
|
|
|
|
Author:
|
|
|
|
Steve Wilson (NT) November 1997
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
|
|
|
|
HRESULT
|
|
put_BSTR_Property(
|
|
IADs *pADsObject,
|
|
BSTR bstrPropertyName,
|
|
BSTR pSrcStringProperty
|
|
);
|
|
|
|
HRESULT
|
|
get_BSTR_Property(
|
|
IADs *pADsObject,
|
|
BSTR bstrPropertyName,
|
|
BSTR *pSrcStringProperty
|
|
);
|
|
|
|
HRESULT
|
|
put_DWORD_Property(
|
|
IADs *pADsObject,
|
|
BSTR bstrPropertyName,
|
|
DWORD *pdwSrcProperty
|
|
);
|
|
|
|
HRESULT
|
|
put_MULTISZ_Property(
|
|
IADs *pADsObject,
|
|
BSTR bstrPropertyName,
|
|
BSTR pSrcStringProperty
|
|
);
|
|
|
|
HRESULT
|
|
put_BOOL_Property(
|
|
IADs *pADsObject,
|
|
BSTR bstrPropertyName,
|
|
BOOL *bSrcProperty
|
|
);
|
|
|