Changeset b8a4cd332953c030daa87e7481da92c98ce19bb7
- Timestamp:
- 04/30/08 19:01:20
(4 months ago)
- Author:
- Jean-Baptiste Kempf <jb@altair.videolan.org>
- git-committer:
- Jean-Baptiste Kempf <jb@altair.videolan.org> 1209574880 +0200
- git-parent:
[b942bf2b1bf1f9ca9b9ca951937ab947d42b376a]
- git-author:
- Jean-Baptiste Kempf <jb@altair.videolan.org> 1209574880 +0200
- Message:
Win64 compatible modifications around set/getWindowLong
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r449fd28 |
rb8a4cd3 |
|
| 288 | 288 | NULL ); /* sent to WM_CREATE */ |
|---|
| 289 | 289 | |
|---|
| 290 | | SetWindowLong( ipcwindow, GWL_WNDPROC, (LONG)WMCOPYWNDPROC ); |
|---|
| 291 | | SetWindowLongPtr( ipcwindow, GWL_USERDATA, (LONG_PTR)p_this ); |
|---|
| | 290 | SetWindowLongPtr( ipcwindow, GWLP_WNDPROC, (LRESULT)WMCOPYWNDPROC ); |
|---|
| | 291 | SetWindowLongPtr( ipcwindow, GWLP_USERDATA, (LONG_PTR)p_this ); |
|---|
| 292 | 292 | |
|---|
| 293 | 293 | /* Signal the creation of the thread and events queue */ |
|---|
| … | … | |
| 310 | 310 | playlist_t *p_playlist; |
|---|
| 311 | 311 | |
|---|
| 312 | | p_this = (vlc_object_t *)GetWindowLongPtr( hwnd, GWL_USERDATA ); |
|---|
| | 312 | p_this = (vlc_object_t *)GetWindowLongPtr( hwnd, GWLP_USERDATA ); |
|---|
| 313 | 313 | |
|---|
| 314 | 314 | if( !p_this ) return 0; |
|---|