mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
#include "precomp.h" -> #include <precomp.h>
svn path=/trunk/; revision=17098
This commit is contained in:
parent
00d72052e8
commit
514aa4a565
19 changed files with 19 additions and 19 deletions
|
@ -20,7 +20,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include <precomp.h>
|
||||||
|
|
||||||
INT_PTR CALLBACK AboutDialogWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
|
INT_PTR CALLBACK AboutDialogWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include <precomp.h>
|
||||||
|
|
||||||
HANDLE hProcessAffinityHandle;
|
HANDLE hProcessAffinityHandle;
|
||||||
TCHAR szTemp[256];
|
TCHAR szTemp[256];
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include <precomp.h>
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include <precomp.h>
|
||||||
|
|
||||||
UINT ColumnDataHints[25];
|
UINT ColumnDataHints[25];
|
||||||
TCHAR szTemp[256];
|
TCHAR szTemp[256];
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include <precomp.h>
|
||||||
|
|
||||||
/* TODO:
|
/* TODO:
|
||||||
* - the dialog box could be non modal
|
* - the dialog box could be non modal
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include <precomp.h>
|
||||||
|
|
||||||
void ProcessPage_OnDebug(void)
|
void ProcessPage_OnDebug(void)
|
||||||
{
|
{
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include <precomp.h>
|
||||||
|
|
||||||
TCHAR szTemp[256];
|
TCHAR szTemp[256];
|
||||||
TCHAR szTempA[256];
|
TCHAR szTempA[256];
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include <precomp.h>
|
||||||
|
|
||||||
void Font_DrawText(HDC hDC, LPCTSTR lpszText, int x, int y)
|
void Font_DrawText(HDC hDC, LPCTSTR lpszText, int x, int y)
|
||||||
{
|
{
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include <precomp.h>
|
||||||
|
|
||||||
LONG OldGraphWndProc;
|
LONG OldGraphWndProc;
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include <precomp.h>
|
||||||
|
|
||||||
LONG OldGraphCtrlWndProc;
|
LONG OldGraphCtrlWndProc;
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
* Menu item handlers for the options menu.
|
* Menu item handlers for the options menu.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include <precomp.h>
|
||||||
|
|
||||||
void TaskManager_OnOptionsAlwaysOnTop(void)
|
void TaskManager_OnOptionsAlwaysOnTop(void)
|
||||||
{
|
{
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include <precomp.h>
|
||||||
|
|
||||||
CRITICAL_SECTION PerfDataCriticalSection;
|
CRITICAL_SECTION PerfDataCriticalSection;
|
||||||
PPERFDATA pPerfDataOld = NULL; /* Older perf data (saved to establish delta values) */
|
PPERFDATA pPerfDataOld = NULL; /* Older perf data (saved to establish delta values) */
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include <precomp.h>
|
||||||
|
|
||||||
TGraphCtrl PerformancePageCpuUsageHistoryGraph;
|
TGraphCtrl PerformancePageCpuUsageHistoryGraph;
|
||||||
TGraphCtrl PerformancePageMemUsageHistoryGraph;
|
TGraphCtrl PerformancePageMemUsageHistoryGraph;
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include <precomp.h>
|
||||||
|
|
||||||
TCHAR szTemp[256];
|
TCHAR szTemp[256];
|
||||||
TCHAR szTempA[256];
|
TCHAR szTempA[256];
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include <precomp.h>
|
||||||
|
|
||||||
|
|
||||||
INT_PTR CALLBACK ProcessListWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
|
INT_PTR CALLBACK ProcessListWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include <precomp.h>
|
||||||
|
|
||||||
HWND hProcessPage; /* Process List Property Page */
|
HWND hProcessPage; /* Process List Property Page */
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include <precomp.h>
|
||||||
|
|
||||||
void TaskManager_OnFileNew(void)
|
void TaskManager_OnFileNew(void)
|
||||||
{
|
{
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include <precomp.h>
|
||||||
|
|
||||||
#define STATUS_WINDOW 2001
|
#define STATUS_WINDOW 2001
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include <precomp.h>
|
||||||
|
|
||||||
HICON TrayIcon_GetProcessorUsageIcon(void)
|
HICON TrayIcon_GetProcessorUsageIcon(void)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue