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
Releases
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
Jason Beetham
wine
Commits
6afc68aa
Commit
6afc68aa
authored
25 years ago
by
Patrik Stridvall
Committed by
Alexandre Julliard
25 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fixed some issues found by winapi_check.
parent
416a42c3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/odbc32/odbc32.spec
+4
-4
4 additions, 4 deletions
dlls/odbc32/odbc32.spec
misc/registry.c
+5
-1
5 additions, 1 deletion
misc/registry.c
relay32/kernel32.spec
+1
-1
1 addition, 1 deletion
relay32/kernel32.spec
with
10 additions
and
6 deletions
dlls/odbc32/odbc32.spec
+
4
−
4
View file @
6afc68aa
...
...
@@ -33,7 +33,7 @@ init MAIN_OdbcInit
029 stdcall SQLEndTran(long long long) SQLEndTran
030 stdcall SQLFetchScroll(long long long) SQLFetchScroll
031 stdcall SQLFreeHandle(long long) SQLFreeHandle
032 stdcall SQLGetConnectAttr(long long ptr ptr) SQLGetConnectAttr
032 stdcall SQLGetConnectAttr(long long ptr
long
ptr) SQLGetConnectAttr
033 stdcall SQLGetDescField(long long long ptr long ptr) SQLGetDescField
034 stdcall SQLGetDescRec(long long str long ptr ptr ptr ptr ptr ptr ptr) SQLGetDescRec
035 stdcall SQLGetDiagField(long long long long ptr long ptr) SQLGetDiagField
...
...
@@ -62,10 +62,10 @@ init MAIN_OdbcInit
058 stdcall SQLDescribeParam(long long ptr ptr ptr ptr) SQLDescribeParam
059 stdcall SQLExtendedFetch(long long long ptr ptr) SQLExtendedFetch
060 stdcall SQLForeignKeys(long str long str long str long str long str long str long) SQLForeignKeys
061 stdcall SQLMoreResults(long
str long str long ptr
) SQLMoreResults
062 stdcall SQLNativeSql(long str long str long
s
tr
long
) SQLNativeSql
061 stdcall SQLMoreResults(long) SQLMoreResults
062 stdcall SQLNativeSql(long str long str long
p
tr) SQLNativeSql
063 stdcall SQLNumParams(long ptr) SQLNumParams
064 stdcall SQLParamOptions(long
str
long
str long str long
) SQLParamOptions
064 stdcall SQLParamOptions(long long
ptr
) SQLParamOptions
065 stdcall SQLPrimaryKeys(long str long str long str long) SQLPrimaryKeys
066 stdcall SQLProcedureColumns(long str long str long str long str long) SQLProcedureColumns
067 stdcall SQLProcedures(long str long str long str long) SQLProcedures
...
...
This diff is collapsed.
Click to expand it.
misc/registry.c
+
5
−
1
View file @
6afc68aa
...
...
@@ -30,6 +30,7 @@
#include
<sys/errno.h>
#endif
#include
<sys/types.h>
#include
<fcntl.h>
#include
<sys/fcntl.h>
#include
<sys/stat.h>
#include
<assert.h>
...
...
@@ -731,7 +732,10 @@ static void _copy_registry( HKEY from, HKEY to )
}
}
/* NT REGISTRY LOADER */
#include
<sys/mman.h>
#ifdef HAVE_SYS_MMAN_H
# include <sys/mman.h>
#endif
#ifndef MAP_FAILED
#define MAP_FAILED ((LPVOID)-1)
...
...
This diff is collapsed.
Click to expand it.
relay32/kernel32.spec
+
1
−
1
View file @
6afc68aa
...
...
@@ -192,7 +192,7 @@ import ntdll.dll
174 stdcall CreateSemaphoreA(ptr long long str) CreateSemaphoreA
175 stdcall CreateSemaphoreW(ptr long long wstr) CreateSemaphoreW
176 stdcall CreateSocketHandle() CreateSocketHandle
177 st
ub
CreateTapePartition
177 st
dcall CreateTapePartition(long long long long)
CreateTapePartition
178 stdcall CreateThread(ptr long ptr long long ptr) CreateThread
179 stdcall CreateToolhelp32Snapshot(long long) CreateToolhelp32Snapshot
180 stdcall DebugActiveProcess(long) DebugActiveProcess
...
...
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