iMac (21.5-inch, Late 2009) or iMac (27-inch, Late 2009): Bluetooth not available with Windows

 
Thread Tools Search this Thread
Operating Systems OS X (Apple) OS X Support RSS iMac (21.5-inch, Late 2009) or iMac (27-inch, Late 2009): Bluetooth not available with Windows
# 1  
Old 10-20-2009
iMac (21.5-inch, Late 2009) or iMac (27-inch, Late 2009): Bluetooth not available with Windows

After installing Boot Camp on an iMac (21.5-inch, Late 2009) or iMac (27-inch, Late 2009), you may notice the Apple Wireless Keyboard (2009) and Apple Magic Mouse will work, but Bluetooth icons do not appear in Control Panel and Bluetooth does not appear in the Device Manager.

More from Apple OS X Support ...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. OS X (Apple)

Just Got A New iMAC G5 !!!

Hi! I just got a new iMAC G5 (20") and I love it!!!! Amazon dropped the price $200, and there was also a $150 rebate, making it around $1325, so I could not resist anymore Finally!!!! Neo (2 Replies)
Discussion started by: Neo
2 Replies

2. UNIX for Dummies Questions & Answers

Can we install Unix in PC or imac?

I'm a beginner in Unix OS. I really want to know what kind of hardware I need in order to install the Unix OS.(I know Linx can be installed in both Mac & PC, but not Unix) Thanks to let me ask such question here. (1 Reply)
Discussion started by: Mutsu
1 Replies
Login or Register to Ask a Question
inch(3NCURSES)															    inch(3NCURSES)

NAME
inch, winch, mvinch, mvwinch - get a character and attributes from a curses window SYNOPSIS
#include <curses.h> chtype inch(void); chtype winch(WINDOW *win); chtype mvinch(int y, int x); chtype mvwinch(WINDOW *win, int y, int x); DESCRIPTION
These routines return the character, of type chtype, at the current position in the named window. If any attributes are set for that posi- tion, their values are OR'ed into the value returned. Constants defined in <curses.h> can be used with the & (logical AND) operator to extract the character or attributes alone. Attributes The following bit-masks may be AND-ed with characters returned by winch. A_CHARTEXT Bit-mask to extract character A_ATTRIBUTES Bit-mask to extract attributes A_COLOR Bit-mask to extract color-pair field information RETURN VALUE
Functions with a "mv" prefix first perform a cursor movement using wmove, and return an error if the position is outside the window, or if the window pointer is null. NOTES
Note that all of these routines may be macros. PORTABILITY
These functions are described in the XSI Curses standard, Issue 4. SEE ALSO
ncurses(3NCURSES). Comparable functions in the wide-character (ncursesw) library are described in in_wch(3NCURSES). inch(3NCURSES)