Documentation tweaks to make winapi_check happy.
Also specify the documented spec file entry.
diff --git a/dlls/ntdll/resource.c b/dlls/ntdll/resource.c
index 056ab0d..0d8aa2c 100644
--- a/dlls/ntdll/resource.c
+++ b/dlls/ntdll/resource.c
@@ -360,9 +360,12 @@
 
 /**********************************************************************
  *	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"
diff --git a/dlls/usp10/usp10.c b/dlls/usp10/usp10.c
index 11e7905..42e6f40 100644
--- a/dlls/usp10/usp10.c
+++ b/dlls/usp10/usp10.c
@@ -50,12 +50,20 @@
     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 @@
     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 @@
     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 @@
     return E_INVALIDARG;
 }
 
+/***********************************************************************
+ *      ScriptStringAnalyse (USP10.@)
+ *
+ */
 HRESULT WINAPI ScriptStringAnalyse(HDC hdc, 
 				   const void *pString, 
 				   int cString, 
@@ -120,11 +144,19 @@
   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;
diff --git a/dlls/wininet/internet.c b/dlls/wininet/internet.c
index eaf542b..3df727a 100644
--- a/dlls/wininet/internet.c
+++ b/dlls/wininet/internet.c
@@ -3307,7 +3307,7 @@
 
 
 /***********************************************************************
- *          INTERNET_GetResponseBuffer
+ *          INTERNET_GetResponseBuffer  (internal)
  *
  * RETURNS
  *
@@ -3436,7 +3436,7 @@
 
 
 /***********************************************************************
- *
+ *      InternetLockRequestFile (WININET.@)
  */
 BOOL WINAPI InternetLockRequestFile( HINTERNET hInternet, HANDLE
 *lphLockReqHandle)
@@ -3453,7 +3453,7 @@
 
 
 /***********************************************************************
- *           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 @@
 }
 
 /***********************************************************************
- *           InternetAutodialHangup
+ *      InternetAutodialHangup (WININET.@)
  *
  * Hangs up a connection made with InternetAutodial
  *
@@ -3493,8 +3493,7 @@
 }
 
 /***********************************************************************
- *
- *         InternetCombineUrlA
+ *      InternetCombineUrlA (WININET.@)
  *
  * Combine a base URL with a relative URL
  *
@@ -3520,8 +3519,7 @@
 }
 
 /***********************************************************************
- *
- *         InternetCombineUrlW
+ *      InternetCombineUrlW (WININET.@)
  *
  * Combine a base URL with a relative URL
  *
@@ -3681,8 +3679,7 @@
 }
 
 /***********************************************************************
- *
- *         InternetCreateUrlA
+ *      InternetCreateUrlA (WININET.@)
  *
  * RETURNS
  *   TRUE on success
@@ -3732,8 +3729,7 @@
 }
 
 /***********************************************************************
- *
- *         InternetCreateUrlW
+ *      InternetCreateUrlW (WININET.@)
  *
  * RETURNS
  *   TRUE on success
@@ -3818,12 +3814,20 @@
     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);