diff options
| author | Pietro Gagliardi <[email protected]> | 2014-05-25 15:23:11 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-05-25 15:23:11 -0400 |
| commit | 2e6254ec61593d3da36bab2c855b2c7fd7f229ac (patch) | |
| tree | 385f63de5b2ab0a3b1126c923995cdd45f093d01 /experiments | |
| parent | 51469fffb57cef9624f53a744409475fc14c6208 (diff) | |
Finished migrating the Windows code to using the pregenerated constants.
Diffstat (limited to 'experiments')
| -rw-r--r-- | experiments/windowsconstgen.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/experiments/windowsconstgen.go b/experiments/windowsconstgen.go index d840a1a..448b549 100644 --- a/experiments/windowsconstgen.go +++ b/experiments/windowsconstgen.go @@ -80,6 +80,7 @@ var hacknames = map[string]string{ "_NULL": "x_NULL", "_IDI_APPLICATION": "x_IDI_APPLICATION", "_IDC_ARROW": "x_IDC_ARROW", + "_HWND_MESSAGE": "x_HWND_MESSAGE", } func hacknamesPreamble() string { @@ -126,8 +127,7 @@ func main() { knowns += "\n" + ident + " (" + kind + ")" } if knowns != "" { -//ignore for now while I still migrate everything -// panic("error: the following are still known!" + knowns) // has a newline already + panic("error: the following are still known!" + knowns) // has a newline already } // keep sorted for git |
