Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johnny Cai
wine
Commits
9f758cc5
Commit
9f758cc5
authored
24 years ago
by
Josh DuBois
Committed by
Alexandre Julliard
24 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Moved typedef of CRITICAL_SECTION out of #pragma pack(1) block.
parent
66eedb5a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/winnt.h
+20
-21
20 additions, 21 deletions
include/winnt.h
with
20 additions
and
21 deletions
include/winnt.h
+
20
−
21
View file @
9f758cc5
...
...
@@ -3413,27 +3413,6 @@ typedef enum tagSID_NAME_USE {
/* ------------------------------ end registry ------------------------------ */
typedef
struct
_RTL_CRITICAL_SECTION_DEBUG
{
WORD
Type
;
WORD
CreatorBackTraceIndex
;
struct
_RTL_CRITICAL_SECTION
*
CriticalSection
;
LIST_ENTRY
ProcessLocksList
;
DWORD
EntryCount
;
DWORD
ContentionCount
;
DWORD
Spare
[
2
];
}
RTL_CRITICAL_SECTION_DEBUG
,
*
PRTL_CRITICAL_SECTION_DEBUG
,
RTL_RESOURCE_DEBUG
,
*
PRTL_RESOURCE_DEBUG
;
typedef
struct
_RTL_CRITICAL_SECTION
{
PRTL_CRITICAL_SECTION_DEBUG
DebugInfo
;
LONG
LockCount
;
LONG
RecursionCount
;
HANDLE
OwningThread
;
HANDLE
LockSemaphore
;
ULONG_PTR
SpinCount
;
}
RTL_CRITICAL_SECTION
,
*
PRTL_CRITICAL_SECTION
;
#define EVENTLOG_SUCCESS 0x0000
#define EVENTLOG_ERROR_TYPE 0x0001
#define EVENTLOG_WARNING_TYPE 0x0002
...
...
@@ -3510,4 +3489,24 @@ typedef enum _CM_ERROR_CONTROL_TYPE
#include
"poppack.h"
typedef
struct
_RTL_CRITICAL_SECTION_DEBUG
{
WORD
Type
;
WORD
CreatorBackTraceIndex
;
struct
_RTL_CRITICAL_SECTION
*
CriticalSection
;
LIST_ENTRY
ProcessLocksList
;
DWORD
EntryCount
;
DWORD
ContentionCount
;
DWORD
Spare
[
2
];
}
RTL_CRITICAL_SECTION_DEBUG
,
*
PRTL_CRITICAL_SECTION_DEBUG
,
RTL_RESOURCE_DEBUG
,
*
PRTL_RESOURCE_DEBUG
;
typedef
struct
_RTL_CRITICAL_SECTION
{
PRTL_CRITICAL_SECTION_DEBUG
DebugInfo
;
LONG
LockCount
;
LONG
RecursionCount
;
HANDLE
OwningThread
;
HANDLE
LockSemaphore
;
ULONG_PTR
SpinCount
;
}
RTL_CRITICAL_SECTION
,
*
PRTL_CRITICAL_SECTION
;
#endif
/* __WINE_WINNT_H */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment