ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/Daodan/MinGW/include/dsadmin.h
Revision: 1046
Committed: Mon Aug 29 13:19:38 2016 UTC (9 years, 1 month ago) by alloc
Content type: text/x-chdr
File size: 944 byte(s)
Log Message:
Daodan: Added Windows MinGW and build batch file

File Contents

# Content
1 /*
2 * dsadmin.h - Active Directory
3 *
4 * THIS SOFTWARE IS NOT COPYRIGHTED
5 *
6 * This source code is offered for use in the public domain. You may use,
7 * modify or distribute it freely.
8 *
9 * This code is distributed in the hope that it will be useful but
10 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
11 * DISCLAIMED. This includes but is not limited to warranties of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 *
14 */
15 #ifndef _DSADMIN_H
16 #define _DSADMIN_H
17 #if __GNUC__ >= 3
18 #pragma GCC system_header
19 #endif
20
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
24
25 /*--- Active Directory Reference - Active Directory Structures - Active Directory Admin Structures */
26 #if (_WIN32_WINNT >= 0x0500)
27 typedef struct {
28 DWORD dwSize;
29 HICON hObjClassIcon;
30 LPWSTR lpszWizTitle;
31 LPWSTR lpszContDisplayName;
32 } DSA_NEWOBJ_DISPINFO,*LPDSA_NEWOBJ_DISPINFO;
33 #endif /* (_WIN32_WINNT >= 0x0500) */
34
35 #ifdef __cplusplus
36 }
37 #endif
38 #endif