diff options
author | George Hazan <george.hazan@gmail.com> | 2014-07-04 15:20:21 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-07-04 15:20:21 +0000 |
commit | 947cf2858d18fc95f76c71622f58cc8957c26799 (patch) | |
tree | b41255b2175d73c1e0719a01eaf1fe07d7da1d86 /include/delphi | |
parent | 419f192d3e4c52ace067722bcfd85904b7c2628b (diff) |
mir_core:
- third parameter pBase added to PathToRelative/PathToRelativeW;
- missing export 'db_mc_notifyDefChange' added to the .def file;
- path utils moved to _tcsncpy_s function;
- useless variables removed;
- libraries regenerated;
git-svn-id: http://svn.miranda-ng.org/main/trunk@9676 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/delphi')
-rw-r--r-- | include/delphi/m_core.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/delphi/m_core.inc b/include/delphi/m_core.inc index 71ca89150f..ffb00ae3e8 100644 --- a/include/delphi/m_core.inc +++ b/include/delphi/m_core.inc @@ -655,7 +655,7 @@ function PathIsAbsolute(const pSrc:PAnsiChar):int; stdcall; external CoreDLL name 'PathIsAbsolute';
function PathToAbsolute(const pSrc:PAnsiChar; pOut:PAnsiChar; base:PAnsiChar=nil):int; stdcall;
external CoreDLL name 'PathToAbsolute';
-function PathToRelative(const pSrc:PAnsiChar; pOut:PAnsiChar):int; stdcall;
+function PathToRelative(const pSrc:PAnsiChar; pOut:PAnsiChar; base:PAnsiChar=nil):int; stdcall;
external CoreDLL name 'PathToRelative';
procedure CreatePathToFileW(wszFilePath:PWideChar); stdcall;
@@ -666,7 +666,7 @@ function PathIsAbsoluteW(const pSrc:PWideChar):int; stdcall; external CoreDLL name 'PathIsAbsoluteW';
function PathToAbsoluteW(const pSrc:PWideChar; pOut:PWideChar; base:PWideChar=nil):int; stdcall;
external CoreDLL name 'PathToAbsoluteW';
-function PathToRelativeW(const pSrc:PWideChar; pOut:PWideChar):int; stdcall;
+function PathToRelativeW(const pSrc:PWideChar; pOut:PWideChar; base:PWideChar=nil):int; stdcall;
external CoreDLL name 'PathToRelativeW';
|