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.
20 lines
383 B
20 lines
383 B
// Copyright (c) 1997-2001 Microsoft Corporation, All Rights Reserved
|
|
#ifndef SIMC_IMOS_GEN_H
|
|
#define SIMC_IMOS_GEN_H
|
|
|
|
|
|
const int INFO_MESSAGE_SIZE = 1024;
|
|
#define INFO_MESSAGES_DLL "smimsgif.dll"
|
|
|
|
typedef void ** PPVOID;
|
|
typedef CList<CString, CString&> SIMCStringList;
|
|
|
|
void InformationMessage(int messageType, ...);
|
|
|
|
extern CString versionString;
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|