Source code of Windows XP (NT5)
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
503 B

  1. //-----------------------------------------------------------------------------
  2. //
  3. // @doc
  4. //
  5. // @module BirthdateFunctions.h | Birthdate specific functions.
  6. //
  7. // Author: Darren Anderson
  8. //
  9. // Date: 4/26/00
  10. //
  11. // Copyright <cp> 1999-2000 Microsoft Corporation. All Rights Reserved.
  12. //
  13. //-----------------------------------------------------------------------------
  14. #pragma once
  15. bool IsUnder13(DATE dtBirthdate);
  16. bool IsUnder18(DATE dtBirthdate);
  17. bool IsUnder(DATE dtBirthdate, USHORT ulAge);