Skip to content

Commit 092243d

Browse files
authored
Maintenance: Add missing header include guards (microsoft#155)
1 parent 666cf50 commit 092243d

File tree

4 files changed

+5
-0
lines changed

4 files changed

+5
-0
lines changed

samples/dtest/dtarge.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
//
77
// Copyright (c) Microsoft Corporation. All rights reserved.
88
//
9+
#pragma once
910

1011
#if (_MSC_VER < 1299)
1112
typedef DWORD DWORD_PTR;

samples/findfunc/target.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
//
77
// Copyright (c) Microsoft Corporation. All rights reserved.
88
//
9+
#pragma once
910

1011
DWORD WINAPI Target(DWORD dwCount);
1112

samples/slept/slept.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
//
77
// Copyright (c) Microsoft Corporation. All rights reserved.
88
//
9+
#pragma once
910

1011
DWORD WINAPI UntimedSleepEx(DWORD dwMilliseconds, BOOL bAlertable);
1112
DWORD WINAPI TimedSleepEx(DWORD dwMilliseconds, BOOL bAlertable);

tests/corruptor.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
//
77
// Copyright (c) Microsoft Corporation. All rights reserved.
88
//
9+
#pragma once
10+
911
class ImageCorruptor final
1012
{
1113
public:

0 commit comments

Comments
 (0)