Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
d69268e7
Commit
d69268e7
authored
Nov 23, 2005
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 23, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Documentation tweaks to make winapi_check happy.
Also specify the documented spec file entry.
parent
da70dc58
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
52 additions
and
13 deletions
+52
-13
resource.c
dlls/ntdll/resource.c
+4
-1
usp10.c
dlls/usp10/usp10.c
+32
-0
internet.c
dlls/wininet/internet.c
+16
-12
No files found.
dlls/ntdll/resource.c
View file @
d69268e7
...
...
@@ -360,9 +360,12 @@ static inline NTSTATUS access_resource( HMODULE hmod, const IMAGE_RESOURCE_DATA_
/**********************************************************************
* LdrAccessResource (NTDLL.@)
*
* NOTE
* On x86, Shrinker, an executable compressor, depends on the
* "call access_resource" instruction being there.
*/
#ifdef __i386__
/* Shrinker depends on the "call access_resource" instruction being there */
__ASM_GLOBAL_FUNC
(
LdrAccessResource
,
"pushl %ebp
\n\t
"
"movl %esp, %ebp
\n\t
"
...
...
dlls/usp10/usp10.c
View file @
d69268e7
...
...
@@ -50,12 +50,20 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
return
TRUE
;
}
/***********************************************************************
* ScriptGetProperties (USP10.@)
*
*/
HRESULT
WINAPI
ScriptGetProperties
(
const
SCRIPT_PROPERTIES
***
ppSp
,
int
*
piNumScripts
)
{
FIXME
(
"%p,%p
\n
"
,
ppSp
,
piNumScripts
);
return
E_NOTIMPL
;
}
/***********************************************************************
* ScriptGetFontProperties (USP10.@)
*
*/
HRESULT
WINAPI
ScriptGetFontProperties
(
HDC
hdc
,
SCRIPT_CACHE
*
psc
,
SCRIPT_FONTPROPERTIES
*
sfp
)
{
FIXME
(
"%p,%p,%p
\n
"
,
hdc
,
psc
,
sfp
);
...
...
@@ -71,12 +79,20 @@ HRESULT WINAPI ScriptGetFontProperties(HDC hdc, SCRIPT_CACHE *psc, SCRIPT_FONTPR
return
0
;
}
/***********************************************************************
* ScriptRecordDigitSubstitution (USP10.@)
*
*/
HRESULT
WINAPI
ScriptRecordDigitSubstitution
(
LCID
Locale
,
SCRIPT_DIGITSUBSTITUTE
*
psds
)
{
FIXME
(
"%ld,%p
\n
"
,
Locale
,
psds
);
return
E_NOTIMPL
;
}
/***********************************************************************
* ScriptApplyDigitSubstitution (USP10.@)
*
*/
HRESULT
WINAPI
ScriptApplyDigitSubstitution
(
const
SCRIPT_DIGITSUBSTITUTE
*
psds
,
SCRIPT_CONTROL
*
psc
,
SCRIPT_STATE
*
pss
)
{
...
...
@@ -84,6 +100,10 @@ HRESULT WINAPI ScriptApplyDigitSubstitution(const SCRIPT_DIGITSUBSTITUTE* psds,
return
E_NOTIMPL
;
}
/***********************************************************************
* ScriptItemize (USP10.@)
*
*/
HRESULT
WINAPI
ScriptItemize
(
const
WCHAR
*
pwcInChars
,
int
cInChars
,
int
cMaxItems
,
const
SCRIPT_CONTROL
*
psControl
,
const
SCRIPT_STATE
*
psState
,
SCRIPT_ITEM
*
pItems
,
int
*
pcItems
)
...
...
@@ -93,6 +113,10 @@ HRESULT WINAPI ScriptItemize(const WCHAR *pwcInChars, int cInChars, int cMaxItem
return
E_INVALIDARG
;
}
/***********************************************************************
* ScriptStringAnalyse (USP10.@)
*
*/
HRESULT
WINAPI
ScriptStringAnalyse
(
HDC
hdc
,
const
void
*
pString
,
int
cString
,
...
...
@@ -120,11 +144,19 @@ HRESULT WINAPI ScriptStringAnalyse(HDC hdc,
return
E_NOTIMPL
;
}
/***********************************************************************
* ScriptStringFree (USP10.@)
*
*/
HRESULT
WINAPI
ScriptStringFree
(
SCRIPT_STRING_ANALYSIS
*
pssa
)
{
FIXME
(
"(%p): stub
\n
"
,
pssa
);
return
S_OK
;
}
/***********************************************************************
* ScriptIsComplex (USP10.@)
*
*/
HRESULT
WINAPI
ScriptIsComplex
(
const
WCHAR
*
pwcInChars
,
int
cInChars
,
DWORD
dwFlags
)
{
FIXME
(
"(%s,%d,0x%lx): stub
\n
"
,
debugstr_w
(
pwcInChars
),
cInChars
,
dwFlags
);
return
E_NOTIMPL
;
...
...
dlls/wininet/internet.c
View file @
d69268e7
...
...
@@ -3307,7 +3307,7 @@ static VOID INTERNET_ExecuteWork(void)
/***********************************************************************
* INTERNET_GetResponseBuffer
* INTERNET_GetResponseBuffer
(internal)
*
* RETURNS
*
...
...
@@ -3436,7 +3436,7 @@ BOOL WINAPI InternetQueryDataAvailable( HINTERNET hFile,
/***********************************************************************
*
*
InternetLockRequestFile (WININET.@)
*/
BOOL
WINAPI
InternetLockRequestFile
(
HINTERNET
hInternet
,
HANDLE
*
lphLockReqHandle
)
...
...
@@ -3453,7 +3453,7 @@ BOOL WINAPI InternetUnlockRequestFile( HANDLE hLockHandle)
/***********************************************************************
*
InternetAutodial
*
InternetAutodial (WININET.@)
*
* On windows this function is supposed to dial the default internet
* connection. We don't want to have Wine dial out to the internet so
...
...
@@ -3473,7 +3473,7 @@ BOOL WINAPI InternetAutodial(DWORD dwFlags, HWND hwndParent)
}
/***********************************************************************
*
InternetAutodialHangup
*
InternetAutodialHangup (WININET.@)
*
* Hangs up a connection made with InternetAutodial
*
...
...
@@ -3493,8 +3493,7 @@ BOOL WINAPI InternetAutodialHangup(DWORD dwReserved)
}
/***********************************************************************
*
* InternetCombineUrlA
* InternetCombineUrlA (WININET.@)
*
* Combine a base URL with a relative URL
*
...
...
@@ -3520,8 +3519,7 @@ BOOL WINAPI InternetCombineUrlA(LPCSTR lpszBaseUrl, LPCSTR lpszRelativeUrl,
}
/***********************************************************************
*
* InternetCombineUrlW
* InternetCombineUrlW (WININET.@)
*
* Combine a base URL with a relative URL
*
...
...
@@ -3681,8 +3679,7 @@ static void convert_urlcomp_atow(LPURL_COMPONENTSA lpUrlComponents, LPURL_COMPON
}
/***********************************************************************
*
* InternetCreateUrlA
* InternetCreateUrlA (WININET.@)
*
* RETURNS
* TRUE on success
...
...
@@ -3732,8 +3729,7 @@ BOOL WINAPI InternetCreateUrlA(LPURL_COMPONENTSA lpUrlComponents, DWORD dwFlags,
}
/***********************************************************************
*
* InternetCreateUrlW
* InternetCreateUrlW (WININET.@)
*
* RETURNS
* TRUE on success
...
...
@@ -3818,12 +3814,20 @@ BOOL WINAPI InternetCreateUrlW(LPURL_COMPONENTSW lpUrlComponents, DWORD dwFlags,
return
TRUE
;
}
/***********************************************************************
* InternetConfirmZoneCrossingA (WININET.@)
*
*/
DWORD
WINAPI
InternetConfirmZoneCrossingA
(
HWND
hWnd
,
LPSTR
szUrlPrev
,
LPSTR
szUrlNew
,
BOOL
bPost
)
{
FIXME
(
"(%p, %s, %s, %x) stub
\n
"
,
hWnd
,
debugstr_a
(
szUrlPrev
),
debugstr_a
(
szUrlNew
),
bPost
);
return
ERROR_SUCCESS
;
}
/***********************************************************************
* InternetConfirmZoneCrossingW (WININET.@)
*
*/
DWORD
WINAPI
InternetConfirmZoneCrossingW
(
HWND
hWnd
,
LPWSTR
szUrlPrev
,
LPWSTR
szUrlNew
,
BOOL
bPost
)
{
FIXME
(
"(%p, %s, %s, %x) stub
\n
"
,
hWnd
,
debugstr_w
(
szUrlPrev
),
debugstr_w
(
szUrlNew
),
bPost
);
...
...
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