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.
34 lines
797 B
34 lines
797 B
//------------------------------------------------------------------------------
|
|
//
|
|
// File: dllvars.h
|
|
// Copyright (C) 1995-1997 Microsoft Corporation
|
|
// All rights reserved.
|
|
//
|
|
// Purpose:
|
|
// Global variables and functions for the parser DLL
|
|
//
|
|
// YOU SHOULD NOT NEED TO TOUCH ANYTHING IN THIS FILE. This code contains
|
|
// nothing parser-specific and is used only by the framework.
|
|
//
|
|
// Owner:
|
|
//
|
|
//------------------------------------------------------------------------------
|
|
|
|
#ifndef DLLVARS_H
|
|
#define DLLVARS_H
|
|
|
|
|
|
void IncrementClassCount();
|
|
void DecrementClassCount();
|
|
|
|
#ifdef __DLLENTRY_CPP
|
|
#define __DLLENTRY_EXTERN
|
|
#else
|
|
#define __DLLENTRY_EXTERN extern
|
|
#endif
|
|
|
|
__DLLENTRY_EXTERN HMODULE g_hDll;
|
|
__DLLENTRY_EXTERN PUID g_puid;
|
|
|
|
|
|
#endif // DLLVARS_H
|