-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpicture.h
36 lines (28 loc) · 968 Bytes
/
picture.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#if !defined(AFX_PICTURE_H__BB02C9B3_6A81_11D3_9870_0080C83832F8__INCLUDED_)
#define AFX_PICTURE_H__BB02C9B3_6A81_11D3_9870_0080C83832F8__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "BaseDefines.h"
#include <afxdisp.h>
class CPicture : public COleDispatchDriver
{
public:
CPicture() {} // Calls COleDispatchDriver default constructor
CPicture(LPDISPATCH pDispatch) : COleDispatchDriver(pDispatch) {}
CPicture(const CPicture& dispatchSrc) : COleDispatchDriver(dispatchSrc) {}
// Attributes
public:
long GetHandle();
long GetHPal();
void SetHPal(long);
short GetType();
long GetWidth();
long GetHeight();
// Operations
public:
// method 'Render' not emitted because of invalid return type or parameter type
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_PICTURE_H__BB02C9B3_6A81_11D3_9870_0080C83832F8__INCLUDED_)