Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
47f24896
Commit
47f24896
authored
Feb 18, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Feb 18, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added odbcinst.h.
parent
553dd723
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
79 additions
and
0 deletions
+79
-0
Makefile.in
include/Makefile.in
+1
-0
odbcinst.h
include/odbcinst.h
+78
-0
No files found.
include/Makefile.in
View file @
47f24896
...
...
@@ -175,6 +175,7 @@ WINDOWS_INCLUDES = \
ntsecapi.h
\
ntstatus.h
\
objbase.h
\
odbcinst.h
\
ole2.h
\
ole2ver.h
\
oleauto.h
\
...
...
include/odbcinst.h
0 → 100644
View file @
47f24896
/*
* Copyright (C) 2005 Mike McCormack
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __WINE_ODBCINST_H
#define __WINE_ODBCINST_H
#ifdef __cplusplus
extern
"C"
{
#endif
#include "sql.h"
BOOL
WINAPI
SQLConfigDataSource
(
HWND
,
WORD
,
LPCSTR
,
LPCSTR
);
BOOL
WINAPI
SQLConfigDataSourceW
(
HWND
,
WORD
,
LPCWSTR
,
LPCWSTR
);
BOOL
WINAPI
SQLConfigDriver
(
HWND
,
WORD
,
LPCSTR
,
LPCSTR
,
LPSTR
,
WORD
,
WORD
*
);
BOOL
WINAPI
SQLConfigDriverW
(
HWND
,
WORD
,
LPCWSTR
,
LPCWSTR
,
LPWSTR
,
WORD
,
WORD
*
);
BOOL
WINAPI
SQLCreateDataSource
(
HWND
,
LPSTR
);
BOOL
WINAPI
SQLCreateDataSourceW
(
HWND
,
LPWSTR
);
BOOL
WINAPI
SQLGetConfigMode
(
UWORD
*
);
BOOL
WINAPI
SQLGetInstalledDrivers
(
LPSTR
,
WORD
,
WORD
*
);
BOOL
WINAPI
SQLGetInstalledDriversW
(
LPWSTR
,
WORD
,
WORD
*
);
int
WINAPI
SQLGetPrivateProfileString
(
LPCSTR
,
LPCSTR
,
LPCSTR
,
LPCSTR
,
INT
,
LPCSTR
);
int
WINAPI
SQLGetPrivateProfileStringW
(
LPCWSTR
,
LPCWSTR
,
LPCWSTR
,
LPCWSTR
,
INT
,
LPCWSTR
);
BOOL
WINAPI
SQLGetTranslator
(
HWND
,
LPSTR
,
WORD
,
WORD
*
,
LPSTR
,
WORD
,
WORD
*
,
DWORD
*
);
BOOL
WINAPI
SQLGetTranslatorW
(
HWND
,
LPWSTR
,
WORD
,
WORD
*
,
LPWSTR
,
WORD
,
WORD
*
,
DWORD
*
);
BOOL
WINAPI
SQLInstallDriverEx
(
LPCSTR
,
LPCSTR
,
LPSTR
,
WORD
,
WORD
*
,
WORD
,
LPDWORD
);
BOOL
WINAPI
SQLInstallDriverExW
(
LPCWSTR
,
LPCWSTR
,
LPWSTR
,
WORD
,
WORD
*
,
WORD
,
LPDWORD
);
BOOL
WINAPI
SQLInstallDriverManager
(
LPSTR
,
WORD
,
WORD
*
);
BOOL
WINAPI
SQLInstallDriverManagerW
(
LPWSTR
,
WORD
,
WORD
*
);
RETCODE
WINAPI
SQLInstallerError
(
WORD
,
DWORD
*
,
LPSTR
,
WORD
,
WORD
*
);
RETCODE
WINAPI
SQLInstallerErrorW
(
WORD
,
DWORD
*
,
LPWSTR
,
WORD
,
WORD
*
);
BOOL
WINAPI
SQLInstallTranslatorEx
(
LPCSTR
,
LPCSTR
,
LPSTR
,
WORD
,
WORD
*
,
WORD
,
LPDWORD
);
BOOL
WINAPI
SQLInstallTranslatorExW
(
LPCWSTR
,
LPCWSTR
,
LPWSTR
,
WORD
,
WORD
*
,
WORD
,
LPDWORD
);
BOOL
WINAPI
SQLInstallTranslator
(
LPCSTR
,
LPCSTR
,
LPCSTR
,
LPSTR
,
WORD
,
WORD
*
,
WORD
,
LPDWORD
);
BOOL
WINAPI
SQLInstallTranslatorW
(
LPCWSTR
,
LPCWSTR
,
LPCWSTR
,
LPWSTR
,
WORD
,
WORD
*
,
WORD
,
LPDWORD
);
BOOL
WINAPI
SQLManageDataSources
(
HWND
hwnd
);
RETCODE
WINAPI
SQLPostInstallerError
(
DWORD
,
LPSTR
);
RETCODE
WINAPI
SQLPostInstallerErrorW
(
DWORD
,
LPWSTR
);
BOOL
WINAPI
SQLReadFileDSN
(
LPCSTR
,
LPCSTR
,
LPCSTR
,
LPSTR
,
WORD
,
WORD
*
);
BOOL
WINAPI
SQLReadFileDSNW
(
LPCWSTR
,
LPCWSTR
,
LPCWSTR
,
LPWSTR
,
WORD
,
WORD
*
);
BOOL
WINAPI
SQLRemoveDefaultDataSource
(
void
);
BOOL
WINAPI
SQLRemoveDriver
(
LPCSTR
,
BOOL
,
LPDWORD
);
BOOL
WINAPI
SQLRemoveDriverW
(
LPCWSTR
,
BOOL
,
LPDWORD
);
BOOL
WINAPI
SQLRemoveDriverManager
(
LPDWORD
);
BOOL
WINAPI
SQLRemoveDSNFromIni
(
LPCSTR
);
BOOL
WINAPI
SQLRemoveDSNFromIniW
(
LPCWSTR
);
BOOL
WINAPI
SQLRemoveTranslator
(
LPCSTR
,
LPDWORD
);
BOOL
WINAPI
SQLRemoveTranslatorW
(
LPCWSTR
,
LPDWORD
);
BOOL
WINAPI
SQLSetConfigMode
(
UWORD
);
BOOL
WINAPI
SQLValidDSN
(
LPCSTR
);
BOOL
WINAPI
SQLValidDSNW
(
LPCWSTR
);
BOOL
WINAPI
SQLWriteDSNToIni
(
LPCSTR
,
LPCSTR
);
BOOL
WINAPI
SQLWriteDSNToIniW
(
LPCWSTR
,
LPCWSTR
);
BOOL
WINAPI
SQLWriteFileDSN
(
LPCSTR
,
LPCSTR
,
LPCSTR
,
LPCSTR
);
BOOL
WINAPI
SQLWriteFileDSNW
(
LPCWSTR
,
LPCWSTR
,
LPCWSTR
,
LPCWSTR
);
BOOL
WINAPI
SQLWritePrivateProfileString
(
LPCSTR
,
LPCSTR
,
LPCSTR
,
LPCSTR
);
BOOL
WINAPI
SQLWritePrivateProfileStringW
(
LPCWSTR
,
LPCWSTR
,
LPCWSTR
,
LPCWSTR
);
#ifdef __cplusplus
}
#endif
#endif
/*__WINE_ODBCINST_H*/
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment