19 lines
478 B
C
19 lines
478 B
C
|
//--------------------------------------------------------------------------
|
||
|
// TimeBomb.H
|
||
|
//--------------------------------------------------------------------------
|
||
|
|
||
|
#ifndef _TIMEBOMB_H_
|
||
|
|
||
|
#include "IPServer.H"
|
||
|
#include "winbase.h"
|
||
|
|
||
|
#define SZEXPIRED1 "Sorry, this control has expired. Please obtain a newer version"
|
||
|
#define SZEXPIRED2 "Expired"
|
||
|
|
||
|
//prototypes
|
||
|
BOOL CheckExpired (void);
|
||
|
BOOL After (SYSTEMTIME t1, SYSTEMTIME t2);
|
||
|
|
||
|
#define _TIMEBOMB_H_
|
||
|
#endif // _TIMEBOMB_H_
|