mirror of https://github.com/tongzx/nt5src
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.
57 lines
1.6 KiB
57 lines
1.6 KiB
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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_
|