other-licenses/7zstub/src/Windows/ResourceString.h

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/other-licenses/7zstub/src/Windows/ResourceString.h	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,20 @@
     1.4 +// Windows/ResourceString.h
     1.5 +
     1.6 +#ifndef __WINDOWS_RESOURCESTRING_H
     1.7 +#define __WINDOWS_RESOURCESTRING_H
     1.8 +
     1.9 +#include "Common/String.h"
    1.10 +
    1.11 +namespace NWindows {
    1.12 +
    1.13 +CSysString MyLoadString(UINT resourceID);
    1.14 +#ifdef _UNICODE
    1.15 +inline UString MyLoadStringW(UINT resourceID)
    1.16 +  { return MyLoadString(resourceID); }
    1.17 +#else
    1.18 +UString MyLoadStringW(UINT resourceID);
    1.19 +#endif
    1.20 +
    1.21 +}
    1.22 +
    1.23 +#endif

mercurial