home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Runimage / Delphi50 / Demos / Activex / Shellext / qregister.dpr < prev   
Encoding:
Text File  |  1999-08-11  |  734 b   |  25 lines

  1. // This COM server is an example of how to accomplish COM functionality
  2. // without using any object oriented Pascal constructs.  Object Pascal
  3. // classes are not used and so neither are Object Pascal Interfaces.  All
  4. // interface pointers are true pointers.  This was done as a study in
  5. // contrasts.  Compare this code to that found in the ContMenu project.
  6.  
  7. // Note: Although this project uses units wherein Object Pascal classes and
  8. // interfaces are defined, none of those classes or interfaces are used in
  9. // the code.
  10.  
  11. library QRegister;
  12.  
  13. uses
  14.   Windows,
  15.   PureContextMenu in 'PureContextMenu.pas';
  16.  
  17. exports
  18.   DllGetClassObject,
  19.   DllCanUnloadNow,
  20.   DllRegisterServer,
  21.   DllUnregisterServer;
  22.  
  23. begin
  24. end.
  25.