mirror of
https://github.com/golang/go.git
synced 2025-05-07 16:43:03 +00:00
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*);
|