~ubuntu-branches/ubuntu/karmic/openoffice.org-l10n/karmic

« back to all changes in this revision

Viewing changes to ooo-build/patches/vba/offapi-org-openoffice-vba-excel-xlparameterdatatype-idl.diff

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2006-04-27 19:29:22 UTC
  • Revision ID: james.westby@ubuntu.com-20060427192922-2dburxv3b63f8v0u
Tags: 2.0.2-2ubuntu5
* Copy of the openoffice.org source.
  - debian/control.in: Change source name.
  - debian/changelog: Change source name.
  - debian/control: Regenerate control file.
* Add kurdish translations exported from Rosetta (2006-04-18).
* Workaround bad message strings in recently included GSI files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--- /dev/null   
 
2
+++ offapi/org/openoffice/vba/Excel/XlParameterDataType.idl     
 
3
@@ -0,0 +1,30 @@
 
4
+#ifndef __org_openoffice_vba_Excel_XlParameterDataType_idl__
 
5
+#define __org_openoffice_vba_Excel_XlParameterDataType_idl__
 
6
+module org  { module openoffice { module vba { module Excel {
 
7
+
 
8
+constants XlParameterDataType
 
9
+{
 
10
+        const long xlParameterTypeBigInt = -5; //(&HFFFFFFFFB)
 
11
+        const long xlParameterTypeBinary = -2; //(&HFFFFFFFFE)
 
12
+        const long xlParameterTypeBit = -7; //(&HFFFFFFFF9)
 
13
+        const long xlParameterTypeChar = 1;
 
14
+        const long xlParameterTypeData = 9;
 
15
+        const long xlParameterTypeDecimal = 3;
 
16
+        const long xlParameterTypeDouble = 8;
 
17
+        const long xlParameterTypeFloat = 6;
 
18
+        const long xlParameterTypeInteger = 4;
 
19
+        const long xlParameterTypeLongVarBinary = -4; //(&HFFFFFFFFC)
 
20
+        const long xlParameterTypeLongVarChar = -1; //(&HFFFFFFFFF)
 
21
+        const long xlParameterTypeNumeric = 2;
 
22
+        const long xlParameterTypeReal = 7;
 
23
+        const long xlParameterTypeSmallInt = 5;
 
24
+        const long xlParameterTypeTime = 10;
 
25
+        const long xlParameterTypeTimestamp = 11;
 
26
+        const long xlParameterTypeTinyInt = -6; //(&HFFFFFFFFA)
 
27
+        const long xlParameterTypeUnknown = 0;
 
28
+        const long xlParameterTypeVarBinary = -3; //(&HFFFFFFFFD)
 
29
+        const long xlParameterTypeVarChar = 12;
 
30
+        const long xlParameterTypeWChar = -8; //(&HFFFFFFFF8)
 
31
+};
 
32
+}; }; }; };
 
33
+#endif