Skip to content

Instantly share code, notes, and snippets.

View bishanPundhir's full-sized avatar

Bishan Pundhir bishanPundhir

View GitHub Profile
@esskar
esskar / Foo.cpp
Created September 24, 2012 23:22
passing char*[] from c++ dll Struct to c#
#include <stdio.h>
#include <Windows.h>
struct Name
{
char FirstName[100];
char LastName[100];
char *Array[3];
};