1 //------------------------------------------------------------------------------
2 // <copyright file="DATADIR.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //------------------------------------------------------------------------------
6 
7 namespace System.Runtime.InteropServices.ComTypes {
8 
9     using System;
10 
11     /// <devdoc>
12     /// </devdoc>
13     public enum DATADIR {
14         DATADIR_GET	= 1,
15         DATADIR_SET	= 2
16     }
17 }
18 
19 
20