Jump to content

First time using DLL's


gleem
 Share

Recommended Posts

I am new in the arena of working with dll's from a programming perspective.

what I am trying to accomplish overall is to write a program that will parse DICOM header information. Currently, the DICOM viewer application I use has a DICOM that is used to perform such a function.

As a mere set of baby steps, I was looking at the function list for DLLOpen and saw this example:

$dll = DllOpen("user32.dll")
$result = DllCall($dll, "int", "MessageBox", "hwnd", 0, "str", "Some text", "str", "Some title", "int", 0)
DllClose($dll)

My question is this, if my data flow is to apply the DLL to a DICOM image to retrieve information would below be accurate?

$dll = DllOpen"dicomheader.dll dicomimage.xa"

Link to comment
Share on other sites

Only one way to find out and that is to try. You will have to have the correct syntax though.

Check the return value and print it out using ConsoleWrite. This will let you know if it was successful.

Post your code because code says more then your words can. SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y. Use Opt("MustDeclareVars", 1)[topic="84960"]Brett F's Learning To Script with AutoIt V3[/topic][topic="21048"]Valuater's AutoIt 1-2-3, Class... is now in Session[/topic]Contribution: [topic="87994"]Get SVN Rev Number[/topic], [topic="93527"]Control Handle under mouse[/topic], [topic="91966"]A Presentation using AutoIt[/topic], [topic="112756"]Log ConsoleWrite output in Scite[/topic]

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...