-
problem in mts.
Question is:
I'm developing a component for mts, that to work with both c++&vb client.
Can i use my own data types(c++ struct)
as a parameter type to exchage information.... instead of having tomany
parameters for 1 funtion.
(e.g)
GetEmpDetails([in]int id,[out]BSTR* empName,[out]int* empAge,[out]BSTR*
empDept); // normal notation.
But i want to write a funtion like this:
typedef Struct public Employee
{
BSTR* name;
int age;
BSTR* empDept;
} myEmployee;
//
GetEmpDetails([in] int id, [out]Employee* emp);
//
Will this funtion work correctly if i deploy under MTS package? THAT'S MY
QUESTION?
Thanks in Adv
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Development Centers
-- Android Development Center
-- Cloud Development Project Center
-- HTML5 Development Center
-- Windows Mobile Development Center
|