From d83baeb842ea828eaee90a0cd6575872a95240e8 Mon Sep 17 00:00:00 2001 From: Alexey Kulakov Date: Sat, 8 Mar 2014 13:10:05 +0000 Subject: Pascal-style type correction Letter case correction small fixes Actman UA part dialog slightly changed git-svn-id: http://svn.miranda-ng.org/main/trunk@8473 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/ExternalAPI/delphi/m_assocmgr.inc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'plugins/ExternalAPI/delphi/m_assocmgr.inc') diff --git a/plugins/ExternalAPI/delphi/m_assocmgr.inc b/plugins/ExternalAPI/delphi/m_assocmgr.inc index 83b835a17a..22321a00b4 100644 --- a/plugins/ExternalAPI/delphi/m_assocmgr.inc +++ b/plugins/ExternalAPI/delphi/m_assocmgr.inc @@ -45,14 +45,14 @@ Returns 0 on success, nonzero otherwise. type PFILETYPEDESC = ^TFILETYPEDESC; TFILETYPEDESC = record - cbSize: Integer; // size of this structure, in bytes + cbSize: integer; // size of this structure, in bytes szDescription: TChar; // description for options dialog and in registry. // please Translate(). hInstance: HINST; // instance where the icon resource is located - nIconResID: UINT; // resource id of an icon to use for the file type. + nIconResID: uint; // resource id of an icon to use for the file type. // this icon should contain icons of all sizes and color depths // needed by Windows. // set this to 0 to use the generic 'miranda file' icon @@ -67,7 +67,7 @@ type // Note: set this to nil to pass the file name as // commandline argument to miranda32.exe (db file). - flags: DWORD; // see FTDF_* flags below + flags: dword; // see FTDF_* flags below pszFileExt: PAnsiChar; // file extension, e.g. ".ext" // first character must be a dot, assumed to be all lower case. @@ -130,14 +130,14 @@ Returns 0 on success, nonzero otherwise. type PURLTYPEDESC = ^TURLTYPEDESC; TURLTYPEDESC = record - cbSize: Integer; // size of this structure, in bytes + cbSize: integer; // size of this structure, in bytes pszDescription: TChar; // description for options dialog and in registry. // please Translate(). hInstance: HINST; // instance where the icon resource is located - nIconResID: UINT; // resource id of an icon to use for the url type. + nIconResID: uint; // resource id of an icon to use for the url type. // only a small one (16x16) is needed by Windows, // e.g. proto icon as used in Miranda. // set this to 0 to use the default miranda icon. @@ -148,7 +148,7 @@ type // the provided string has already been urldecoded. // return zero on suceess, nonzero on error. - flags: DWORD; // see UTDF_* flags below + flags: dword; // see UTDF_* flags below pszProtoPrefix: PAnsiChar; // protocol prefix, e.g. "http:" // last character must be a colon, assumed to be all lower case. -- cgit v1.2.3