mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 23:43:39 +00:00
[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:
parent
ded91e310a
commit
ddd1d19b3f
3 changed files with 5 additions and 43 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue