mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
33 lines
913 B
C++
33 lines
913 B
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef nsScreenOS2_h___
|
|
#define nsScreenOS2_h___
|
|
|
|
#include "nsBaseScreen.h"
|
|
|
|
#define INCL_WIN
|
|
#define INCL_DOS
|
|
#include <os2.h>
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
class nsScreenOS2 : public nsBaseScreen
|
|
{
|
|
public:
|
|
nsScreenOS2 ( );
|
|
virtual ~nsScreenOS2();
|
|
|
|
NS_IMETHOD GetRect(PRInt32* aLeft, PRInt32* aTop, PRInt32* aWidth, PRInt32* aHeight);
|
|
NS_IMETHOD GetAvailRect(PRInt32* aLeft, PRInt32* aTop, PRInt32* aWidth, PRInt32* aHeight);
|
|
NS_IMETHOD GetPixelDepth(PRInt32* aPixelDepth);
|
|
NS_IMETHOD GetColorDepth(PRInt32* aColorDepth);
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
#endif // nsScreenOS2_h___
|