コード例 #1
0
ファイル: DSNGenerator.cs プロジェクト: d4r3llo5/RegGen
        DSNObject structDSN; /* the DSN struct */

        #endregion Fields

        #region Constructors

        /*
         * Constructor:
         */
        public DSNGenerator()
        {
            structDSN = new DSNObject();
        }
コード例 #2
0
        DSNObject structDSN; /* the object that holds the data to print */

        #endregion Fields

        #region Constructors

        /*
         * Constructor: Initialize class variables,
         *  this must pull from an already created DSNObject
         *      DSNObject
         *          newDSN: the DSN to output to a file.
         */
        public ODBCDataSourceFile(DSNObject newDSN)
        {
            structDSN = newDSN;
        }
コード例 #3
0
ファイル: ODBCFileGen.cs プロジェクト: d4r3llo5/RegGen
        DSNObject structDSN; /* the object that holds the data to print */

        #endregion Fields

        #region Constructors

        /*
         * Constructor: Initialize class variables,
         *  this must pull from an already created DSNObject
         *      DSNObject
         *          newDSN: the DSN to output to a file.
         */
        public ODBCFileGen(DSNObject newDSN)
        {
            structDSN = newDSN;
        }