Changeset 45924 in webkit for trunk/JavaScriptCore/wtf/win/MainThreadWin.cpp
- Timestamp:
- Jul 15, 2009, 10:34:49 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/win/MainThreadWin.cpp
r44765 r45924 1 1 /* 2 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. 3 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. 3 4 * 4 5 * Redistribution and use in source and binary forms, with or without … … 56 57 return; 57 58 59 #if PLATFORM(WINCE) 60 WNDCLASS wcex; 61 memset(&wcex, 0, sizeof(WNDCLASS)); 62 #else 58 63 WNDCLASSEX wcex; 59 64 memset(&wcex, 0, sizeof(WNDCLASSEX)); 60 65 wcex.cbSize = sizeof(WNDCLASSEX); 66 #endif 61 67 wcex.lpfnWndProc = ThreadingWindowWndProc; 62 68 wcex.lpszClassName = kThreadingWindowClassName; 69 #if PLATFORM(WINCE) 70 RegisterClass(&wcex); 71 #else 63 72 RegisterClassEx(&wcex); 73 #endif 64 74 65 75 threadingWindowHandle = CreateWindow(kThreadingWindowClassName, 0, 0,
Note:
See TracChangeset
for help on using the changeset viewer.