Leaked source code of windows server 2003
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.

15 lines
258 B

  1. #ifndef PASSPORTSYSTEM_HPP
  2. #define PASSPORTSYSTEM_HPP
  3. #include <windows.h>
  4. class PassportSystem
  5. {
  6. public:
  7. static long currentTimeInMillis()
  8. {
  9. return GetTickCount(); // BUG!! WILL OVERFLOW IN ~50 days
  10. }
  11. };
  12. #endif // !PASSPORTSYSTEM_HPP