123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /*++
- Copyright (c) 2015 Minoca Corp.
- This file is licensed under the terms of the GNU General Public License
- version 3. Alternative licensing terms are available. Contact
- info@minocacorp.com for details. See the LICENSE file at the root of this
- project for complete licensing information.
- Module Name:
- lastlog.h
- Abstract:
- This header contains definitions for getting the last login time of a user.
- It is provided for compatibility.
- Author:
- Evan Green 4-Mar-2015
- --*/
- #ifndef _LASTLOG_H
- #define _LASTLOG_H
- //
- // ------------------------------------------------------------------- Includes
- //
- #include <utmp.h>
- //
- // ---------------------------------------------------------------- Definitions
- //
- //
- // ------------------------------------------------------ Data Type Definitions
- //
- //
- // -------------------------------------------------------------------- Globals
- //
- //
- // -------------------------------------------------------- Function Prototypes
- //
- #endif
|