home *** CD-ROM | disk | FTP | other *** search
/ Video Toaster 4.2 / Video Toaster v4.2.iso / programs / documentation / lightwave / sdk / include / splug.h < prev   
Encoding:
C/C++ Source or Header  |  1995-03-01  |  366 b   |  22 lines

  1. /*
  2.  * LWSDK Header File
  3.  * Copyright 1995  NewTek, Inc.
  4.  */
  5. #ifndef TOOLS_SPLUG_H
  6. #define TOOLS_SPLUG_H
  7.  
  8. #include <plug.h>
  9.  
  10. typedef struct st_ServerRecord {
  11.     const char      *class;
  12.     const char      *name;
  13.     ActivateFunc    *activate;
  14. } ServerRecord;
  15. extern         void *
  16. Startup (void);
  17. extern         void
  18. Shutdown (
  19.     void                    *serverData);
  20.  
  21. #endif
  22.