You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
878 B
37 lines
878 B
/******************************Module*Header*******************************\
|
|
* Module Name: Global.h
|
|
*
|
|
* This file contains the code to support the functionality test harness
|
|
* for GDI+. This includes menu options and calling the appropriate
|
|
* functions for execution.
|
|
*
|
|
* Created: 05-May-2000 - Jeff Vezina [t-jfvez]
|
|
*
|
|
* Copyright (c) 2000 Microsoft Corporation
|
|
*
|
|
\**************************************************************************/
|
|
|
|
#ifndef __GLOBAL_H
|
|
#define __GLOBAL_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <windows.h>
|
|
#include <objbase.h>
|
|
#include <math.h>
|
|
#include <winspool.h>
|
|
#include <commdlg.h>
|
|
#include <wingdi.h>
|
|
#include <ddraw.h>
|
|
|
|
#include "debug.h"
|
|
|
|
#define IStream int
|
|
#include <gdiplus.h>
|
|
using namespace Gdiplus;
|
|
|
|
#define TESTAREAWIDTH 256.0f
|
|
#define TESTAREAHEIGHT 256.0f
|
|
|
|
#endif
|