contentmgmt/contentaccessfwfordrm/source/caf/patchdata.cpp
changeset 8 35751d3474b7
parent 0 2c201484c85f
equal deleted inserted replaced
2:675a964f4eb5 8:35751d3474b7
    21 // All the patchable variables in the caf.dll need to be in a separate file.
    21 // All the patchable variables in the caf.dll need to be in a separate file.
    22 // Care should be taken not to define the exported data in the same source file 
    22 // Care should be taken not to define the exported data in the same source file 
    23 // in which they are referred, lest the compiler inline's it. If inlined, the 
    23 // in which they are referred, lest the compiler inline's it. If inlined, the 
    24 // data cannot be patched. Hence, the definition of data must be put in a 
    24 // data cannot be patched. Hence, the definition of data must be put in a 
    25 // separate source file and they must be declared in other source files by 
    25 // separate source file and they must be declared in other source files by 
    26 // #including "patchdata.h".
    26 // #including <caf/patchdata.h>.
    27 
    27 
    28 EXPORT_C extern const TUint8 KCafLoadPostProductionAgents = 0x00;
    28 EXPORT_C extern const TUint8 KCafLoadPostProductionAgents = 0x00;
       
    29