Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexey Alyaev
wine
Commits
47f24896
Commit
47f24896
authored
20 years ago
by
Michael McCormack
Committed by
Alexandre Julliard
20 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added odbcinst.h.
parent
553dd723
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/Makefile.in
+1
-0
1 addition, 0 deletions
include/Makefile.in
include/odbcinst.h
+78
-0
78 additions, 0 deletions
include/odbcinst.h
with
79 additions
and
0 deletions
include/Makefile.in
+
1
−
0
View file @
47f24896
...
...
@@ -175,6 +175,7 @@ WINDOWS_INCLUDES = \
ntsecapi.h
\
ntstatus.h
\
objbase.h
\
odbcinst.h
\
ole2.h
\
ole2ver.h
\
oleauto.h
\
...
...
This diff is collapsed.
Click to expand it.
include/odbcinst.h
0 → 100644
+
78
−
0
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*/
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment