58 lines
1.6 KiB
C
58 lines
1.6 KiB
C
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (c) 1996 <company name>
|
|
//
|
|
// Module Name:
|
|
// SmbSmpEx.h
|
|
//
|
|
// Abstract:
|
|
// Global definitions across the DLL.
|
|
//
|
|
// Implementation File:
|
|
// SmbSmpEx.cpp
|
|
//
|
|
// Author:
|
|
// <name> (<e-mail name>) Mmmm DD, 1996
|
|
//
|
|
// Revision History:
|
|
//
|
|
// Notes:
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _SMBSMPEX_H_
|
|
#define _SMBSMPEX_H_
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Include Files
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef __AFXWIN_H__
|
|
#error include 'stdafx.h' before including this file for PCH
|
|
#endif
|
|
|
|
#include "resource.h" // main symbols
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Constant Definitions
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#define REGPARAM_PARAMETERS L"Parameters"
|
|
#define REGPARAM_RESOURCE_SHARENAME L"ShareName"
|
|
#define REGPARAM_RESOURCE_PATH L"Path"
|
|
#define REGPARAM_RESOURCE_REMARK L"Remark"
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Global Function Declarations
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
void FormatError(CString & rstrError, DWORD dwError);
|
|
|
|
// Defined in Extensn.cpp
|
|
extern const WCHAR g_wszResourceTypeNames[];
|
|
extern const DWORD g_cchResourceTypeNames;
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#endif // _SMBSMPEX_H_
|