home *** CD-ROM | disk | FTP | other *** search
/ Video Toaster 4.2 / Video Toaster v4.2.iso / programs / documentation / lightwave / sdk / include / freq.h next >
Encoding:
C/C++ Source or Header  |  1995-03-01  |  668 b   |  32 lines

  1. /*
  2.  * LWSDK Header File
  3.  * Copyright 1995  NewTek, Inc.
  4.  */
  5. #ifndef TOOLS_FREQ_H
  6. #define TOOLS_FREQ_H
  7.  
  8. #include <plug.h>
  9.  
  10. typedef struct {
  11.     int              reqType, result;
  12.     const char      *title;
  13.     const char      *fileType;
  14.     char            *path;
  15.     char            *baseName;
  16.     char            *fullName;
  17.     int              bufLen;
  18. } FileReq_Local;
  19.  
  20. #define FREQ_GENERIC     0
  21. #define FREQ_LOAD        1
  22. #define FREQ_SAVE        2
  23. typedef const char      *FileTypeFunc (const char *);
  24. extern         int
  25. FileReq_SysLocal (
  26.     long                     version,
  27.     GlobalFunc              *global,
  28.     FileReq_Local           *local,
  29.     void                    *dummy);
  30.  
  31. #endif
  32.