19 lines
746 B
Modula-2
19 lines
746 B
Modula-2
;;************************************************************************
|
|
; File : DDSReader.def : Declares the module parameters for the DLL. *
|
|
; The only functions that need to be export are *
|
|
; CKGetPluginInfo which will return inforation about this plugin *
|
|
; CKGetReader which will be called when the framework need to read a *
|
|
; .dds file. *
|
|
; *
|
|
; Virtools SDK *
|
|
; Copyright (c) Virtools 2001, All Rights Reserved. *
|
|
;*************************************************************************
|
|
;LIBRARY "DDSReader"
|
|
DESCRIPTION 'DDSReader Windows Dynamic Link Library'
|
|
|
|
EXPORTS
|
|
; Explicit exports can go here
|
|
CKGetReader
|
|
CKGetPluginInfo
|
|
|