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
1e365f77
Commit
1e365f77
authored
Mar 21, 2005
by
Vincent Béron
Committed by
Alexandre Julliard
Mar 21, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some calling conventions.
parent
dcd3fde2
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
27 additions
and
27 deletions
+27
-27
security.c
dlls/advapi32/security.c
+1
-1
api.c
dlls/avifil32/api.c
+2
-2
urlcache.c
dlls/wininet/urlcache.c
+2
-2
wtsapi32.c
dlls/wtsapi32/wtsapi32.c
+2
-2
aclapi.h
include/aclapi.h
+3
-0
vfw.h
include/vfw.h
+5
-2
wtsapi32.h
include/wtsapi32.h
+12
-18
No files found.
dlls/advapi32/security.c
View file @
1e365f77
...
...
@@ -3320,7 +3320,7 @@ BOOL WINAPI EncryptFileA(LPCSTR lpFileName)
/******************************************************************************
* SetSecurityInfo [ADVAPI32.@]
*/
DWORD
SetSecurityInfo
(
HANDLE
handle
,
SE_OBJECT_TYPE
ObjectType
,
DWORD
WINAPI
SetSecurityInfo
(
HANDLE
handle
,
SE_OBJECT_TYPE
ObjectType
,
SECURITY_INFORMATION
SecurityInfo
,
PSID
psidOwner
,
PSID
psidGroup
,
PACL
pDacl
,
PACL
pSacl
)
{
FIXME
(
"stub
\n
"
);
...
...
dlls/avifil32/api.c
View file @
1e365f77
...
...
@@ -2316,7 +2316,7 @@ HRESULT WINAPI AVIPutFileOnClipboard(PAVIFILE pfile)
return
AVIERR_UNSUPPORTED
;
}
HRESULT
WINAPI
AVISaveA
(
LPCSTR
szFile
,
CLSID
*
pclsidHandler
,
AVISAVECALLBACK
lpfnCallback
,
HRESULT
CDECL
AVISaveA
(
LPCSTR
szFile
,
CLSID
*
pclsidHandler
,
AVISAVECALLBACK
lpfnCallback
,
int
nStreams
,
PAVISTREAM
pavi
,
LPAVICOMPRESSOPTIONS
lpOptions
,
...)
{
FIXME
(
"(%s,%p,%p,0x%08x,%p,%p), stub!
\n
"
,
debugstr_a
(
szFile
),
pclsidHandler
,
lpfnCallback
,
...
...
@@ -2325,7 +2325,7 @@ HRESULT WINAPI AVISaveA(LPCSTR szFile, CLSID * pclsidHandler, AVISAVECALLBACK lp
return
AVIERR_UNSUPPORTED
;
}
HRESULT
WINAPI
AVISaveW
(
LPCWSTR
szFile
,
CLSID
*
pclsidHandler
,
AVISAVECALLBACK
lpfnCallback
,
HRESULT
CDECL
AVISaveW
(
LPCWSTR
szFile
,
CLSID
*
pclsidHandler
,
AVISAVECALLBACK
lpfnCallback
,
int
nStreams
,
PAVISTREAM
pavi
,
LPAVICOMPRESSOPTIONS
lpOptions
,
...)
{
FIXME
(
"(%s,%p,%p,0x%08x,%p,%p), stub!
\n
"
,
debugstr_w
(
szFile
),
pclsidHandler
,
lpfnCallback
,
...
...
dlls/wininet/urlcache.c
View file @
1e365f77
...
...
@@ -2165,13 +2165,13 @@ BOOL WINAPI DeleteUrlCacheEntryW(LPCWSTR lpszUrlName)
return
TRUE
;
}
BOOL
DeleteUrlCacheContainerA
(
DWORD
d1
,
DWORD
d2
)
BOOL
WINAPI
DeleteUrlCacheContainerA
(
DWORD
d1
,
DWORD
d2
)
{
FIXME
(
"(0x%08lx, 0x%08lx) stub
\n
"
,
d1
,
d2
);
return
TRUE
;
}
BOOL
DeleteUrlCacheContainerW
(
DWORD
d1
,
DWORD
d2
)
BOOL
WINAPI
DeleteUrlCacheContainerW
(
DWORD
d1
,
DWORD
d2
)
{
FIXME
(
"(0x%08lx, 0x%08lx) stub
\n
"
,
d1
,
d2
);
return
TRUE
;
...
...
dlls/wtsapi32/wtsapi32.c
View file @
1e365f77
...
...
@@ -89,7 +89,7 @@ BOOL WINAPI WTSEnumerateProcessesW(HANDLE hServer, DWORD Reserved, DWORD Version
/************************************************************
* WTSEnumerateEnumerateSessionsA (WTSAPI32.@)
*/
BOOL
WTSEnumerateSessionsA
(
HANDLE
hServer
,
DWORD
Reserved
,
DWORD
Version
,
BOOL
W
INAPI
W
TSEnumerateSessionsA
(
HANDLE
hServer
,
DWORD
Reserved
,
DWORD
Version
,
PWTS_SESSION_INFOA
*
ppSessionInfo
,
DWORD
*
pCount
)
{
FIXME
(
"Stub %p 0x%08lx 0x%08lx %p %p
\n
"
,
hServer
,
Reserved
,
Version
,
...
...
@@ -100,7 +100,7 @@ BOOL WTSEnumerateSessionsA(HANDLE hServer, DWORD Reserved, DWORD Version,
/************************************************************
* WTSEnumerateEnumerateSessionsW (WTSAPI32.@)
*/
BOOL
WTSEnumerateSessionsW
(
HANDLE
hServer
,
DWORD
Reserved
,
DWORD
Version
,
BOOL
W
INAPI
W
TSEnumerateSessionsW
(
HANDLE
hServer
,
DWORD
Reserved
,
DWORD
Version
,
PWTS_SESSION_INFOW
*
ppSessionInfo
,
DWORD
*
pCount
)
{
FIXME
(
"Stub %p 0x%08lx 0x%08lx %p %p
\n
"
,
hServer
,
Reserved
,
Version
,
...
...
include/aclapi.h
View file @
1e365f77
...
...
@@ -47,6 +47,9 @@ DWORD WINAPI SetEntriesInAclA( ULONG, PEXPLICIT_ACCESSA, PACL, PACL*);
DWORD
WINAPI
SetEntriesInAclW
(
ULONG
,
PEXPLICIT_ACCESSW
,
PACL
,
PACL
*
);
#define SetEntriesInAcl WINELIB_NAME_AW(SetEntriesInAcl)
DWORD
WINAPI
SetSecurityInfo
(
HANDLE
,
SE_OBJECT_TYPE
,
SECURITY_INFORMATION
,
PSID
,
PSID
,
PACL
,
PACL
);
TRUSTEE_FORM
WINAPI
GetTrusteeFormA
(
PTRUSTEEA
);
TRUSTEE_FORM
WINAPI
GetTrusteeFormW
(
PTRUSTEEW
);
#define GetTrusteeForm WINELIB_NAME_AW(GetTrusteeForm)
...
...
include/vfw.h
View file @
1e365f77
...
...
@@ -1062,6 +1062,9 @@ HRESULT WINAPI AVIStreamOpenFromFileW(PAVISTREAM *ppavi, LPCWSTR szFile,
UINT
mode
,
CLSID
*
pclsidHandler
);
#define AVIStreamOpenFromFile WINELIB_NAME_AW(AVIStreamOpenFromFile)
LONG
WINAPI
AVIStreamBeginStreaming
(
PAVISTREAM
pavi
,
LONG
lStart
,
LONG
lEnd
,
LONG
lRate
);
LONG
WINAPI
AVIStreamEndStreaming
(
PAVISTREAM
pavi
);
HRESULT
WINAPI
AVIBuildFilterA
(
LPSTR
szFilter
,
LONG
cbFilter
,
BOOL
fSaving
);
HRESULT
WINAPI
AVIBuildFilterW
(
LPWSTR
szFilter
,
LONG
cbFilter
,
BOOL
fSaving
);
#define AVIBuildFilter WINELIB_NAME_AW(AVIBuildFilter)
...
...
@@ -1070,10 +1073,10 @@ BOOL WINAPI AVISaveOptions(HWND hWnd,UINT uFlags,INT nStream,
PAVISTREAM
*
ppavi
,
LPAVICOMPRESSOPTIONS
*
ppOptions
);
HRESULT
WINAPI
AVISaveOptionsFree
(
INT
nStreams
,
LPAVICOMPRESSOPTIONS
*
ppOptions
);
HRESULT
WINAPI
AVISaveA
(
LPCSTR
szFile
,
CLSID
*
pclsidHandler
,
HRESULT
CDECL
AVISaveA
(
LPCSTR
szFile
,
CLSID
*
pclsidHandler
,
AVISAVECALLBACK
lpfnCallback
,
int
nStreams
,
PAVISTREAM
pavi
,
LPAVICOMPRESSOPTIONS
lpOptions
,
...);
HRESULT
WINAPI
AVISaveW
(
LPCWSTR
szFile
,
CLSID
*
pclsidHandler
,
HRESULT
CDECL
AVISaveW
(
LPCWSTR
szFile
,
CLSID
*
pclsidHandler
,
AVISAVECALLBACK
lpfnCallback
,
int
nStreams
,
PAVISTREAM
pavi
,
LPAVICOMPRESSOPTIONS
lpOptions
,
...);
#define AVISave WINELIB_NAME_AW(AVISave)
...
...
include/wtsapi32.h
View file @
1e365f77
...
...
@@ -89,24 +89,18 @@ typedef struct _WTS_SESSION_INFOW
WTS_CONNECTSTATE_CLASS
State
;
}
WTS_SESSION_INFOW
,
*
PWTS_SESSION_INFOW
;
BOOL
WINAPI
WTSQuerySessionInformationW
(
HANDLE
hServer
,
DWORD
SessionId
,
WTS_INFO_CLASS
WTSInfoClass
,
LPWSTR
*
Buffer
,
DWORD
*
BytesReturned
);
BOOL
WINAPI
WTSQuerySessionInformationA
(
HANDLE
hServer
,
DWORD
SessionId
,
WTS_INFO_CLASS
WTSInfoClass
,
LPSTR
*
Buffer
,
DWORD
*
BytesReturned
);
#define WTSQuerySessionInformation WINELIB_NAME_AW(WTSQuerySessionInformation)
BOOL
WINAPI
WTSWaitSystemEvent
(
HANDLE
hServer
,
DWORD
Mask
,
DWORD
*
Flags
);
void
WINAPI
WTSCloseServer
(
HANDLE
);
BOOL
WINAPI
WTSDisconnectSession
(
HANDLE
,
DWORD
,
BOOL
);
BOOL
WINAPI
WTSEnumerateProcessesA
(
HANDLE
,
DWORD
,
DWORD
,
PWTS_PROCESS_INFOA
*
,
DWORD
*
);
BOOL
WINAPI
WTSEnumerateProcessesW
(
HANDLE
,
DWORD
,
DWORD
,
PWTS_PROCESS_INFOW
*
,
DWORD
*
);
#define WTSEnumerateProcesses WINELIB_NAME_AW(WTSEnumerateProcesses)
BOOL
WINAPI
WTSEnumerateSessionsA
(
HANDLE
,
DWORD
,
DWORD
,
PWTS_SESSION_INFOA
*
,
DWORD
*
);
BOOL
WINAPI
WTSEnumerateSessionsW
(
HANDLE
,
DWORD
,
DWORD
,
PWTS_SESSION_INFOW
*
,
DWORD
*
);
#define WTSEnumerateSessions WINELIB_NAME_AW(WTSEnumerateSessions)
BOOL
WINAPI
WTSQuerySessionInformationA
(
HANDLE
,
DWORD
,
WTS_INFO_CLASS
,
LPSTR
*
,
DWORD
*
);
BOOL
WINAPI
WTSQuerySessionInformationW
(
HANDLE
,
DWORD
,
WTS_INFO_CLASS
,
LPWSTR
*
,
DWORD
*
);
#define WTSQuerySessionInformation WINELIB_NAME_AW(WTSQuerySessionInformation)
BOOL
WINAPI
WTSWaitSystemEvent
(
HANDLE
,
DWORD
,
DWORD
*
);
#ifdef __cplusplus
}
...
...
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