equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2010 Kanrikogaku Kenkyusho, Ltd. |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of the License "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Kanrikogaku Kenkyusho, Ltd. - Initial contribution |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // Protection against nested includes |
|
20 #ifndef DIRECTPRINTJOBGUARDDATA_H |
|
21 #define DIRECTPRINTJOBGUARDDATA_H |
|
22 |
|
23 // System includes |
|
24 #include <e32def.h> |
|
25 |
|
26 class TDirectPrintJobGuardData |
|
27 { |
|
28 public: |
|
29 |
|
30 enum TCallbackNum |
|
31 { |
|
32 EProgressEventCb = 0, |
|
33 EErrorEventCb, |
|
34 EStatusEventCb, |
|
35 EImageEventCb |
|
36 }; |
|
37 |
|
38 public: |
|
39 |
|
40 TInt iStatus; |
|
41 TInt iPercentCompletion; |
|
42 TInt iJobStateCode; |
|
43 TInt iError; |
|
44 TInt iErrorStringCode; |
|
45 TInt iFsBitmapHandle; |
|
46 TCallbackNum iCb; |
|
47 }; |
|
48 |
|
49 #endif // DIRECTPRINTJOBGUARDDATA_H |
|
50 |
|
51 // End of File |