widl: Add support for function parameter flags to SLTG typelib generator.
[wine.git] / include / lmremutl.h
blob914e7811486f6539cb657479a6121068c3c1e20b
1 /*
2 * Copyright (C) 2024 Vijay Kiran Kamuju
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18 #ifndef _LMREMUTL_H
19 #define _LMREMUTL_H
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
25 typedef struct _TIME_OF_DAY_INFO
27 DWORD tod_elapsedt;
28 DWORD tod_msecs;
29 DWORD tod_hours;
30 DWORD tod_mins;
31 DWORD tod_secs;
32 DWORD tod_hunds;
33 DWORD tod_timezone;
34 DWORD tod_tinterval;
35 DWORD tod_day;
36 DWORD tod_month;
37 DWORD tod_year;
38 DWORD tod_weekday;
39 } TIME_OF_DAY_INFO, *PTIME_OF_DAY_INFO, *LPTIME_OF_DAY_INFO;
41 NET_API_STATUS NET_API_FUNCTION NetRemoteTOD(LPCWSTR,LPBYTE*);
43 #ifdef __cplusplus
45 #endif
47 #endif /* _LMREMUTL_H */