[TASKMGR] Get rid of cplusplus extern c (#5808)

The others in graphctrl.h and graph.h are being handled in the yet-uncommitted PR #5343.
This commit is contained in:
Joachim Henze 2023-10-20 13:03:59 +02:00 committed by GitHub
parent ded91e310a
commit ddd1d19b3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 43 deletions

View file

@ -1,17 +1,13 @@
/*
* PROJECT: ReactOS Task Manager
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
* PURPOSE: Performance Counters.
* PURPOSE: Performance Counters
* COPYRIGHT: Copyright 1999-2001 Brian Palmer <brianp@reactos.org>
* Copyright 2014 Ismael Ferreras Morezuelas <swyterzone+ros@gmail.com>
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#define Li2Double(x) ((double)((x).HighPart) * 4.294967296E9 + (double)((x).LowPart))
typedef struct _PERFDATA
@ -43,9 +39,9 @@ typedef struct _PERFDATA
typedef struct _CMD_LINE_CACHE
{
DWORD idx;
DWORD idx;
LPWSTR str;
ULONG len;
ULONG len;
struct _CMD_LINE_CACHE* pnext;
} CMD_LINE_CACHE, *PCMD_LINE_CACHE;
@ -99,8 +95,3 @@ ULONG PerfDataGetPhysicalMemorySystemCacheK(void);
ULONG PerfDataGetSystemHandleCount(void);
ULONG PerfDataGetTotalThreadCount(void);
#ifdef __cplusplus
};
#endif