- Revert 35008

svn path=/trunk/; revision=35011
This commit is contained in:
Stefan Ginsberg 2008-08-01 16:29:40 +00:00
parent e5aa7fccf6
commit 50560726e9
39 changed files with 73 additions and 91 deletions

View file

@ -29,8 +29,9 @@
* UPDATE HISTORY:
* 07/09/2004 Created
*/
#include <windows.h>
#include "acleditint.h"
#include "resource.h"
HINSTANCE hDllInstance;

View file

@ -8,7 +8,6 @@
<library>kernel32</library>
<library>advapi32</library>
<library>user32</library>
<pch>acleditint.h</pch>
<file>acledit.c</file>
<file>stubs.c</file>
<file>acledit.rc</file>

View file

@ -1,4 +1,5 @@
#include "acleditint.h"
#include <windows.h>
#include "resource.h"
#define REACTOS_VERSION_DLL
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Access Control Editor\0"

View file

@ -1,10 +1,6 @@
#ifndef __ACLEDITINT_H
#define __ACLEDITINT_H
#include <windows.h>
#define IDI_DEVMGR 100
extern HINSTANCE hDllInstance;
typedef struct _ACL_HELP_CONTROL

View file

@ -0,0 +1,8 @@
#ifndef __DEVMGR_RESOURCE_H
#define __DEVMGR_RESOURCE_H
#define IDI_DEVMGR 100
#endif /* __DEVMGR_RESOURCE_H */
/* EOF */

View file

@ -13,7 +13,7 @@
* UPDATE HISTORY:
* 07/09/2004 Created
*/
#include <windows.h>
#include "acleditint.h"
ULONG DbgPrint(PCH Format,...);

View file

@ -40,7 +40,16 @@
*/
#define CONTINUOUS_NOTES
#include <beepmidi.h>
#define WIN32_NO_STATUS
#define NTOS_MODE_USER
#include <windows.h>
#include <ndk/ntndk.h>
#include <stdio.h>
#include <ntddbeep.h>
#include <math.h>
#include <mmddk.h>
#include <mmsystem.h>
/*#define DPRINT printf*/
#define DPRINT FakePrintf

View file

@ -1,15 +0,0 @@
#ifndef _BEEPMIDI_H_
#define _BEEPMIDI_H_
#define WIN32_NO_STATUS
#define NTOS_MODE_USER
#include <windows.h>
#include <ndk/ntndk.h>
#include <stdio.h>
#include <ntddbeep.h>
#include <math.h>
#include <mmddk.h>
#include <mmsystem.h>
#endif

View file

@ -5,6 +5,5 @@
<library>kernel32</library>
<library>user32</library>
<library>winmm</library>
<pch>beepmidi.h</pch>
<file>beepmidi.c</file>
</module>

View file

@ -18,6 +18,9 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <stdarg.h>
#include "windows.h"
#include "cards.h"
HBITMAP g_CardBitmaps[MAX_CARD_BITMAPS];

View file

@ -21,9 +21,6 @@
#ifndef _CARDS_H
#define _CARDS_H
#include <stdarg.h>
#include "windows.h"
/*
* 52 card faces +
* 12 card backs +

View file

@ -8,7 +8,6 @@
<library>kernel32</library>
<library>gdi32</library>
<library>user32</library>
<pch>cards.h</pch>
<file>cards.c</file>
<file>cards.rc</file>
</module>

View file

@ -18,7 +18,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "cards.h"
#include <windows.h>
#define REACTOS_VERSION_DLL
#define REACTOS_STR_FILE_DESCRIPTION "Cardplaying Helper DLL\0"

View file

@ -17,7 +17,12 @@
*/
#include <precomp.h>
#include <internal/wine/msvcrt.h>
#include <sys/stat.h>
#include <locale.h>
#include <mbctype.h>
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(crtdll);

View file

