Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
c633cadb
Commit
c633cadb
authored
Feb 18, 2015
by
Austin English
Committed by
Alexandre Julliard
Feb 20, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add msasn1.h.
parent
32c8b79b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
48 additions
and
0 deletions
+48
-0
Makefile.in
include/Makefile.in
+1
-0
msasn1.h
include/msasn1.h
+47
-0
No files found.
include/Makefile.in
View file @
c633cadb
...
...
@@ -411,6 +411,7 @@ SRCDIR_INCLUDES = \
msacm.h
\
msacmdlg.h
\
msacmdrv.h
\
msasn1.h
\
mscat.h
\
msdaguid.h
\
mshtmcid.h
\
...
...
include/msasn1.h
0 → 100644
View file @
c633cadb
/*
* Copyright (C) 2015 Austin English
*
* This library 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 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef __MS_ASN1_H__
#define __MS_ASN1_H__
#ifdef __cplusplus
extern
"C"
{
#endif
typedef
char
ASN1char_t
;
typedef
signed
char
ASN1int8_t
;
typedef
unsigned
char
ASN1uint8_t
;
typedef
unsigned
short
ASN1uint16_t
;
typedef
signed
short
ASN1int16_t
;
typedef
ULONG
ASN1uint32_t
;
typedef
LONG
ASN1int32_t
;
typedef
ASN1char_t
*
ASN1ztcharstring_t
;
typedef
ASN1char16_t
*
ASN1ztchar16string_t
;
typedef
ASN1char32_t
*
ASN1ztchar32string_t
;
typedef
ASN1int32_t
ASN1enum_t
;
typedef
ASN1uint8_t
ASN1octet_t
;
typedef
ASN1uint8_t
ASN1bool_t
;
typedef
ASN1uint16_t
ASN1choice_t
;
typedef
ASN1uint32_t
ASN1magic_t
;
typedef
ASN1ztcharstring_t
ASN1objectdescriptor_t
;
#ifdef __cplusplus
}
#endif
#endif
/* __MS_ASN1_H__ */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment