mirror of https://github.com/tongzx/nt5src
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.
18 lines
478 B
18 lines
478 B
//--------------------------------------------------------------------------
|
|
// 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_
|