26 lines
440 B
C++
26 lines
440 B
C++
|
|
|
|
#ifndef _PRINTQUEUE_H_
|
|
#define _PRINTQUEUE_H_
|
|
|
|
class COleDsPrintQueue: public COleDsObject
|
|
{
|
|
|
|
public:
|
|
COleDsPrintQueue( IUnknown* );
|
|
COleDsPrintQueue( );
|
|
~COleDsPrintQueue( );
|
|
|
|
HRESULT DeleteItem ( COleDsObject* );
|
|
|
|
public:
|
|
DWORD GetChildren( DWORD* pTokens, DWORD dwMaxChildren,
|
|
CDialog* pQueryStatus,
|
|
BOOL* pFilters, DWORD dwFilters );
|
|
|
|
|
|
};
|
|
|
|
#endif
|
|
|