mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +00:00
[TAPI32]
* Create a main header and move some inclusions to it. * Set the default debugging channel globally through the main header. * Remove inclusions and definitions that already exist in the main header. CORE-7716 svn path=/trunk/; revision=61447
This commit is contained in:
parent
6567b1f555
commit
ca9b838eb0
5 changed files with 27 additions and 66 deletions
|
@ -19,25 +19,7 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#define _INC_WINDOWS
|
||||
#define COM_NO_WINDOWS_H
|
||||
|
||||
#include <config.h>
|
||||
//#include "wine/port.h"
|
||||
|
||||
//#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
//#include "wingdi.h"
|
||||
#include <winreg.h>
|
||||
#include <objbase.h>
|
||||
#include <tapi.h>
|
||||
#include <wine/unicode.h>
|
||||
#include <wine/debug.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(tapi);
|
||||
#include "precomp.h"
|
||||
|
||||
/***********************************************************************
|
||||
* tapiGetLocationInfoW (TAPI32.@)
|
||||
|
|
|
@ -18,21 +18,7 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
//#include <string.h>
|
||||
//#include <stdlib.h>
|
||||
//#include <stdarg.h>
|
||||
//#include <stdio.h>
|
||||
//#include "windef.h"
|
||||
//#include "winbase.h"
|
||||
//#include "wingdi.h"
|
||||
//#include "winreg.h"
|
||||
//#include "winnls.h"
|
||||
//#include "winerror.h"
|
||||
//#include "objbase.h"
|
||||
//#include "tapi.h"
|
||||
#include <wine/debug.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(tapi);
|
||||
#include "precomp.h"
|
||||
|
||||
/***********************************************************************
|
||||
* internalConfig (TAPI32.@)
|
||||
|
|
|
@ -18,26 +18,7 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#define _INC_WINDOWS
|
||||
#define COM_NO_WINDOWS_H
|
||||
|
||||
//#include <string.h>
|
||||
//#include <stdlib.h>
|
||||
#include <stdarg.h>
|
||||
//#include <stdio.h>
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
//#include "wingdi.h"
|
||||
#include <winreg.h>
|
||||
#include <winnls.h>
|
||||
//#include "winerror.h"
|
||||
#include <objbase.h>
|
||||
#include <tapi.h>
|
||||
#include <wine/debug.h>
|
||||
#include <wine/unicode.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(tapi);
|
||||
#include "precomp.h"
|
||||
|
||||
/* registry keys */
|
||||
static const char szCountrylistKey[] =
|
||||
|
|
|
@ -18,17 +18,7 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#define _INC_WINDOWS
|
||||
#define COM_NO_WINDOWS_H
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <objbase.h>
|
||||
#include <tapi.h>
|
||||
#include <wine/debug.h>
|
||||
#include "precomp.h"
|
||||
|
||||
/*
|
||||
* Additional TSPI functions:
|
||||
|
@ -38,7 +28,6 @@
|
|||
* - TSPI_ProviderEnumDevices
|
||||
* - TSPI_ProviderConfig
|
||||
*/
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(tapi);
|
||||
|
||||
/***********************************************************************
|
||||
* phoneClose (TAPI32.@)
|
||||
|
|
23
reactos/dll/win32/tapi32/precomp.h
Normal file
23
reactos/dll/win32/tapi32/precomp.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
#ifndef _TAPI32_PCH_
|
||||
#define _TAPI32_PCH_
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#define _INC_WINDOWS
|
||||
#define COM_NO_WINDOWS_H
|
||||
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <winreg.h>
|
||||
#include <objbase.h>
|
||||
#include <tapi.h>
|
||||
|
||||
#include <wine/unicode.h>
|
||||
#include <wine/debug.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(tapi);
|
||||
|
||||
#endif /* _TAPI32_PCH_ */
|
Loading…
Reference in a new issue