CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 1999
    Posts
    1

    How do use *.flt graphic filters?

    How can the graphic filters of MS-Office (*.flt files) used in own programms?
    Is a API documentation or FAQ availible?
    For the 16 bit version was an article in the Microsoft System Journal (1992)

    Thanks,
    Johannes



  2. #2
    Join Date
    May 1999
    Location
    Oregon, USA
    Posts
    302

    Re: How do use *.flt graphic filters?

    I just did a bit of digging using dumpbin and I found out that they are
    standard DLL files with nearly identical exported functions. Theoretically
    one could use LoadLibrary and GetProcAddress to get pointers to the
    exported functions. Then the question is, what are the prototypes of
    those functions ? I don't know that right now but I'll keep digging.



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured