Hi,

Please find code used to create dll:

add_1.cpp

#include "add_1.h"
using namespace std;

Mathematics::Mathematics()
{

}

void Mathematics::input()
{
    cout << "Input two inetegers\n";
    cin >> x >> y;
}
void Mathematics::add()
{
cout << "Result = " << x + y;
}

add_1.h
#include <iostream>

class Mathematics {
  int x, y;
public:
            __declspec(dllexport) Mathematics();//constructor
            __declspec(dllexport) void input();
            __declspec(dllexport) void add();
};

Dll created: Addition.dll

Python Code to import above dll:
import ctypes
From ctypes import *
testDll = cdll.LoadLibrary("D:\Python Test Codes\DLL_Test\Addition.dll")
test1 = ctypes.WINFUNCTYPE(None)
test2 = test1 (("add", testDll))

Error Displayed
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: function 'add' not found



::DISCLAIMER::
----------------------------------------------------------------------------------------------------------------------------------------------------

The contents of this e-mail and any attachment(s) are confidential and intended 
for the named recipient(s) only.
E-mail transmission is not guaranteed to be secure or error-free as information 
could be intercepted, corrupted,
lost, destroyed, arrive late or incomplete, or may contain viruses in 
transmission. The e mail and its contents
(with or without referred errors) shall therefore not attach any liability on 
the originator or HCL or its affiliates.
Views or opinions, if any, presented in this email are solely those of the 
author and may not necessarily reflect the
views or opinions of HCL or its affiliates. Any form of reproduction, 
dissemination, copying, disclosure, modification,
distribution and / or publication of this message without the prior written 
consent of authorized representative of
HCL is strictly prohibited. If you have received this email in error please 
delete it and notify the sender immediately.
Before opening any email and/or attachments, please check them for viruses and 
other defects.

----------------------------------------------------------------------------------------------------------------------------------------------------
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor

Reply via email to