Source code of Windows XP (NT5)
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.

56 lines
936 B

  1. /*++ BUILD Version: 0001 // Increment this if a change has global effects
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. lui.h
  5. Abstract:
  6. This file maps the LM 2.x include file name to the appropriate NT include
  7. file name, and does any other mapping required by this include file.
  8. Author:
  9. Dan Hinsley (danhi) 8-Jun-1991
  10. Environment:
  11. User Mode - Win32
  12. Portable to any flat, 32-bit environment. (Uses Win32 typedefs.)
  13. Requires ANSI C extensions: slash-slash comments.
  14. --*/
  15. DWORD
  16. ParseDate(
  17. PTCHAR inbuf,
  18. time_t * time,
  19. PDWORD parselen,
  20. DWORD reserved
  21. );
  22. DWORD
  23. ParseTime(
  24. PTCHAR inbuf,
  25. time_t * time,
  26. PDWORD parselen,
  27. DWORD reserved
  28. );
  29. DWORD
  30. ParseTime12(
  31. PTCHAR inbuf,
  32. time_t * time,
  33. PDWORD parselen,
  34. DWORD reserved
  35. );
  36. DWORD
  37. ParseTime24(
  38. PTCHAR inbuf,
  39. time_t * time,
  40. PDWORD parselen,
  41. DWORD reserved
  42. );