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.
19 lines
503 B
19 lines
503 B
//-----------------------------------------------------------------------------
|
|
//
|
|
// @doc
|
|
//
|
|
// @module BirthdateFunctions.h | Birthdate specific functions.
|
|
//
|
|
// Author: Darren Anderson
|
|
//
|
|
// Date: 4/26/00
|
|
//
|
|
// Copyright <cp> 1999-2000 Microsoft Corporation. All Rights Reserved.
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
#pragma once
|
|
|
|
|
|
bool IsUnder13(DATE dtBirthdate);
|
|
bool IsUnder18(DATE dtBirthdate);
|
|
bool IsUnder(DATE dtBirthdate, USHORT ulAge);
|