Skip to content

Commit

Permalink
Maintenance: Add missing header include guards (microsoft#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
bgianfo authored Dec 8, 2020
1 parent 666cf50 commit 092243d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions samples/dtest/dtarge.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
#pragma once

#if (_MSC_VER < 1299)
typedef DWORD DWORD_PTR;
Expand Down
1 change: 1 addition & 0 deletions samples/findfunc/target.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
#pragma once

DWORD WINAPI Target(DWORD dwCount);

Expand Down
1 change: 1 addition & 0 deletions samples/slept/slept.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
#pragma once

DWORD WINAPI UntimedSleepEx(DWORD dwMilliseconds, BOOL bAlertable);
DWORD WINAPI TimedSleepEx(DWORD dwMilliseconds, BOOL bAlertable);
Expand Down
2 changes: 2 additions & 0 deletions tests/corruptor.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
#pragma once

class ImageCorruptor final
{
public:
Expand Down

0 comments on commit 092243d

Please sign in to comment.