Python Forum
Calling a C Func though Pyhon Script using DLL file which is created for C file.
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Calling a C Func though Pyhon Script using DLL file which is created for C file.
#1
1. I've created a C file (timestamp.c) having a function which returns the Timestamp in string format.
2. For this C file I've created a DLL (timestamp.dll) file which can call the above Function through Python Script.
for example::

from ctypes import *

libc = cdll.LoadLibrary("C:\\MinGW\\bin\\timestamp.dll")
print libc.GetMicroSecTimeStamp()


3. After running this script I'm getting an output like this :: 1734103168
4. But I'm expecting an Output like this :: 1483617487.419234 (This is an output from executable C file using the same function)
5. I don't know whether the Python output is right or wrong. I guess it's a wrong one.

My question is whether the my DLL file is linking properly or not?
Below are the things I've done to generate & link the DLL file.
--> gcc -c timestamp.c -o timestamp.o
--> gcc -c timestamp.dll -s -shared timestamp.o
--> gcc -c main.c -o main.o
--> gcc -o main.exe -s main.o -L. -ltimestamp

then I copied the DLL file into "bin" directory of my C Compiler.

Are there any mistakes in my steps in Linking the DLL properly ?
My target is to Get the timestamps whenever I calls libc.GetMicroSecTimeStamp().
For that how can I Link my DLL file at run time ? 
If any inputs needed please let me know.

Thanks in Advance.
Reply


Messages In This Thread
Calling a C Func though Pyhon Script using DLL file which is created for C file. - by CMMouli - Jan-05-2017, 12:35 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  pass arguments from bat file to pyhon script from application absolut 2 884 Jan-13-2025, 11:05 AM
Last Post: DeaD_EyE
  Best way to feed python script of a file absolut 6 1,025 Jan-11-2025, 07:03 AM
Last Post: Gribouillis
  How to write variable in a python file then import it in another python file? tatahuft 4 846 Jan-01-2025, 12:18 AM
Last Post: Skaperen
  How to make it so whatever I input into a script gets outputted on a different file spermatozwario 4 1,080 Nov-24-2024, 12:58 PM
Last Post: deanhystad
  JSON File - extract only the data in a nested array for CSV file shwfgd 2 1,002 Aug-26-2024, 10:14 PM
Last Post: shwfgd
  FileNotFoundError: [Errno 2] No such file or directory although the file exists Arnibandyo 0 786 Aug-12-2024, 09:11 AM
Last Post: Arnibandyo
  "[Errno 2] No such file or directory" (.py file) IbrahimBennani 13 6,042 Jun-17-2024, 12:26 AM
Last Post: AdamHensley
  How can I print from within actor(func) ?? Pedroski55 2 893 May-01-2024, 05:35 AM
Last Post: Pedroski55
  File is not being created with 'w' argument CAD79 3 1,466 Mar-14-2024, 12:05 PM
Last Post: snippsat
  python script is hanging while calling a procedure in database prasanthi417 4 1,983 Jan-17-2024, 02:33 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020