diff options
author | George Hazan <george.hazan@gmail.com> | 2013-04-23 08:27:32 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-04-23 08:27:32 +0000 |
commit | 78a92aad0e3c2941b11b3115d9fd7aae44e5fc37 (patch) | |
tree | 28cf61c18a6d5d41bd2a1556b37b1f7026cb0ed0 /include/delphi/m_core.inc | |
parent | 36ac355b3009665069258c76f9ce8b7f7229ece9 (diff) |
- added unicode analogs of ltrim, ltrimp, wildcmp;
- wildcmpi[w] added
git-svn-id: http://svn.miranda-ng.org/main/trunk@4511 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/delphi/m_core.inc')
-rw-r--r-- | include/delphi/m_core.inc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/delphi/m_core.inc b/include/delphi/m_core.inc index 773b93a11c..5c550e109c 100644 --- a/include/delphi/m_core.inc +++ b/include/delphi/m_core.inc @@ -561,12 +561,23 @@ function wrtrim(str:pWideChar):pWideChar; stdcall; // returns pointer to the beginning of string
function ltrim(str:pAnsiChar):pAnsiChar; stdcall;
external CoreDLL name 'ltrim';
+function ltrimw(str:pWideChar):pWideChar; stdcall;
+ external CoreDLL name 'ltrimw';
// returns pointer to the trimmed portion of string
function ltrimp(str:pAnsiChar):pAnsiChar; stdcall;
external CoreDLL name 'ltrimp';
+function ltrimpw(str:pWideChar):pWideChar; stdcall;
+ external CoreDLL name 'ltrimpw';
function wildcmp(name:pAnsiChar; mask:pAnsiChar):int; stdcall;
external CoreDLL name 'wildcmp';
+function wildcmpw(name:pWideChar; mask:pWideChar):int; stdcall;
+ external CoreDLL name 'wildcmpw';
+
+function wildcmpi(name:pAnsiChar; mask:pAnsiChar):int; stdcall;
+ external CoreDLL name 'wildcmpi';
+function wildcmpiw(name:pWideChar; mask:pWideChar):int; stdcall;
+ external CoreDLL name 'wildcmpiw';
// mir_free dest, mir_strdup src to dest
function replaceStr(var dest:pAnsiChar; const src:pAnsiChar):pAnsiChar; stdcall;
|