@ -5,11 +5,5 @@
#include <windows.h>
#include <internal/tls.h>
#include <stdlib.h>
#include <internal/wine/msvcrt.h>
#include <sys/stat.h>
#include <locale.h>
#include <mbctype.h>
#include "wine/debug.h"
#endif /* _CRT_PRECOMP_H */

View file

@ -138,7 +138,7 @@ static BOOL pe_load_dbg_file(const struct process* pcs, struct module* module,
else
WINE_ERR("-Unable to peruse .DBG file %s (%s)\n", dbg_name, debugstr_a(tmp));
if (dbg_mapping) UnmapViewOfFile((PVOID)dbg_mapping);
if (dbg_mapping) UnmapViewOfFile(dbg_mapping);
if (hMap) CloseHandle(hMap);
if (hFile != INVALID_HANDLE_VALUE) CloseHandle(hFile);
return ret;
@ -266,7 +266,7 @@ static BOOL pe_load_export_debug_info(const struct process* pcs,
for (j = 0; j < exports->NumberOfNames; j++)
if ((ordinals[j] == i) && names[j]) break;
if (j < exports->NumberOfNames) continue;
snprintf(buffer, sizeof(buffer), "%lu", i + exports->Base);
snprintf(buffer, sizeof(buffer), "%d", i + exports->Base);
symt_new_public(module, NULL, buffer, base + (DWORD)functions[i], 1,
TRUE /* FIXME */, TRUE /* FIXME */);
}

View file

@ -6,7 +6,11 @@
* COPYRIGHT: Copyright 2005 Art Yerkes <ayerkes@speakeasy.net>
*/
#include <dhcpsvc.h>
#include <roscfg.h>
#include <winsock2.h>
#include <dhcpcsdk.h>
#include <time.h>
#include <dhcp/rosdhcp_public.h>
#define NDEBUG
#include <debug.h>

View file

@ -8,7 +8,6 @@
<library>msvcrt</library>
<library>ws2_32</library>
<library>iphlpapi</library>
<pch>dhcpsvc.h</pch>
<file>dhcpcsvc.c</file>
<file>dhcpcsvc.rc</file>
<file>dhcpcsvc.spec</file>

View file

@ -1,10 +0,0 @@
#ifndef _DHCPSVC_H_
#define _DHCPSVC_H_
#include <roscfg.h>
#include <winsock2.h>
#include <dhcpcsdk.h>
#include <time.h>
#include <dhcp/rosdhcp_public.h>
#endif

View file

@ -9,7 +9,7 @@
<library>kernel32</library>
<library>user32</library>
<library>usp10</library>
<pch>ros_lpk.h</pch>
<file>dllmain.c</file>
<file>stub.c</file>

View file

@ -1,6 +1,13 @@
/* INCLUDES ****************************************************************/
#include "precomp.h"
#define WIN32_NO_STATUS
#include <windows.h>
#include <ntsecapi.h>
#define NTOS_MODE_USER
#include <ndk/ntndk.h>
#include "lsa_s.h"
#define NDEBUG
#include <debug.h>

View file

@ -1,4 +1,8 @@
#include "precomp.h"
#define WIN32_NO_STATUS
#include <windows.h>
#define NTOS_MODE_USER
#include <ndk/ntndk.h>
#define NDEBUG
#include <debug.h>

View file

@ -9,7 +9,6 @@
<library>kernel32</library>
<library>rpcrt4</library>
<library>pseh</library>
<pch>precomp.h</pch>
<file>lsarpc.c</file>
<file>lsasrv.c</file>
<file>lsasrv.rc</file>

View file

@ -1,7 +0,0 @@
#define WIN32_NO_STATUS
#include <windows.h>
#include <ntsecapi.h>
#define NTOS_MODE_USER
#include <ndk/ntndk.h>
#include "lsa_s.h"

View file

@ -1,5 +0,0 @@
#define WIN32_NO_STATUS
#include <windows.h>
#define NTOS_MODE_USER
#include <ndk/ntndk.h>
#include <fmifs/fmifs.h>

View file

@ -7,7 +7,11 @@
* PROGRAMMERS: Pierre Schweitzer
*/
#include "precomp.h"
#define WIN32_NO_STATUS
#include <windows.h>
#define NTOS_MODE_USER
#include <ndk/ntndk.h>
#include <fmifs/fmifs.h>
INT WINAPI
DllMain(

View file

@ -5,7 +5,6 @@
<define name="_WIN32_WINNT">0x0600</define>
<library>ext2lib</library>
<library>ntdll</library>
<pch>precomp.h</pch>
<file>uext2.c</file>
<file>uext2.rc</file>
</module>

View file

@ -1,5 +0,0 @@
#define WIN32_NO_STATUS
#include <windows.h>
#define NTOS_MODE_USER
#include <ndk/ntndk.h>
#include <fmifs/fmifs.h>

View file

@ -7,7 +7,11 @@
* PROGRAMMERS: Hervé Poussineau (hpoussin@reactos.org)
*/
#include "precomp.h"
#define WIN32_NO_STATUS
#include <windows.h>
#define NTOS_MODE_USER
#include <ndk/ntndk.h>
#include <fmifs/fmifs.h>
INT WINAPI
DllMain(

View file

@ -5,7 +5,6 @@
<define name="_WIN32_WINNT">0x0600</define>
<library>vfatlib</library>
<library>ntdll</library>
<pch>precomp.h</pch>
<file>ufat.c</file>
<file>ufat.rc</file>
</module>

View file

@ -1,5 +0,0 @@
#define WIN32_NO_STATUS
#include <windows.h>
#define NTOS_MODE_USER
#include <ndk/ntndk.h>
#include <fmifs/fmifs.h>

View file

@ -7,7 +7,11 @@
* PROGRAMMERS: Pierre Schweitzer
*/
#include "precomp.h"
#define WIN32_NO_STATUS
#include <windows.h>
#define NTOS_MODE_USER
#include <ndk/ntndk.h>
#include <fmifs/fmifs.h>
INT WINAPI
DllMain(

View file

@ -5,7 +5,6 @@
<define name="_WIN32_WINNT">0x0600</define>
<library>ntfslib</library>
<library>ntdll</library>
<pch>precomp.h</pch>
<file>untfs.c</file>
<file>untfs.rc</file>
</module>

View file

@ -5,7 +5,6 @@
<library>ntdll</library>
<library>kernel32</library>
<library>ws2_32</library>
<pch>ws2help.h</pch>
<file>ws2help.c</file>
<file>ws2help.rc</file>
</module>

View file

@ -5,7 +5,6 @@
<library>ntdll</library>
<library>kernel32</library>
<library>ws2_32</library>
<pch>wshirda.h</pch>
<file>wshirda.c</file>
<file>wshirda.rc</file>
</module>

View file

@ -6,7 +6,6 @@
<library>ntdll</library>
<library>kernel32</library>
<library>ws2_32</library>
<pch>wshtcpip.h</pch>
<file>wshtcpip.c</file>
<file>wshtcpip.rc</file>
</module>

View file

@ -1,4 +1,5 @@
/*
/* $Id$
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS WinSock DLL
* FILE: stubs.c
@ -6,8 +7,9 @@
* PROGRAMMERS: Ge van Geldorp (ge@gse.nl)
* REVISIONS:
*/
#include "wsock32.h"
#include <winsock2.h>
#include <windows.h>
//#include <stdlib.h>
/*
* @unimplemented

View file

@ -1,2 +0,0 @@
#include <winsock2.h>
#include <windows.h>

View file

@ -4,7 +4,6 @@
<library>ntdll</library>
<library>kernel32</library>
<library>ws2_32</library>
<pch>wsock32.h</pch>
<file>stubs.c</file>
<file>wsock32.rc</file>
</module>