ReactOS 0.4.15-dev-8058-ga7cbb60
appcompat.c
Go to the documentation of this file.
1/*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS Base API Server DLL
4 * FILE: subsystems/win/basesrv/appcompat.c
5 * PURPOSE: Initialization
6 * PROGRAMMERS: Timo Kreuzer (timo.kreuzer@reactos.org)
7 */
8
9/* INCLUDES *******************************************************************/
10
11#include "basesrv.h"
12#include "api.h"
13
14#define NDEBUG
15#include <debug.h>
16
17/* GLOBALS ********************************************************************/
18
20{
36
38{
53
54/* PUBLIC SERVER APIS *********************************************************/
55
56CSR_API(BaseSrvCheckApplicationCompatibility)
57{
58 PBASE_APP_COMPAT_DATA AppCompatData = (PBASE_APP_COMPAT_DATA)&ApiMessage->Data;
59 DPRINT1("BASESRV: BaseSrvCheckApplicationCompatibility(%wZ)\n",
60 AppCompatData->FileName);
61
62 AppCompatData->CheckRunAppResult = FALSE;
63
64 return STATUS_SUCCESS;
65}
66
67/* EOF */
struct _BASE_APP_COMPAT_DATA BASE_APP_COMPAT_DATA
struct _BASE_APP_COMPAT_EXTRA1 BASE_APP_COMPAT_EXTRA1
struct _BASE_APP_COMPAT_EXTRA1 * PBASE_APP_COMPAT_EXTRA1
struct _BASE_APP_COMPAT_DATA * PBASE_APP_COMPAT_DATA
#define DPRINT1
Definition: precomp.h:8
#define CSR_API(n)
Definition: csrsrv.h:176
#define FALSE
Definition: types.h:117
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned short USHORT
Definition: pedump.c:61
#define STATUS_SUCCESS
Definition: shellext.h:65
PBASE_APP_COMPAT_EXTRA1 AppCompExtra1
Definition: appcompat.c:46
UNICODE_STRING FileName
Definition: appcompat.c:39
uint32_t ULONG
Definition: typedefs.h:59
__wchar_t WCHAR
Definition: xmlstorage.h:180
char CHAR
Definition: xmlstorage.h:175