Changeset 0ac9690913 in tspsg for resources


Ignore:
Timestamp:
Dec 7, 2009, 5:06:44 PM (14 years ago)
Author:
Oleksii Serdiuk
Branches:
0.1.3.145-beta1-symbian, 0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
Children:
a218bf2cb2
Parents:
3b1caa32d0
Message:

+ Toolbar state and position is now saved and restored with Main Window state and position.

  • Made some small improvements to the code.
  • Fixed some errors in the documentation.
  • Made source code more "documentation friendly".
File:
1 edited

Legend:

Unmodified
Added
Removed
  • resources/tspsg.rc

    r3b1caa32d0 r0ac9690913  
    99 */
    1010
     11#include <winver.h>
    1112#include "..\\src\\resource.h"
    1213#pragma code_page(65001)
     
    2223        PRODUCTVERSION BUILD_VERSION_MAJOR,BUILD_VERSION_MINOR,BUILD_RELEASE,BUILD_NUMBER
    2324        FILEFLAGSMASK 0x17L
    24 #ifdef _DEBUG
    25         FILEFLAGS 0x1L
     25#if defined(_DEBUG) || defined(DEBUG)
     26        FILEFLAGS VS_FF_DEBUG | VS_FF_PRERELEASE | VS_FF_PRIVATEBUILD
    2627#else
    27         FILEFLAGS 0x0L
     28        #if BUILD_NUMBER == 65535
     29                FILEFLAGS VS_FF_PRERELEASE | VS_FF_SPECIALBUILD
     30        #elif BUILD_RELEASE < 11
     31                        FILEFLAGS VS_FF_PRERELEASE
     32        #else
     33                        FILEFLAGS 0x0L
     34        #endif
    2835#endif
    2936#ifdef Q_OS_WINCE
    30         FILEOS 0x50000L
     37        FILEOS VOS_WINCE
    3138#else
    32         FILEOS 0x4L
     39        FILEOS VOS__WINDOWS32
    3340#endif
    34         FILETYPE 0x1L
    35         FILESUBTYPE 0x0L
     41        FILETYPE VFT_APP
    3642BEGIN
    3743    BLOCK "StringFileInfo"
     
    4854            VALUE "ProductName", "TSPSG"
    4955            VALUE "ProductVersion", BUILD_VERSION
     56#if defined(_DEBUG) || defined(DEBUG)
     57            VALUE "PrivateBuild", "Debug development build"
     58#elif BUILD_NUMBER == 65535
     59            VALUE "SpecialBuild", "Internal development build"
     60#endif
    5061        END
    5162    END
Note: See TracChangeset for help on using the changeset viewer.