Annotation of embedaddon/ntp/ports/winnt/ppsapi/skelprov/skeleton-ppsapi-provider.h, revision 1.1
1.1 ! misho 1: //
! 2: // serialpps-ppsapi-provider.h
! 3: //
! 4: // For this tiny project the single header serves as a precompiled header
! 5: // as well, meaning all the bulky headers are included before or within it.
! 6: // Within, in this case.
! 7: //
! 8:
! 9: #define _CRT_SECURE_NO_WARNINGS
! 10: #include <stdio.h>
! 11: /* Prevent inclusion of winsock.h in windows.h */
! 12: #ifndef _WINSOCKAPI_
! 13: #define _WINSOCKAPI_
! 14: #endif
! 15: #include <windows.h>
! 16: typedef DWORD u_int32;
! 17: #include "sys/time.h"
! 18: #include "../../include/timepps.h"
! 19:
! 20: #ifndef UNUSED
! 21: #define UNUSED(item) ((void)(item))
! 22: #endif
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>