1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-05-28 13:38:19 +00:00
reactos/sdk/include/psdk/provider.h

18 lines
327 B
C++

#pragma once
#ifndef _PROVIDER_H
#define _PROVIDER_H
#include <windows.h>
#include <provexce.h>
class Provider
{
protected:
virtual void Flush();
virtual HRESULT ValidateDeletionFlags(long lFlags);
virtual HRESULT ValidateMethodFlags(long lFlags);
virtual HRESULT ValidateQueryFlags(long lFlags);
};
#endif