struct Core::Portable::FileIOManager::NotifyEntry

#include <corefile.h>

struct NotifyEntry: public IntrusiveLink< NotifyEntry >
{
    // enums

    enum Type;

    // fields

    Type type;
    FileName filename;
    FileIOCompletionHandler* handler;
    IO::MemoryStream* data;
    bool completed;
    bool canceled;

    // construction

    NotifyEntry(Type type);
};