52 lines
1.2 KiB
C
52 lines
1.2 KiB
C
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// Copyright (c) 1996-1997 Microsoft Corporation
|
||
|
//
|
||
|
// Module Name:
|
||
|
// IISClEx3.h
|
||
|
//
|
||
|
// Abstract:
|
||
|
// Global definitions across the DLL.
|
||
|
//
|
||
|
// Implementation File:
|
||
|
// IISClEx3.cpp
|
||
|
//
|
||
|
// Author:
|
||
|
// David Potter (davidp) August 23, 1996
|
||
|
//
|
||
|
// Revision History:
|
||
|
//
|
||
|
// Notes:
|
||
|
//
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#ifndef _IISCLEX3_H_
|
||
|
#define _IISCLEX3_H_
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// Include Files
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#ifndef __AFXWIN_H__
|
||
|
#error include 'stdafx.h' before including this file for PCH
|
||
|
#endif
|
||
|
|
||
|
#include "resource.h"
|
||
|
|
||
|
#ifndef _CONSTDEF_H_
|
||
|
#include "ConstDef.h"
|
||
|
#endif
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// Global Function Declarations
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
void FormatError(CString & rstrError, DWORD dwError);
|
||
|
|
||
|
extern const WCHAR g_wszResourceTypeNames[];
|
||
|
extern const DWORD g_cchResourceTypeNames;
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#endif // _IISCLEX3_H_
|