mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-02 12:31:01 +02:00
* small ifdef unicode fix
git-svn-id: trunk@10267 -
This commit is contained in:
parent
3f3105172d
commit
60c1b69019
@ -341,6 +341,13 @@ Const
|
|||||||
BFFM_SETSTATUSTEXTW = (WM_USER + 104);
|
BFFM_SETSTATUSTEXTW = (WM_USER + 104);
|
||||||
BFFM_SETOKTEXT = (WM_USER + 105); // Unicode only
|
BFFM_SETOKTEXT = (WM_USER + 105); // Unicode only
|
||||||
BFFM_SETEXPANDED = (WM_USER + 106); // Unicode only
|
BFFM_SETEXPANDED = (WM_USER + 106); // Unicode only
|
||||||
|
{$IFDEF UNICODE}
|
||||||
|
BFFM_SETSTATUSTEXT = BFFM_SETSTATUSTEXTW;
|
||||||
|
BFFM_SETSELECTION = BFFM_SETSELECTIONW;
|
||||||
|
{$ELSE}
|
||||||
|
BFFM_SETSTATUSTEXT = BFFM_SETSTATUSTEXTA;
|
||||||
|
BFFM_SETSELECTION = BFFM_SETSELECTIONA;
|
||||||
|
{$ENDIF}
|
||||||
ISHCUTCMDID_DOWNLOADICON = 0;
|
ISHCUTCMDID_DOWNLOADICON = 0;
|
||||||
ISHCUTCMDID_INTSHORTCUTCREATE = 1;
|
ISHCUTCMDID_INTSHORTCUTCREATE = 1;
|
||||||
ACLO_NONE = 0; // don't enumerate anything
|
ACLO_NONE = 0; // don't enumerate anything
|
||||||
|
Loading…
Reference in New Issue
Block a user