home *** CD-ROM | disk | FTP | other *** search
/ Dan Appleman's Visual Bas…s Guide to the Win32 API / Dan.Applmans.Visual.Basic.5.0.Programmers.Guide.To.The.Win32.API.1997.Ziff-Davis.Press.CD / VB5PG32.mdf / vbpg32 / apigid32 / apigid.odl next >
Encoding:
Text File  |  1995-07-04  |  1.6 KB  |  48 lines

  1. // apigid.odl - Exported type library file for apigid32.dll
  2.  
  3. //[uuid(59BACB70-7EA1-11CE-8632-524153480000),
  4. // helpstring("Type library for apigid32.dll")]
  5. // library APIGuide {
  6. //     [dllname("apigid32.dll")]
  7. //    module APIGuide {
  8. //        [entry("ReceivesInteger"), helpstring("Receives an Integer")] short stdcall ReceivesInteger([in] short x);
  9. //        };
  10. //    };
  11.  
  12.    [
  13.       uuid(59BACB70-7EA1-11CE-8632-524153480000),
  14.       //helpfile("C:\WINDOWS\WIN31WH.HLP"),
  15.       //helpcontext(0),
  16.       helpstring("Desaware ApiGid32.DLL Type Library")
  17.    ]
  18.    library APIGuideLibrary
  19.    {
  20.       [
  21.          helpstring("APIGuide library for VB Programmer's Guide to Win32 API"),
  22.          dllname("apigid32.dll")
  23.       ]
  24.       module ApiGid32
  25.       {
  26.          [helpcontext(0),helpstring("Receives an integer."), entry("ReceivesInteger")]
  27.          short _stdcall ReceivesInteger([in] short x);
  28.             [helpstring("Receives a VB string"), entry("ReceivesVBString")]
  29.             void _stdcall ReceivesVBString([in] BSTR *sptr);
  30.             [helpstring("Receives a string"), entry("ReceivesString")]
  31.             void _stdcall ReceivesString([in] LPSTR sptr);
  32.             [helpstring("Receives a string"), entry("ReceivesString")]
  33.             void _stdcall ReceivesStringW([in] BSTR sptr);
  34.  
  35.       };
  36.       [ helpstring ("APIGuide common API function declarations"),
  37.           dllname("kernel32.dll")
  38.         ]
  39.         module ApiKernel32
  40.         {
  41.             [helpstring("Get Windows Version"), entry("GetVersion")]
  42.             short _stdcall GetVersion1();
  43.             [helpstring("Get Windows Version 2"), entry("GetVersion")]
  44.             long _stdcall GetVersion2();
  45.         }
  46.         
  47.     };
  48.