home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-12-20 | 554 b | 29 lines | [TEXT/CWIE] |
- //
- // CAppSite.h
- //
- // Copyright (C) Microsoft Corporation, 1996
- //
-
- typedef enum
- {
- BeginContextID = 0,
- WindowContextID,
- OffscreenContextID,
- EndContextID
- }
- SimpleAppContextIDs;
-
- class CSimpleAppSite : public CXSite
- {
- public:
-
- // **** IContainerSite methods ***
- STDMETHOD (AcquireContext) (THIS_ Uint32 inContextID, DrawContext* Context);
- STDMETHOD (RequestSizeChange) (THIS_ PlatformPoint* ioSize);
- STDMETHOD (OnChange) (THIS_ ChangeType inChangeType);
-
- protected:
- virtual Boolean8 GetContextID (Int32 inContextIndex, UInt32* outContextID);
-
- };
-