Ignore:
Timestamp:
May 19, 2000, 2:10:04 PM (25 years ago)
Author:
sandervl
Message:

added stubs, fixed export ordinals

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/shlwapi/pathcpp.cpp

    r3550 r3562  
    1 /* $Id: pathcpp.cpp,v 1.1 2000-05-18 14:07:23 sandervl Exp $ */
     1/* $Id: pathcpp.cpp,v 1.2 2000-05-19 12:10:04 sandervl Exp $ */
    22
    33/*
     
    3737
    3838#include "debugtools.h"
     39
     40#include <winreg.h>
     41
     42#include <heapstring.h>
    3943
    4044ODINDEBUGCHANNEL(SHLWAPI-SHELLPATH)
     
    9498  return (LPWSTR)pszPath;
    9599}
     100
     101//SvL: NT seems to concatenate both strings (not tested very well)
     102ODINFUNCTION2(BOOL, PathAddExtensionA, LPSTR, pszPath, LPSTR, pszExtension)
     103{
     104  lstrcatA(pszPath, pszExtension);
     105  return 1;
     106}
     107
     108ODINFUNCTION2(BOOL, PathAddExtensionW, LPWSTR, pszPath, LPWSTR, pszExtension)
     109{
     110  lstrcatW(pszPath, pszExtension);
     111  return 1;
     112}
     113
Note: See TracChangeset for help on using the changeset viewer.