Ignore:
Timestamp:
Sep 26, 2016, 8:14:13 PM (9 years ago)
Author:
bird
Message:

kFsCache: Implemented object names changing to a longer ones.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/msc_buffered_printf.c

    r2910 r2967  
    4747#pragma warning(disable: 4273) /* inconsistent dll linkage*/
    4848
     49#ifndef KWORKER
     50# define DLL_IMPORT __declspec(dllexport)
     51#else
     52# define DLL_IMPORT
     53#endif
     54
    4955extern size_t maybe_con_fwrite(void const *pvBuf, size_t cbUnit, size_t cUnits, FILE *pFile);
    5056
     
    5763 * @param   ...                 Format arguments.
    5864 */
    59 __declspec(dllexport)
     65DLL_IMPORT
    6066int __cdecl printf(const char *pszFormat, ...)
    6167{
     
    7682 * @param   va                  Format arguments.
    7783 */
    78 __declspec(dllexport)
     84DLL_IMPORT
    7985int __cdecl vprintf(const char *pszFormat, va_list va)
    8086{
     
    114120 * @param   va                  Format arguments.
    115121 */
    116 __declspec(dllexport)
     122DLL_IMPORT
    117123int __cdecl fprintf(FILE *pFile, const char *pszFormat, ...)
    118124{
     
    160166 * @param   pszString           The string to write. (newline is appended)
    161167 */
    162 __declspec(dllexport)
     168DLL_IMPORT
    163169int __cdecl puts(const char *pszString)
    164170{
     
    235241 * @param   pFile               The output file.
    236242 */
    237 __declspec(dllexport)
     243DLL_IMPORT
    238244int __cdecl fputs(const char *pszString, FILE *pFile)
    239245{
Note: See TracChangeset for help on using the changeset viewer.