Ignore:
Timestamp:
Dec 18, 1999, 5:19:19 PM (26 years ago)
Author:
sandervl
Message:

partly implemented GetCurrencyFormatA/W

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/stubs.cpp

    r2042 r2111  
    1 /* $Id: stubs.cpp,v 1.12 1999-12-09 11:00:40 sandervl Exp $ */
     1/* $Id: stubs.cpp,v 1.13 1999-12-18 16:19:19 sandervl Exp $ */
    22
    33/*
     
    18601860           lpCurrencyStr,
    18611861           cchCurrency));
    1862 
     1862 
     1863  if(lpValue && lpCurrencyStr) {
     1864        lstrcpyA(lpCurrencyStr, lpValue);
     1865        return lstrlenA(lpCurrencyStr);
     1866  }
    18631867  return (0);
    18641868}
     
    18971901           lpCurrencyStr,
    18981902           cchCurrency));
     1903
     1904  if(lpValue && lpCurrencyStr) {
     1905        lstrcpyW(lpCurrencyStr, lpValue);
     1906        return lstrlenW(lpCurrencyStr);
     1907  }
    18991908
    19001909  return (0);
Note: See TracChangeset for help on using the changeset viewer.