diff options
author | George Hazan <ghazan@miranda.im> | 2017-10-15 16:27:58 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-10-15 16:27:58 +0300 |
commit | 56239808326cc550d0b1bd45a368e89957e7021b (patch) | |
tree | b0a4f839381b543502ed963b6b1f4868086a1d6e /plugins/ExternalAPI/delphi/m_quotes.inc | |
parent | cc2d5db55ce7c1d65d7919c7e7f0ce5c48da26f2 (diff) |
unused pascal headers removed
Diffstat (limited to 'plugins/ExternalAPI/delphi/m_quotes.inc')
-rw-r--r-- | plugins/ExternalAPI/delphi/m_quotes.inc | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/plugins/ExternalAPI/delphi/m_quotes.inc b/plugins/ExternalAPI/delphi/m_quotes.inc deleted file mode 100644 index 1a6c597b6d..0000000000 --- a/plugins/ExternalAPI/delphi/m_quotes.inc +++ /dev/null @@ -1,36 +0,0 @@ -{$IFNDEF M_QUOTES}
-{$DEFINE M_QUOTES}
-
-const
-{*
- * Export the contact (or all contacts) to xml file
- * wParam = (WPARAM)(HANDLE)hContact to export or 0 to export all contacts
- * lParam = (LPARAM)(const char*)pszFileName - pointer to file name to export or
- * 0 in this case the dialog to select a file to export would be shown
- * returns 0 if export was successfull,
- * -1 if user canceled export and
- * value greater than zero if error occurred during exporting
- *}
- MS_QUOTES_EXPORT:PAnsiChar = 'Quotes/Export';
-
-{*
- * Import the contact (or all contacts) from xml file
- * wParam = flags
- * lParam = (LPARAM)(const char*)pszFileName - pointer to file name to import or
- * 0 in this case the dialog to select a file to import would be shown
- * returns 0 if import was successfull,
- * -1 if user canceled import and
- * value greater than zero if error occurred during importing
- *}
-
-// if contact(s) exists user would be asked to overwrite these contacts
-// #define QUOTES_IMPORT_PROMPT_TO_OVERWRITE_EXISTING_CONTACTS 0x0000
-// if contact(s) exists it would be overwrite without any prompt
-// #define QUOTES_IMPORT_SILENT_OVERWRITE_EXISTING_CONTACTS 0x0001
-// if contact(s) exists during importing it would be ignored
- QUOTES_IMPORT_SKIP_EXISTING_CONTACTS = 2;
-
- MS_QUOTES_IMPORT:PAnsiChar = 'Quotes/Import';
-
-{$ENDIF}
-
|