Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6907637
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T08:27:37+00:00 2026-05-27T08:27:37+00:00

I am having an unmanaged dll written using C++. I am able to call

  • 0

I am having an unmanaged dll written using C++. I am able to call some functions easily from my C# application. But one function make me suffer 🙂

C++

The problem is in the log parameter. It should be reflected as an array of the Data_Struct type:

typedef struct
{
unsigned int    id;
unsigned short  year;
unsigned char   month;
unsigned char   day;
unsigned char   hour;
unsigned char   min;
unsigned char   sec;
unsigned char   status; 
}Data_Struct;

int Read_Stored_Data(HUNIT pUnitHandle, int option, int updateFlag, 
                     int maxEntries, unsigned char *log)

C# (my conversion)

public struct Data_Struct
{
    public uint id;
    public ushort year;
    public byte month;
    public byte day;
    public byte hour;
    public byte min;
    public byte sec;
    public byte status;

}

[DllImport("SData.dll", EntryPoint = "Read_Stored_Data")]
public static extern int Read_Stored_Data(int pUnitHandle, int option, 
    int updateFlag, int maxEntries, ref Data_Struct[] log);

Please assume that I am passing pUnitHandle, option, updateFlag, maxEntries with correct values. The problem is the last parameter (log):

Data_Struct[] logs = new Data_Struct[1000];
res = Read_Stored_Data(handle, 1, 0, 1000, ref logs); // This should work but it 
                                                      // causes the application 
                                                      // to terminate!

Any idea?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T08:27:37+00:00Added an answer on May 27, 2026 at 8:27 am

    Try playing with the PInvoke attributes.

    Specifically, apply layout to the struct:

    [StructLayout(LayoutKind.Sequential)]
    public struct Data_Struct
    {
        public uint id;
        public ushort year;
        public byte month;
        public byte day;
        public byte hour;
        public byte min;
        public byte sec;
        public byte status;
    }
    

    and apply a marshalling attribute to the parameter, while removing ref:

    [DllImport("SData.dll", EntryPoint = "Read_Stored_Data")]
    public static extern int Read_Stored_Data(int pUnitHandle, int option,
        int updateFlag, int maxEntries, [MarshalAs(UnmanagedType.LPArray), Out()] Data_Struct[] log);
    

    See if that helps, adjust accordingly.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I’m having some difficulties while trying to consume an unmanaged-code dll from my application
Having my own Java code I'm using C# to call some unmanaged code that
I've written a DLL in unmanaged visual C++, and I'm having a little trouble
I have an unmanaged DLL which I'm currently calling from C# using a COM
I observe unmanaged.dll files having a unmanaged.dll.manifest file tagging along. On opening this files
I am having a C# (.NET 3.5, VS2005 Professional) application that uses unmanaged 32bit
I am trying to use a C++ DLL in C# and having some issues
I am trying to call unmanaged code using C#. extern C __declspec(dllexport) LPBYTE DataReceived(LPBYTE
I'm using an unmanaged library written in C++. The library has a managed C++
I give up, I have to write and ask; I'm using an unmanaged DLL

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.