1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /*++
- Copyright (c) 2015 Minoca Corp.
- This file is licensed under the terms of the GNU Lesser General Public
- License version 3. Alternative licensing terms are available. Contact
- info@minocacorp.com for details.
- 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
|