51 lines
1.3 KiB
C
51 lines
1.3 KiB
C
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (c) 2003 <company name>
|
|
//
|
|
// Module Name:
|
|
// ClipBook ServerEx.h
|
|
//
|
|
// Implementation File:
|
|
// ClipBook ServerEx.cpp
|
|
//
|
|
// Description:
|
|
// Global definitions across the DLL.
|
|
//
|
|
// Author:
|
|
// <name> (<e-mail name>) Mmmm DD, 2003
|
|
//
|
|
// Revision History:
|
|
//
|
|
// Notes:
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Include Files
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef __AFXWIN_H__
|
|
#error include 'stdafx.h' before including this file for PCH
|
|
#endif
|
|
|
|
#include "resource.h" // main symbols
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Constant Definitions
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Global Function Declarations
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
void
|
|
FormatError(
|
|
CString & rstrErrorInout
|
|
, DWORD dwErrorIn
|
|
);
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|