1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
/*
* Timestamp functions
*
* Copyright (C) 2013-2023, Joachim Metz <joachim.metz@gmail.com>
*
* Refer to AUTHORS for acknowledgements.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#if !defined( _LIBCDATETIME_INTERNAL_TIMESTAMP_H )
#define _LIBCDATETIME_INTERNAL_TIMESTAMP_H
#include <common.h>
#include <types.h>
#if !defined( WINAPI )
#if defined( HAVE_SYS_TIME_H )
#include <sys/time.h>
#endif
#include <time.h>
#endif /* !defined( WINAPI ) */
#include "libcdatetime_extern.h"
#include "libcdatetime_libcerror.h"
#include "libcdatetime_types.h"
#if defined( __cplusplus )
extern "C" {
#endif
typedef struct libcdatetime_internal_timestamp libcdatetime_internal_timestamp_t;
struct libcdatetime_internal_timestamp
{
#if defined( WINAPI ) && ( WINVER >= 0x0500 )
/* The filetime timestamp
*/
FILETIME filetime;
#elif defined( WINAPI )
/* TODO */
#error WINAPI timestamp type for Windows NT4 or earlier NOT implemented yet
#else
/* The time
*/
time_t time;
#endif
};
LIBCDATETIME_EXTERN \
int libcdatetime_timestamp_initialize(
libcdatetime_timestamp_t **timestamp,
libcerror_error_t **error );
LIBCDATETIME_EXTERN \
int libcdatetime_timestamp_free(
libcdatetime_timestamp_t **timestamp,
libcerror_error_t **error );
LIBCDATETIME_EXTERN \
int libcdatetime_timestamp_copy(
libcdatetime_timestamp_t *destination_timestamp,
const libcdatetime_timestamp_t *source_timestamp,
libcerror_error_t **error );
LIBCDATETIME_EXTERN \
int libcdatetime_timestamp_set_current_time(
libcdatetime_timestamp_t *timestamp,
libcerror_error_t **error );
LIBCDATETIME_EXTERN \
int libcdatetime_timestamp_get_delta_in_seconds(
libcdatetime_timestamp_t *first_timestamp,
libcdatetime_timestamp_t *second_timestamp,
int64_t *number_of_seconds,
libcerror_error_t **error );
LIBCDATETIME_EXTERN \
int libcdatetime_timestamp_get_string_size(
libcdatetime_timestamp_t *timestamp,
size_t *string_size,
uint32_t string_format_flags,
libcerror_error_t **error );
LIBCDATETIME_EXTERN \
int libcdatetime_timestamp_copy_to_string(
libcdatetime_timestamp_t *timestamp,
uint8_t *string,
size_t string_size,
uint32_t string_format_flags,
libcerror_error_t **error );
LIBCDATETIME_EXTERN \
int libcdatetime_timestamp_copy_to_string_with_index(
libcdatetime_timestamp_t *timestamp,
uint8_t *string,
size_t string_size,
size_t *string_index,
uint32_t string_format_flags,
libcerror_error_t **error );
#if defined( __cplusplus )
}
#endif
#endif /* !defined( _LIBCDATETIME_INTERNAL_TIMESTAMP_H ) */
|