You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
987 B
34 lines
987 B
/*************************************************************************************
|
|
* *
|
|
* AppCompat.h -- Appcompat procedure declarations, constant definitions and macros *
|
|
* *
|
|
* Copyright (c) Microsoft Corporation. All rights reserved. *
|
|
* *
|
|
**************************************************************************************/
|
|
|
|
|
|
#ifndef __APPCOMPAT_H_
|
|
#define __APPCOMPAT_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef SDBAPI
|
|
#define SDBAPI STDAPICALLTYPE
|
|
#endif
|
|
|
|
BOOL
|
|
SDBAPI
|
|
ApphelpCheckShellObject(
|
|
IN REFCLSID ObjectCLSID,
|
|
IN BOOL bShimIfNecessary,
|
|
OUT ULONGLONG* pullFlags
|
|
);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // __APPCOMPAT_H_
|