summaryrefslogtreecommitdiff
path: root/basicctrls_windows.c
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-11-04 09:18:57 -0500
committerPietro Gagliardi <[email protected]>2014-11-04 09:18:57 -0500
commit44cd9db87cbbe5534ee88e4bc96cfcef130d53dc (patch)
tree0cc427d9d4b909ec88824fe1111fcb6aada430a2 /basicctrls_windows.c
parentc5aa4bc964c4c33dd846c932ae0f2b6e4d2413eb (diff)
Started the Windows ProgressBar implemetnation. There's still an important detail left over...
Diffstat (limited to 'basicctrls_windows.c')
-rw-r--r--basicctrls_windows.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/basicctrls_windows.c b/basicctrls_windows.c
index 60cc0c8..4cda2eb 100644
--- a/basicctrls_windows.c
+++ b/basicctrls_windows.c
@@ -235,4 +235,7 @@ void setSpinboxEditSubclass(HWND hwnd, void *data)
{
if ((*fv_SetWindowSubclass)(hwnd, spinboxEditSubProc, 0, (DWORD_PTR) data) == FALSE)
xpanic("error subclassing Spinbox edit control to give it its own event handler", GetLastError());
-} \ No newline at end of file
+}
+
+// provided for cgo's benefit
+LPWSTR xPROGRESS_CLASS = PROGRESS_CLASS;