mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
[ITSS] Sync with Wine Staging 3.3. CORE-14434
This commit is contained in:
parent
1e8f5b1909
commit
919215fd3b
8 changed files with 103 additions and 15 deletions
|
@ -54,7 +54,20 @@
|
|||
* *
|
||||
***************************************************************************/
|
||||
|
||||
#include "precomp.h"
|
||||
#include "config.h"
|
||||
#include "wine/port.h"
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "wine/unicode.h"
|
||||
|
||||
#include "chm_lib.h"
|
||||
#include "lzx.h"
|
||||
|
||||
#define CHM_ACQUIRE_LOCK(a) do { \
|
||||
EnterCriticalSection(&(a)); \
|
||||
|
|
|
@ -21,9 +21,30 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include "precomp.h"
|
||||
#include "config.h"
|
||||
|
||||
#include <rpcproxy.h>
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#define COBJMACROS
|
||||
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "winuser.h"
|
||||
#include "winreg.h"
|
||||
#include "ole2.h"
|
||||
#include "rpcproxy.h"
|
||||
#include "advpub.h"
|
||||
|
||||
#include "wine/unicode.h"
|
||||
#include "wine/debug.h"
|
||||
|
||||
#include "itsstor.h"
|
||||
|
||||
#include "initguid.h"
|
||||
#include "wine/itss.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(itss);
|
||||
|
||||
static HRESULT ITSS_create(IUnknown *pUnkOuter, LPVOID *ppObj);
|
||||
|
||||
|
|
|
@ -35,7 +35,14 @@
|
|||
*
|
||||
***************************************************************************/
|
||||
|
||||
#include "precomp.h"
|
||||
#include "lzx.h"
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
|
||||
/* sized types */
|
||||
typedef unsigned char UBYTE; /* 8 bits exactly */
|
||||
|
|
|
@ -20,9 +20,25 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include "precomp.h"
|
||||
#include "config.h"
|
||||
|
||||
#include <oleidl.h>
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#define COBJMACROS
|
||||
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "winuser.h"
|
||||
#include "ole2.h"
|
||||
|
||||
#include "wine/itss.h"
|
||||
#include "wine/unicode.h"
|
||||
#include "wine/debug.h"
|
||||
|
||||
#include "itsstor.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(itss);
|
||||
|
||||
/*****************************************************************************/
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
|
||||
#ifndef _ITSS_PCH_
|
||||
#define _ITSS_PCH_
|
||||
|
||||
|
@ -18,12 +19,10 @@
|
|||
|
||||
#include <wine/itss.h>
|
||||
#include <wine/unicode.h>
|
||||
|
||||
#include <wine/debug.h>
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(itss);
|
||||
|
||||
#include "chm_lib.h"
|
||||
#include "itsstor.h"
|
||||
#include "lzx.h"
|
||||
|
||||
#endif /* _ITSS_PCH_ */
|
||||
#endif /* !_ITSS_PCH_ */
|
||||
|
|
|
@ -16,11 +16,24 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include "precomp.h"
|
||||
#include <stdarg.h>
|
||||
|
||||
#include <winreg.h>
|
||||
#include <urlmon.h>
|
||||
#include <shlwapi.h>
|
||||
#define COBJMACROS
|
||||
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "winuser.h"
|
||||
#include "winreg.h"
|
||||
#include "ole2.h"
|
||||
#include "urlmon.h"
|
||||
#include "shlwapi.h"
|
||||
#include "itsstor.h"
|
||||
#include "chm_lib.h"
|
||||
|
||||
#include "wine/debug.h"
|
||||
#include "wine/unicode.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(itss);
|
||||
|
||||
typedef struct {
|
||||
IInternetProtocol IInternetProtocol_iface;
|
||||
|
|
|
@ -20,7 +20,26 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include "precomp.h"
|
||||
#include "config.h"
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#define COBJMACROS
|
||||
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "winuser.h"
|
||||
#include "ole2.h"
|
||||
|
||||
#include "chm_lib.h"
|
||||
#include "itsstor.h"
|
||||
|
||||
#include "wine/itss.h"
|
||||
#include "wine/unicode.h"
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(itss);
|
||||
|
||||
/************************************************************************/
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@ reactos/dll/win32/initpki # Synced to WineStaging-3.3
|
|||
reactos/dll/win32/inseng # Synced to WineStaging-3.3
|
||||
reactos/dll/win32/iphlpapi # Out of sync
|
||||
reactos/dll/win32/itircl # Synced to WineStaging-3.3
|
||||
reactos/dll/win32/itss # Synced to Wine-3.0
|
||||
reactos/dll/win32/itss # Synced to WineStaging-3.3
|
||||
reactos/dll/win32/jscript # Synced to Wine-3.0
|
||||
reactos/dll/win32/jsproxy # Synced to WineStaging-2.16
|
||||
reactos/dll/win32/loadperf # Synced to WineStaging-2.9
|
||||
|
|
Loading…
Reference in a new issue