mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
19 lines
327 B
C++
19 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
|