Changeset a7f674b8d2d0fb9378ed6aab1257f49b8447f1f2
- Timestamp:
- 04/07/08 15:34:55
(5 months ago)
- Author:
- Felix Paul Kühne <fkuehne@videolan.org>
- git-committer:
- Felix Paul Kühne <fkuehne@videolan.org> 1207575295 +0200
- git-parent:
[7860203e37aba4c10a2a97700994e21060f8e768]
- git-author:
- Felix Paul Kühne <fkuehne@videolan.org> 1207575295 +0200
- Message:
Compilation fixes
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r04a7130 |
ra7f674b |
|
| 2 | 2 | * mac.c: Screen capture module for the Mac. |
|---|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | | * Copyright (C) 2004 the VideoLAN team |
|---|
| | 4 | * Copyright (C) 2004, 2008 the VideoLAN team |
|---|
| 5 | 5 | * $Id$ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Derk-Jan Hartman <hartman at videolan dot org> |
|---|
| | 8 | * arai <arai_a@mac.com> |
|---|
| 8 | 9 | * |
|---|
| 9 | 10 | * This program is free software; you can redistribute it and/or modify |
|---|
| … | … | |
| 25 | 26 | * Preamble |
|---|
| 26 | 27 | *****************************************************************************/ |
|---|
| 27 | | #include <stdlib.h> |
|---|
| 28 | | |
|---|
| 29 | | #include <vlc/vlc.h> |
|---|
| 30 | | #include <vlc/input.h> |
|---|
| 31 | | |
|---|
| | 28 | #import <stdlib.h> |
|---|
| | 29 | |
|---|
| | 30 | #ifdef HAVE_CONFIG_H |
|---|
| | 31 | # import "config.h" |
|---|
| | 32 | #endif |
|---|
| | 33 | |
|---|
| | 34 | #import <vlc/vlc.h> |
|---|
| | 35 | |
|---|
| | 36 | #import <ApplicationServices/ApplicationServices.h> |
|---|
| 32 | 37 | #import <OpenGL/OpenGL.h> |
|---|
| 33 | | #include <GL/gl.h> |
|---|
| 34 | | #include <ApplicationServices/ApplicationServices.h> |
|---|
| 35 | 38 | |
|---|
| 36 | 39 | typedef int CGSConnectionRef; |
|---|
| … | … | |
| 43 | 46 | extern CGError CGSGetCurrentCursorLocation( CGSConnectionRef, CGPoint * ); |
|---|
| 44 | 47 | |
|---|
| 45 | | #include "screen.h" |
|---|
| | 48 | #import "screen.h" |
|---|
| 46 | 49 | |
|---|
| 47 | 50 | struct screen_data_t |
|---|