mirror of
https://github.com/golang/go
synced 2024-11-05 17:36:15 -07:00
71ed6eb25a
This is not quite what that issue reports, because this does not involve a DLL. But I wanted to make sure this much was working. Update #4339 R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/13653043
10 lines
153 B
C
10 lines
153 B
C
typedef struct Issue4339 Issue4339;
|
|
|
|
struct Issue4339 {
|
|
char *name;
|
|
void (*bar)(void);
|
|
};
|
|
|
|
extern Issue4339 exported4339;
|
|
void handle4339(Issue4339*);
|