22 lines
557 B
C
Executable File
22 lines
557 B
C
Executable File
//-----------------------------------------------------------------------------
|
|
// -------------------
|
|
// File ....: alerts.h
|
|
// -------------------
|
|
// Author...: Gus J Grubba
|
|
// Date ....: April 1997
|
|
// O.S. ....: Windows NT 4.0
|
|
//
|
|
// History .: Apr, 02 1997 - Created
|
|
//
|
|
// 3D Studio Max Notification Alerts
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _ALERTS_H_
|
|
#define _ALERTS_H_
|
|
|
|
#define NOTIFY_FAILURE (1<<0)
|
|
#define NOTIFY_PROGRESS (1<<1)
|
|
#define NOTIFY_COMPLETION (1<<2)
|
|
|
|
#endif |