blob: d0259213f42ae732eae4d428b830032914e5c59a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
/*++
THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
PARTICULAR PURPOSE.
Copyright (c) Microsoft Corporation. All rights reserved
Module Name:
StorageAdapter.h
Abstract:
This module contains a stub implementation of a Storage Adapter
plug-in for the Windows Biometric service.
Author:
-
Environment:
Win32, user mode only.
Revision History:
NOTES:
(None)
--*/
#pragma once
#include "winbio_adapter.h"
///////////////////////////////////////////////////////////////////////////////
//
// The WINIBIO_STORAGE_CONTEXT structure is privately-defined by each
// Storage Adapter. Its purpose is to maintain any information that
// should persist across Storage Adapter API calls.
//
// The Adapter allocates and initializes one of these structures in its
// 'Attach' routine and saves its address in the Pipeline->StorageContext
// field.
//
// The Storage Adapter's 'Detach' routine cleans up and deallocates the
// structure and sets the PipelineContext->StorageContext field to NULL.
//
///////////////////////////////////////////////////////////////////////////////
typedef struct _WINIBIO_STORAGE_CONTEXT {
//
// The following fields illustrate the kind of information
// the Storage Adapter needs to keep in this structure:
//
// DatabaseId - Identify of the Adapter's
// currently-opened database.
//
// DatabaseHandle - A handle to the Storage Adapter's
// currently-open database.
//
// ResultSet - A collection of records generated by
// a database query operation.
//
// ResultSetCursor - Current location in the result
// set. Used to iterate through the
// result set and make individual
// records available.
//
WINBIO_UUID DatabaseId;
PVOID DatabaseHandle;
PVOID ResultSet;
PVOID ResultSetCursor;
} WINIBIO_STORAGE_CONTEXT, *PWINIBIO_STORAGE_CONTEXT;
|