remove my WinCE support attempt

svn path=/trunk/; revision=14425
This commit is contained in:
Steven Edwards 2005-04-01 21:19:23 +00:00
parent 8e401adc6b
commit e231640a15
4 changed files with 0 additions and 1470 deletions

View file

@ -1,19 +0,0 @@
PATH_TO_TOP = ../..
TARGET_TYPE = dynlink
TARGET_NAME = coredll
TARGET_BASE=$(TARGET_BASE_LIB_COREDLL)
# require os code to explicitly request A/W version of structs/functions
TARGET_CFLAGS += -D_DISABLE_TIDENTS -Wall -Werror
TARGET_SDKLIBS = ntdll.a kernel32.a
TARGET_OBJECTS = coredll_main.o
include $(PATH_TO_TOP)/rules.mak
include $(TOOLS_PATH)/helper.mk

File diff suppressed because it is too large Load diff

View file

@ -1,7 +0,0 @@
/* $Id$ */
#define REACTOS_VERSION_DLL
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS WinCE Compatiblity Layer\0"
#define REACTOS_STR_INTERNAL_NAME "coredll\0"
#define REACTOS_STR_ORIGINAL_FILENAME "coredll.dll\0"
#include <reactos/version.rc>

View file

@ -1,39 +0,0 @@
/*
* ReactOS-CE Core OS Dll
*
* Copyright 2004 Steven Edwards
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* TODO:
* ATM this is just a dummy forwarding dll for the WinCE API to Win32 API
* When you exit a simple WinCE app on Windows or on ReactOS it causes
* a program error or unhandled exception probl'y because we dont handle
* threading and process attaching/detaching like we should here.
*
* There will be some parts of the WinCE API that cant just be forwarded to
* the Win32 API as paramater names or types may differ. In that case you will
* need to copy the Win32 implementation and make the needed changes.
*/
#include "windows.h"
BOOL STDCALL
DllMain(HANDLE hDll,
DWORD dwReason,
LPVOID lpReserved)
{
return TRUE;
}