home *** CD-ROM | disk | FTP | other *** search
/ Hot Shareware 32 / hot34.iso / ficheros / LVB / T2W32523.ZIP / T2WIN-32.ODL < prev    next >
Text File  |  1998-04-07  |  1KB  |  43 lines

  1. [
  2.     uuid(B0F22620-C8CF-11d1-921D-006097A8F11E),
  3.     helpstring("TIME TO WIN 32-Bit Type Library")
  4. ]
  5.  
  6. library TimeToWin32
  7. {
  8.     [
  9.          helpstring("String"),
  10.          dllname("T2WIN-32.DLL")
  11.       ]
  12.       module String
  13.       {
  14.          [
  15.             helpstring("Sums all numerics chars in a given string."),
  16.             entry("cAddDigit")
  17.          ]
  18.          short _stdcall cAddDigit
  19.          (
  20.             [in]  BSTR *Text
  21.          );
  22.          [
  23.             helpstring("Aligns a given string (left, center, right) into an another new string."),
  24.             entry("cAlign")
  25.          ]
  26.          short _stdcall cAlign
  27.          (
  28.             [in]  BSTR *Text,
  29.         [in]  short TypeAlign,
  30.         [in]  long NewLength
  31.          );
  32.          [
  33.             helpstring("Converts an integer or a long integer into Roman representation."),
  34.             entry("cArabicToRoman")
  35.          ]
  36.          short _stdcall cArabicToRoman
  37.          (
  38.             [in]  VARIANT *lpVar
  39.          );
  40.       };
  41.    };
  42.  
  43.