mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 18:57:19 +02:00
18 lines
253 B
C
18 lines
253 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
class HDropIterator
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
HDropIterator(IDataObject *pDataObject);
|
||
|
|
~HDropIterator();
|
||
|
|
void First();
|
||
|
|
void Next();
|
||
|
|
bool IsDone() const;
|
||
|
|
LPTSTR CurrentItem() const;
|
||
|
|
|
||
|
|
private:
|
||
|
|
UINT _listCount;
|
||
|
|
STGMEDIUM m_medium;
|
||
|
|
UINT _current;
|
||
|
|
};
|