Import DLL library

I have a question about DLL's. I have a DLL from an application and I need to use some functions from this DLL. How can I do that? As an exemple my dll is mydll.dll and use this dll to print, it's useful in VBA. I use the function F_PRINT from it. How can I use this same function in ABAP? I tried the SOLE tcode but doen't work. Any ideia?
Thanks everyone.

is it a activex dll, if yes then check out the following weblog where i had used MS text to speech control in ABAP
Make your SAPGUI Talk
this may give you an idea on how to go about.
Regards
Raja

Similar Messages

  • How to load DLL library on Labview?

    Hi
    I have an application that is working well in Visual C++ 2012. I would like to load the dll library on labview and to execute the code on labview. I have only the DLL file, the working application and the help file. Is it possible to realise this task on labview using Call Library Function Node.
    I have par example the following code in .cpp file:
    void CMTBClientUsingCOMDlg:nBnClickedConnect()
    // TODO: Add your control notification handler code here
    try
    // login to MTB, using english language
    m_MTBConnection->Login(("en"), &m_ID);
    // get MTB root (forcing an internal QueryInterface() on IMTBRoot!)
    m_Root = (IUnknown*)(m_MTBConnection->GetRoot((BSTR)m_ID));
    // ask root to return the number of devices
    int count = m_Root->GetDeviceCount();
    // list all devices
    for (int i=0; i < count; i++)
    _bstr_t name = ((IMTBIdentPtr)m_Root->GetDevice(i))->GetName();
    m_ComboDevices.AddString(name);
    if( m_ComboDevices.GetCount() > 0)
    m_ComboDevices.SetCurSel(0);
    OnCbnSelchangeDevices();
    m_BtnConnect.EnableWindow(false);
    m_BtnDisconnect.EnableWindow(true);
    catch(_com_error e)
    // connection close
    OnBnClickedDisconnect();
    DisplayError(&e);
    How to execute this code on labview?
    Best regards

    Hi
    I have attached the help file describing the dll library (MTBApi.dll). My working program made on Visual C++ Dot Net is very big and therefore I can’t attach it.
    In my header file I import at the beginning the dll library on this way:
     #import "MTBApi.tlb" named_guids
    using namespace MTBApi;
    Than I have a class:
    class CMTBClientUsingCOMDlg : public CDialogEx
    public:
    CMTBClientUsingCOMDlg(CWnd* pParent = NULL); // standard constructor
    ~CMTBClientUsingCOMDlg(); // standard destructor
    enum { IDD = IDD_MTBCLIENTUSINGCOM_DIALOG };
    protected:
    virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
    protected:
    HICON m_hIcon;
    IMTBConnectionPtr m_MTBConnection;
    IMTBRootPtr m_Root; 
    CComBSTR m_ID; 
    IMTBChangerPtr m_Changer; 
    IMTBDevicePtr m_Device;
    DECLARE_MESSAGE_MAP()
    public:
    afx_msg void OnBnClickedConnect();
    CButton m_BtnConnect;
    In my .cpp file I have:
    CMTBClientUsingCOMDlg::CMTBClientUsingCOMDlg(CWnd* pParent /*=NULL*/)
    : CDialogEx(CMTBClientUsingCOMDlg::IDD, pParent)
    m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
    CoInitialize(NULL);
    try
    // create an instance of the connection class which can connect to the server
    m_MTBConnection = IMTBConnectionPtr(CLSID_MTBConnection);
    catch(_com_error e)
    CMTBClientUsingCOMDlg::~CMTBClientUsingCOMDlg()
    void CMTBClientUsingCOMDlg:isplayError(_com_error* e)
    void CMTBClientUsingCOMDlg:oDataExchange(CDataExchange* pDX)
    CDialogEx:oDataExchange(pDX);
    DDX_Control(pDX, IDC_CONNECT, m_BtnConnect);
    BEGIN_MESSAGE_MAP(CMTBClientUsingCOMDlg, CDialogEx)
    ON_BN_CLICKED(IDC_CONNECT, &CMTBClientUsingCOMDlg:nBnClickedConnect)
    END_MESSAGE_MAP()
    BOOL CMTBClientUsingCOMDlg:nInitDialog()
    CDialogEx:nInitDialog();
    void CMTBClientUsingCOMDlg:nPaint()
    void CMTBClientUsingCOMDlg:nBnClickedConnect()
    try
    // login to MTB, using english language
    m_MTBConnection->Login(("en"), &m_ID);
    // get MTB root (forcing an internal QueryInterface() on IMTBRoot!)
    m_Root = (IUnknown*)(m_MTBConnection->GetRoot((BSTR)m_ID));
    // ask root to return the number of devices
    int count = m_Root->GetDeviceCount();
    // list all devices
    for (int i=0; i < count; i++)
    _bstr_t name = ((IMTBIdentPtr)m_Root->GetDevice(i))->GetName();
    catch(_com_error e)
    // connection close
    My question is how to start this code in labview. How to write the function in labview, par example this function:
    m_MTBConnection->Login(("en"), &m_ID);
    Best regards
    Attachments:
    MTBApi.zip ‏1935 KB

  • Import dll

    I am trying to import a dll. All of it. I will need almost all of the functions. I have tried using the Import Library Function Node, but I realized that it is very time consuming. Also, there are functions spanning too many different header files. so I am trying to use Tools -> Import -> Shared Library (.dll). I get stuck with preprocessor directives. I am posting step by step:
    The message for the first function is:
    The function cannot be imported into LabVIEW. This might be caused by one of the following problems:
    The function is not declared in the header file but is exported in the library.
    Check the header file to make sure it contains declarations of the function.
    Undefined symbols can prevent the wizard from recognizing functions and parameters. To correct this problem, check the header file to determine if you must add preprocessor definitions. Click the Back button to return to the previous page of the wizard to add a preprocessor definitionsl (for example, "NIAPI_stdcall = __stdcall" or "NIAPIDefined = 1").
    GENAPIC_EXPORTS;GENAPIC_LINUX_BUILD;GENAPIC_WIN_BU​ILD;MIDL_PASS;MRTDLL;PYLONC_BOOL_DEFINED;PYLONC_EX​PORTS;RC_INVOKED;UNALIGNED;_CRTDBG_MAP_ALLOC;_CRT_​ALIGN;_CRT_ALTERNATIVE_INLINES;_CRT_DISABLE_PERFCR​IT_LOCKS;_CRT_FORCE_MANIFEST;_CRT_GETPUTWCHAR_NOIN​LINE;_CRT_MANAGED_HEAP_NO_DEPRECATE;_CRT_MANAGED_H​EAP_NO_WARNINGS;_CRT_MANIFEST_DEBUG;_CRT_MANIFEST_​INCONSISTENT;_CRT_MANIFEST_RETAIL;_CRT_NOFORCE_MAN​IFEST;_CRT_NONSTDC_DEPRECATE;_CRT_NONSTDC_NO_DEPRE​CATE;_CRT_NONSTDC_NO_WARNINGS;_CRT_NON_CONFORMING_​SWPRINTFS;_CRT_OBSOLETE_NO_DEPRECATE;_CRT_OBSOLETE​_NO_WARNINGS;_CRT_SECURE_CPP_OVERLOAD_SECURE_NAMES​;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES;_CRT_SECU​RE_CPP_OVERLOAD_STANDARD_NAMES_COUNT;_CRT_SECURE_D​EPRECATE_MEMORY;_CRT_SECURE_NO_DEPRECATE;_CRT_SECU​RE_NO_DEPRECATE_GLOBALS;_CRT_SECURE_NO_WARNINGS;_C​RT_SECURE_NO_WARNINGS_GLOBALS;_CRT_SECURE_WARNINGS​_MEMORY;_DEBUG;_DLL;_MSC_EXTENSIONS;_MSC_VER;_MSC_​VER_GREATER_THEN_13102050;_MT;_M_AMD64;_M_CEE;_M_C​EE_MIXED;_M_CEE_PURE;_M_IA64;_M_IX86;_PFT_SHOULD_C​HECK_RETURN;_PFT_SHOULD_CHECK_RETURN_WAT;_PFT_VER;​_POSIX_;_PREFAST_;_STATIC_CPPLIB;_TRUNCATE;_USE_32​BIT_TIME_T;_USE_ATTRIBUTES_FOR_SAL;_VC_NODEFAULTLI​B;_W64;_WIN32;_WIN64;_X86_;__BORLANDC__;__CRTDECL;​__GNUC__;__cdecl;__cplusplus;__cplusplus_cli;__lin​ux__;__midl;
    Most of these should be undefined. For example, there is:
    #ifdef GENAPIC_EXPORTS
    //do A
    #else
    //do B
    And I want it to do B. But this is complaining that GENAPIC_EXPORTS is undefined... How to get around that?
    I am attaching PylonC.h file which I think is enough to help me. The rest of the whole api is available on basler's website: http://www.baslerweb.com/MV_Customer_Service_Downl​oads_pylon-Linux-Text-16855.html. I am using Pylon 3.0 64-bit , C version.
    Attachments:
    PylonC.h ‏33 KB

    you forgot to add the genapi include directory path in the second step. Your include file references this here:
    #include <genapic/GenApiC.h>
    And don't try to generate wrappers for DLLRegisterServer and DLLUnregisterServer.
    And last but not least, don't expect the Import Library Wizard to create magic. It can create the DLL caller VIs for you but it can not guess at how this API should be used. A C header file only gives information about how to link to the function, but none at all about how to use it. A LabVIEW VI usually also implements quite a bit about how the API is used (preparing parameters such as preallocating output buffers, etc) that is really impossible to deduce from the header file alone. It's what a C programmer continously has to worry about when calling functions and since you are incorperating this API into LabVIEW you have to worry about it too. Otherwise it will just cause exceptions.
    So you will have to go through every and each VI and check it for such problems, which is really the hard work. Creating the VIs that call the functions with Call Library Nodes may seem like a lot of work, but once you have done one or two it's absolutely trivial in comparison to the real hard work that the Import Library Wizard can't do for you at all.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Import shared library, edit vi's, arrange menu

    I'm creating a labview interface to a large dll, so I use the Tools->Import->Shared library, and it works GREAT! I have a user library I can call from the palette. So I keep adding to the dll, and now have over 100 function calls. I would like to keep the dll's in a single library, but I am constantly updating them as our drivers change (still under development). So each time I create the library, i need to edit all the connectors, and the palette is getting unwieldy. I've googled and looked through NI-DZ and Lava with no help, so I expect I just need to do a lot of manual cleanup after the import function. But, if i missed something:
    Is there a way to control the Import Shared Library wizard? (command file-like?)
     - define what are inputs and what are outputs? define the terminal patterns and connections?
    How can I modify the palette menu created by the process (sub-menu's, rename items, sort items?)
     - the "Tools->Advanced->Edit Palette Set" seems really akward.
    Any pointers to tutorials or white papers on creating libraries from a large dll?
    Thank You!

    Hi brimcd,
    Concerning editing the connections of the VI generated, when importing the updated DLL and header file, I would imagine that the unchanged bits of the header file would create connections in the same way you had created them for previous versions. As for editing the palettes, you can also access the editor by pinning the specific palette to the block diagram, and then selecting Customize. 
    It seems like you've got a great handle on the process, but in case you want a reference, here's a very complete tutorial on creating wrapper VIs for DLLs using the Wizard. I hope this helps!
    David S.

  • How to add dll library to application?

    I start programmed the CVI a few weeks ago and I have a little problem. I must make an application layer for profibus master device. However I total do not know how to add dynamic library to program, because in another way I get the error: undefined symbol. I know that it very trivial, but I cannot find solution. I have a lib file and also I include file about device, but I still get the error – undefined symbol – can you help me?
    Thanks very much for any advice or help

    Dear laszku,
    Are you looking for solutions to connect your CVI application with PLC? Because there are also solutions for that which are easy to use, and to implement with CVI.
    If you want to use your DLLs, there are some on-line help, how to import them in CVI.
    Basicaly there are two different method to import DLLs:
    - static import, when you import the library in your CVI project. The dll will be loaded when the exe starts running. If there is an issue to load the library, you'll be able to get the error at compilation time.
    - dynamic dll import, when you load the library at run-time. With this, you get the flexibility to control, when will be the dll linked to your exe in the memory, while running. The disadvantage is, you'll get errors only at run-time.
    I recommend you some of our on-line tutorial, how to load DLL into your application in CVI:
    CVI Help: Loading Dlls - This says: You cannot import DLLs directly into your project. You need to create DLL Import Library, which can be imported into your project.
    To do so, look at this knowledge base: Creating Import Libraries for a DLL in LabWindows/CVI
    You might get answers for your following questions at this FAQ page:
    FAQ: Using Dynamic Link Libraries with LabWindows/CVI
    Some help sites:
    Rules for Using DLL Files
    Linking to Functions Defined in a DLL From LabWindows/CVI
    If you need dynamic linkink, you can get example code with this site:
    How Can I Access DLL Functions in a LabWindows/CVI Program Without Including the Import Library in t...
    I hope, I could help you to find the way how to import DLL libraries.
    If you still couldn't solve the error after studying the links, please provide me more information, where, which symbol is missing, and also the full error message.
    The error you get, can be caused by the linker or pre-compiler also, which doesn't find the symbol you requested. Please check the path of your library and dll also.
    Best Regards,
    Tamas Szekely
    Applications Engineer
    National Instruments

  • Programmat​ic access to Import DLL Wizard

    Our company does a number of products, and would like to cut down time when working with the SDK. I am almost pleased with the import wizard in 2012, but I would like a few things changed. I have all the code ready to modify the output from the import DLL wizard with the scripting module, but if I could have it automatically generate and run the whole thing (possibly through a command line post-build instruction in Visual Studio), that would save some hassle.
    It's not a big deal. I just wanted to speed up the process a little, since our SDK format doesn't change. We had a custom VI generator for our SDKs before, but it gets 95% of the way there, and the wizard does everything we missed and gets about 95% of the way there as well. That, or I could try to convince my coworkers to accept the output from the wizard.
    Solved!
    Go to Solution.

    Since the SDK was already released it is probably not an option anymore, but you can certainly increase the chances for the import library wizard to do a good job by choosing standard API parameters. Basically this means to only use skalars (passed by value or reference), C strings and simple arrays. Never use structs that contain arrays (both fixed size or not). Structs only containing skalars are fine though, but don't create structosaurusses, the C equivalent of clustersaurusses in LabVIEW, big unwieldy structs/clusters.
    Then you have to review all the VIs that use output array or string buffers to let the called function write into, to make sure they are preallocated to a reasonable size for the used function.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Can't import DLL

    Hi All,
    I'm trying to use the libsie API to open .sie files from SoMat (there is a plugin for this data format for LabVIEW and DIAdem but it doens't work). I've previously imported dll's using the import wizard with a lot of sucess but I dont' know my way around c or c++ so am a bit stumped on this one. When I try to import the attached dll (you'll need to chage the extension from .doc to .dll) using the attached header file none of the calls show up. They are there in the header file. I'm wondering why this is. Is it a badly formattted header file or is there some other issue?
    I've attached a copy of the zip file that I downloaded from the HBM website. There is a demo .sie file in there if you want to look at one. There appears to be pretty comprehensive documentation on the API on the website.
    Any help or pointers gratefully received.
    Phil
    Solved!
    Go to Solution.
    Attachments:
    sie.h ‏27 KB
    libsie-1-0-0-bundle.zip ‏5817 KB
    libsie.doc ‏160 KB

    It doesn't matter what language was used to create the DLL, so long as it exports a C-compatible interface (which it does).
    If you make a copy of the header file and remove SIE_DECLARE(), leaving whatever is inside the parentheses unchanged, from each function declaration, I suspect you'll be able to import at least some of the functions. I don't know how well the import utility will handle the pointer data types, you might have to edit each Call Library Function Node to fix them manually after importing.

  • Importing to Library created "Copy To ...." Folders - Can I Delete Them ??

    I'm new to iTunes, and I'm usings Windows XP PRO SR3.
    I ripped some CDs to FLAC format (one folder per CD).
    Then converted FLAC to MP3 in a new folder tree
    (F:\Music\MP3\"one folder per CD")
    When I imported the sub-folders in the MP3 folder (my iTunes "root" folder), iTunes created a new subfolder F:\Music\MP3\"Copy To " folder for each of my original folders. This is a duplicate of a duplicate.
    Can I safely delete these "Copy To" subfolders ??
    How do I prevent iTunes from doing this in the future ??
    Advanced Setup Notes:
    "iTunes Media folder location" is: F:\Program Files\iTunes\iTunes Media
    "Keep iTunes Media folder organized" is Not Selected
    "Copy files to iTunes Media folder when adding to library" is Not selected.
    I prefer to manually control my folder/file usage.
    Thanks
    John

    I made the initial post .....
    Tried to reproduce the Importing to Library creating "Copy To ...." folders problem.
    But it didn't do it this time ??? I don't know why.
    Everything worked the way I thought it should.
    Thanks
    John

  • Systematic import of library when starting itunes 6.0.1.3

    well, I am using windows 2000.
    I have 7.5GB of music stored in itunes and for some reason itunes imports the library every time I launch the software; Every time I start itunes I get a message saying that "itunes library.itl" does not seem to be a valid file, and itunes then creates a file called "itunes library (damaged).itl"...
    I am not using podcasts, and everything was ok until I decided to move from 4.5GB to 7.5GB of music and 2212 songs.
    I uninstalled itunes 6.0.1.3 and re-installed it, but the problem is still there, so I assume it has something to do with the size of the 2 files used by itunes.
    "itunes music library.xml" is 3,096KB and "itunes library.itl" is 2,272KB.
    Has anyone else experienced the same issue?

    I've determined that iTunes has to be the topmost active window when importing, otherwise it will crash consistantly. And I though Microsoft was bad...
    iTunes for the Mac works fine though.

  • Having a problem import my library from an older version of 3

    Apple replaced my computer.  I did not import my old library before upgrading to aperture 3.3.1.  I get a meessage when trying to import the library. "The library could not be imported because it is from an out of date version of Aperture 3. Please upgrade the library to the latest version of Aperture 3 and try again."  I don't see how to upgrade the library so i can import it into the new version of aperture.

    There are a some fonts that gets installed with the Adobe app, and only get loaded when Ilustrator is booted.
    /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Fonts/
    To better help you will need answers to these questions
    What OS you are on
    What fonts you are having trouble with
    Do you use any font utility such as an Extensis product, or fontbook on mac to manage you fonts.
    as this also may be a problem with your font cache needing to be reset.

  • How can I import my library to a new computer?

    Hi:
    I just bought a new computer, and I'm trying to import my library from my old computer to the new one. I've transferred my 'My Music' folder (along with the iTunes folder inside it) onto the new computer using an external hard-drive, and I've reinstalled iTunes, but when I import the XML file (which I manually backed up from my old computer), I only get 400 songs of my 6,000 (I think these are the songs from 'My Music / iTunes').
    I've tried clearing my library and just adding 'My Music' folder, and although this gets all my songs into the library, it puts the full file name under song name (my files don't have any tags on them), and it leaves the artist field blank. Basically, I'd have to go through all my songs and re-do the sorting fields.
    I think the problem is that on my old computer, the pathway to 'My Music' was different from the pathway to 'My Music' on my new computer. Does anyone know how I can get my library to look exactly the same as it did on my old computer? As I've said, I have all the files in place, and I have the XML file ready to go. I think I just need to figure out how to get iTunes to find the songs in 'My Music'.
    Thanks!
    J

    It's a brand new computer, so there wasn't an iTunes folder in the music folder. I just copied it there from my external hard-drive. I think the problem is that on my old computer the pathway to my songs was: C/documents and settings/Ken/my documents/my music, and on my new computer the pathway is C/documents and settings/dell 720/my documents/my music. I have the songs in the right folder, and I have the iTunes folder inside the folder as well, but iTunes is only finding the iTunes folder ... it isn't finding the songs in the 'My Music' folder. I don't know what to do about this. If I clear my library and start from scratch using 'add folder to library', I'll have to re-enter all my info fields, which isn't a pleasant thought.

  • How do I import iTunes library from old PC to new PC using Home Sharing?

    I have an old PC with the latest version of iTunes. I have a new PC with an empty new version of iTunes. How do I import the library to the new PC iTunes? I thought Home Sharing was the way to go, but I can't get it to work. Also tried syncing my iPhone to new PC, but that doesn't bring the library over. Please help!
    Thanks!

    NEVER MIND, I GOT IT TO WORK!

  • HT4527 I'm transferring my iTunes library from a PC to my new iMac via home sharing.  I've followed all of the steps to "import" my library but the "import" button is greyed out.  Any suggestions?

    I'm transferring my iTunes library from a PC to my new iMac via home sharing.  I've followed all of the steps to "import" my library but the "import" button is greyed out.  Any suggestions?

    There is no need to import anything or use Home Sharing.
    Copy the ENTIRE iTunes folder from the old computer to the new computer, everything will be exactly as it was.

  • Iphoto crashes when importing to library

    I can import photos from cameras and iphone no problem but whenever i try to import from a memory stick using 'File - import to library' iphoto crashes.  I cannot find 3ivx file/folder on my computer which was suggested may cause the problem.  Any ideas?  The crash report is below.
    Thanks
    Process:         iPhoto [476]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.4.3 (9.4.3)
    Build Info:      iPhotoProject-720091000000000~2
    Code Type:       X86 (Native)
    Parent Process:  launchd [128]
    Date/Time:       2014-04-13 18:56:29.639 -0400
    OS Version:      Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Interval Since Last Report:          7312 sec
    Crashes Since Last Report:           9
    Per-App Interval Since Last Report:  778 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      EEE7BAD7-3463-4904-AE6C-0750AAA3FED3
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000c23a9800
    VM Regions Near 0xc23a9800:
        CG backing stores      00000000c1a34000-00000000c204f000 [ 6252K] rw-/rw- SM=SHM 
    --> CG backing stores      00000000c2050000-00000000c2d98000 [ 13.3M] r--/rw- SM=SHM 
        Submap                 00000000ffff0000-00000000ffff2000          r-x/r-x process-only submap
    Application Specific Information:
    objc[476]: garbage collection is OFF
    Performing @selector(importFiles:) from sender NSMenuItem 0x7bb8c870
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreGraphics                  0x9aa89aec blt_pattern_blend_XXXX32 + 686
    1   com.apple.CoreGraphics                  0x9aa89def blt_bitmap_blend_AXXX32 + 105
    2   com.apple.CoreGraphics                  0x9a66b94c argb32_mark_pixelshape + 19824
    3   com.apple.CoreGraphics                  0x9a598293 argb32_mark + 279
    4   com.apple.CoreGraphics                  0x9a5af915 argb32_image + 1037
    5   libRIP.A.dylib                          0x90ec4c75 ripd_Mark + 279
    6   libRIP.A.dylib                          0x90ec2c67 ripl_BltImage + 1368
    7   libRIP.A.dylib                          0x90ec2497 ripc_RenderImage + 269
    8   libRIP.A.dylib                          0x90ecea8c ripc_DrawImages + 6467
    9   com.apple.CoreGraphics                  0x9a66c3be CGContextDrawImages + 239
    10  com.apple.coreui                        0x98aaaa79 CUIPenCG::DrawImages(void*, CGRect const*, CGImage**, CGRect const*, unsigned long) + 45
    11  com.apple.coreui                        0x98a9bfc5 CUIRenderer::DrawWindowFrameDark(CUIDescriptor const*) + 4531
    12  com.apple.coreui                        0x98a86e0d CUIRenderer::Draw(CGRect, CGContext*, __CFDictionary const*, __CFDictionary const**) + 5701
    13  com.apple.coreui                        0x98aa7de5 CUIDraw + 206
    14  com.apple.AppKit                        0x948992e4 _NSDrawThemeBackground + 1429
    15  com.apple.AppKit                        0x94a52deb -[NSThemeFrame _drawUnifiedToolbar:] + 874
    16  com.apple.AppKit                        0x94a527f3 -[NSThemeFrame _drawTitleBar:] + 673
    17  com.apple.AppKit                        0x948951cf -[NSThemeFrame _drawFrameInterior:clip:] + 125
    18  com.apple.AppKit                        0x94894dd9 -[NSThemeFrame drawFrame:] + 119
    19  com.apple.AppKit                        0x94a52515 -[NSFrameView drawRect:] + 765
    20  com.apple.AppKit                        0x94a51c5f -[NSThemeFrame drawRect:] + 107
    21  com.apple.AppKit                        0x948636c9 -[NSView _drawRect:clip:] + 3717
    22  com.apple.AppKit                        0x94892ae6 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1958
    23  com.apple.AppKit                        0x94861026 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 708
    24  com.apple.AppKit                        0x94860627 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 259
    25  com.apple.AppKit                        0x9485bcaa -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4817
    26  com.apple.AppKit                        0x94854bd9 -[NSView displayIfNeeded] + 1365
    27  com.apple.AppKit                        0x9497481b -[NSThemeFrame handleSetFrameCommonRedisplay] + 233
    28  com.apple.AppKit                        0x949160b8 -[NSWindow _setFrameCommon:display:stashSize:] + 2253
    29  com.apple.AppKit                        0x949157e6 -[NSWindow setFrame:display:] + 71
    30  com.apple.AppKit                        0x949b9049 -[NSWindow _setFrameAfterMove:] + 496
    31  com.apple.AppKit                        0x949b8e3f -[NSWindow _windowMovedToRect:] + 261
    32  com.apple.AppKit                        0x94f4552d -[NSWindow _getPositionFromServer] + 100
    33  com.apple.AppKit                        0x94f482a8 -[NSWindow _initFromGlobalWindow:inRect:styleMask:] + 350
    34  com.apple.RemoteViewServices            0x980c4ff9 -[NSRemoteWindowController _remoteHostDidGrantRights:] + 335
    35  com.apple.RemoteViewServices            0x980c49a4 __58-[NSRemoteWindowController _handleReplySetupSharedWindow:]_block_invoke_0 + 43
    36  com.apple.CoreGraphics                  0x9a6da40b _WindowRightsGrantOfferedNotificationHandler + 678
    37  com.apple.CoreGraphics                  0x9a513a3b CGSPostLocalNotification + 218
    38  com.apple.CoreGraphics                  0x9a5e0cfd notifyDatagramHandler + 265
    39  com.apple.CoreGraphics                  0x9a5e0a25 CGSDispatchDatagramsFromStream + 316
    40  com.apple.CoreGraphics                  0x9a5e0594 snarfEvents + 481
    41  com.apple.CoreGraphics                  0x9a5e0247 CGSGetNextEventRecordInternal + 127
    42  com.apple.CoreGraphics                  0x9a633180 CGEventCreateNextEvent + 40
    43  com.apple.HIToolbox                     0x998e844e _ZL38PullEventsFromWindowServerOnConnectionjh + 69
    44  com.apple.CoreFoundation                0x90c4ed0a __CFMachPortPerform + 346
    45  com.apple.CoreFoundation                0x90c4eb91 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 49
    46  com.apple.CoreFoundation                0x90c4e7bb __CFRunLoopDoSource1 + 155
    47  com.apple.CoreFoundation                0x90c87e01 __CFRunLoopRun + 2193
    48  com.apple.CoreFoundation                0x90c871dc CFRunLoopRunSpecific + 332
    49  com.apple.CoreFoundation                0x90c97f01 CFRunLoopRun + 129
    50  com.apple.RemoteViewServices            0x980bf7c8 -[NSRemoteSavePanel runModal] + 322
    51  com.apple.iPhoto                        0x006e54d3 0xc2000 + 6436051
    52  com.apple.iPhoto                        0x002c0ee3 0xc2000 + 2092771
    53  com.apple.CoreFoundation                0x90ce6d11 -[NSObject performSelector:withObject:] + 65
    54  com.apple.AppKit                        0x9491d663 -[NSApplication sendAction:to:from:] + 232
    55  com.apple.AppKit                        0x94a10caf -[NSMenuItem _corePerformAction] + 536
    56  com.apple.AppKit                        0x94a1092c -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 171
    57  com.apple.AppKit                        0x94a0ffb5 -[NSMenu _performActionWithHighlightingForItemAtIndex:sendAccessibilityNotification:] + 79
    58  com.apple.AppKit                        0x94cebef7 -[NSMenu performActionForItemAtIndex:] + 65
    59  com.apple.AppKit                        0x94cebf2a -[NSMenu _internalPerformActionForItemAtIndex:] + 45
    60  com.apple.AppKit                        0x94cf015b -[NSMenuItem _internalPerformActionThroughMenuIfPossible] + 106
    61  com.apple.AppKit                        0x94b56670 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 172
    62  com.apple.AppKit                        0x94986246 NSSLMMenuEventHandler + 452
    63  com.apple.HIToolbox                     0x99a5dc0c _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    64  com.apple.HIToolbox                     0x998d9313 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    65  com.apple.HIToolbox                     0x998d8790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    66  com.apple.HIToolbox                     0x998ed571 SendEventToEventTarget + 76
    67  com.apple.HIToolbox                     0x99a5e0d0 _ZL18SendHICommandEventmPK9HICommandmmhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 482
    68  com.apple.HIToolbox                     0x99a5e13a SendMenuCommandWithContextAndModifiers + 70
    69  com.apple.HIToolbox                     0x99ac998d SendMenuItemSelectedEvent + 275
    70  com.apple.HIToolbox                     0x99929d79 _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 129
    71  com.apple.HIToolbox                     0x99aba88c _ZL14MenuSelectCoreP8MenuData5PointdmPP13OpaqueMenuRefPt + 608
    72  com.apple.HIToolbox                     0x99921a2a _HandleMenuSelection2 + 636
    73  com.apple.HIToolbox                     0x999217a9 _HandleMenuSelection + 53
    74  com.apple.AppKit                        0x94883bd2 _NSHandleCarbonMenuEvent + 302
    75  com.apple.AppKit                        0x948144d6 _DPSNextEvent + 2196
    76  com.apple.AppKit                        0x94813752 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    77  com.apple.AppKit                        0x9480fac1 -[NSApplication run] + 911
    78  com.apple.AppKit                        0x94aa0ac5 NSApplicationMain + 1054
    79  com.apple.iPhoto                        0x000d20b9 0xc2000 + 65721
    80  com.apple.iPhoto                        0x000d1705 0xc2000 + 63237
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9449190a kevent + 10
    1   libdispatch.dylib                       0x978e1e04 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x978e0853 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x9449102e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x968d3ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x968d56fe start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x9449102e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x968d3ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x968d56fe start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x9449102e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x968d3ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x968d56fe start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x9449102e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x968d3ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x968d56fe start_wqthread + 30
    Thread 6:
    0   libsystem_kernel.dylib                  0x9449083e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x968d5e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x968d5f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x905473c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9050d7d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9050d6a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01dcba42 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01dcab19 -[XTThread run:] + 412
    8   com.apple.Foundation                    0x90514e25 -[NSThread main] + 45
    9   com.apple.Foundation                    0x90514dd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x968d1ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x968d56de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x9449083e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x968d5e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x968d5f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x905473c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9050d7d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9050d6a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01dcba42 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01dcab19 -[XTThread run:] + 412
    8   com.apple.Foundation                    0x90514e25 -[NSThread main] + 45
    9   com.apple.Foundation                    0x90514dd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x968d1ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x968d56de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x9449083e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x968d5e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x968d5f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x905473c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9050d7d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9050d6a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01dcba42 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01dcab19 -[XTThread run:] + 412
    8   com.apple.Foundation                    0x90514e25 -[NSThread main] + 45
    9   com.apple.Foundation                    0x90514dd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x968d1ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x968d56de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x9449083e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x968d5e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x968d5f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x905473c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9050d7d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9050d6a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01dcba42 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01dcab19 -[XTThread run:] + 412
    8   com.apple.Foundation                    0x90514e25 -[NSThread main] + 45
    9   com.apple.Foundation                    0x90514dd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x968d1ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x968d56de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x9449083e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x968d5e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x968d5f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x905473c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9050d7d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9050d6a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01dcba42 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01dcab19 -[XTThread run:] + 412
    8   com.apple.Foundation                    0x90514e25 -[NSThread main] + 45
    9   com.apple.Foundation                    0x90514dd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x968d1ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x968d56de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x9449083e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x968d5e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x968d5f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x905473c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9050d7d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9050d6a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01dcba42 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01dcab19 -[XTThread run:] + 412
    8   com.apple.Foundation                    0x90514e25 -[NSThread main] + 45
    9   com.apple.Foundation                    0x90514dd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x968d1ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x968d56de thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x9449083e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x968d5e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x968d5f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x905473c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9050d7d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9050d6a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01dcba42 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01dcab19 -[XTThread run:] + 412
    8   com.apple.Foundation                    0x90514e25 -[NSThread main] + 45
    9   com.apple.Foundation                    0x90514dd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x968d1ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x968d56de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x9449102e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x968d3ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x968d56fe start_wqthread + 30
    Thread 14:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x9448ec76 semaphore_timedwait_trap + 10
    1   libdispatch.dylib                       0x978e3a55 _dispatch_semaphore_wait_slow + 274
    2   libdispatch.dylib                       0x978e3ab4 dispatch_semaphore_wait + 36
    3   com.apple.RemoteViewServices            0x980be725 __54-[NSRemoteSavePanel _runOrderingOperationWithContext:]_block_invoke_0345 + 79
    4   libdispatch.dylib                       0x978dffbd _dispatch_call_block_and_release + 15
    5   libdispatch.dylib                       0x978e101c _dispatch_worker_thread2 + 231
    6   libsystem_c.dylib                       0x968d3b24 _pthread_wqthread + 346
    7   libsystem_c.dylib                       0x968d56fe start_wqthread + 30
    Thread 15:
    0   libsystem_kernel.dylib                  0x9449083e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x968d5e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x968d5f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x905473c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9050d7d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9050d6a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.RedRock                       0x024072bf -[RKAsyncImageRenderer _backgroundRenderThread:] + 173
    7   com.apple.CoreFoundation                0x90cef1aa -[NSObject performSelector:] + 58
    8   com.apple.proxtcore                     0x01dd4ab2 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    9   com.apple.CoreFoundation                0x90ce6d11 -[NSObject performSelector:withObject:] + 65
    10  com.apple.proxtcore                     0x01dcce59 -[XTSubscription postMessage:] + 191
    11  com.apple.proxtcore                     0x01dcc71f -[XTDistributor distributeMessage:] + 681
    12  com.apple.proxtcore                     0x01dcbf42 -[XTThread handleMessage:] + 515
    13  com.apple.proxtcore                     0x01dcab2f -[XTThread run:] + 434
    14  com.apple.Foundation                    0x90514e25 -[NSThread main] + 45
    15  com.apple.Foundation                    0x90514dd5 __NSThread__main__ + 1582
    16  libsystem_c.dylib                       0x968d1ed9 _pthread_start + 335
    17  libsystem_c.dylib                       0x968d56de thread_start + 34
    Thread 16:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x94490b42 __select + 10
    1   com.apple.CoreFoundation                0x90cd5e15 __CFSocketManager + 1557
    2   libsystem_c.dylib                       0x968d1ed9 _pthread_start + 335
    3   libsystem_c.dylib                       0x968d56de thread_start + 34
    Thread 17:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x9449083e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x968d5e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9688642c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreVideo                     0x926810cd CVDisplayLink::runIOThread() + 945
    4   com.apple.CoreVideo                     0x92680d05 _ZL13startIOThreadPv + 160
    5   libsystem_c.dylib                       0x968d1ed9 _pthread_start + 335
    6   libsystem_c.dylib                       0x968d56de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000780  ebx: 0x12fcb5c0  ecx: 0x000001e0  edx: 0x00000004
      edi: 0x0000ffff  esi: 0xc23a9800  ebp: 0xc00b6648  esp: 0xc00b65a0
       ss: 0x00000023  efl: 0x00010246  eip: 0x9aa89aec   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0xc23a9800
    Logical CPU: 1
    Binary Images:
       0xc2000 -   0xdb7ff3  com.apple.iPhoto (9.4.3 - 9.4.3) <74A545E6-1EB2-315F-82FA-3344B599F490> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xf4a000 -  0x102afe7  org.python.python (2.6.7 - 2.6.7) <61DBA92A-C39A-3A52-86F2-59CF9D310CB4> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
    0x1075000 -  0x107dffb  com.apple.PhotoFoundation (1.0 - 20.12) <6DEFC232-B843-3848-908E-25AF929E9026> /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/PhotoFoundation
    0x10ed000 -  0x12caffb  com.apple.geode (1.5.3 - 280.22) <E5276CE4-D0A7-3884-A3BA-96ED4719C562> /Applications/iPhoto.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
    0x135a000 -  0x135fff7  com.apple.iLifePhotoStreamConfiguration (3.4 - 2.5) <6B675B59-ED97-35F8-89CB-79F387A05EA5> /Applications/iPhoto.app/Contents/Frameworks/iLifePhotoStreamConfiguration.fram ework/Versions/A/iLifePhotoStreamConfiguration
    0x1367000 -  0x1396ff7  com.apple.iLifeAssetManagement (2.7 - 45.19) <C30AF8E5-51DB-3912-B58C-41988B396209> /Applications/iPhoto.app/Contents/Frameworks/iLifeAssetManagement.framework/Ver sions/A/iLifeAssetManagement
    0x13ba000 -  0x13e1ff3  com.apple.iPhoto.Tessera (1.1 - 90.10) <E02B0D30-2F16-364A-8B23-E96EC302AD38> /Applications/iPhoto.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesse ra
    0x13f3000 -  0x1417ffb  com.apple.iPhoto.Tellus (1.3 - 90.10) <88853EBB-0C48-3A68-91B7-ED078C953CBD> /Applications/iPhoto.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
    0x142f000 -  0x143afff  com.apple.iphoto.AccountConfigurationPlugin (1.2 - 1.2) <39466D2B-2583-3407-96F2-69ADCF11ECB9> /Applications/iPhoto.app/Contents/Frameworks/AccountConfigurationPlugin.framewo rk/Versions/A/AccountConfigurationPlugin
    0x1446000 -  0x145bffb  com.apple.iLifeFaceRecognition (1.0 - 30.11) <5ADCA81F-5D7B-340F-9F44-B261ED19BBB2> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
    0x1467000 -  0x1493ffb  com.apple.DiscRecordingUI (6.0.4 - 6040.4.1) <20BF6CE7-0923-3302-BE45-4880FA8A958D> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x14ae000 -  0x14b0fff  com.apple.ExceptionHandling (1.5 - 10) <7C514CC4-7951-31CA-AEB3-D4AF49F44AE7> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x14b7000 -  0x14c2ff7  com.apple.UpgradeChecker (9.2 - 9.2) <39176044-B0CF-3C25-AF8D-A2BD8540A025> /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x14cc000 -  0x1865ff3  com.apple.iLifeSlideshow (3.1 - 1151.4) <BBC17D76-255B-3135-92A6-886AD68BEB3F> /Applications/iPhoto.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/ A/iLifeSlideshow
    0x1963000 -  0x1bf6ffb  com.apple.iLifePageLayout (1.3 - 210.38) <12AF048A-AAEE-39D3-B25C-383E9C5FB855> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/iLifePageLayout
    0x1cd2000 -  0x1d69ff7  com.apple.MobileMe (13 - 1.0.4) <38D8679A-1862-373C-BF4F-EB47200EDF08> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0x1dc7000 -  0x1e2fff3  com.apple.proxtcore (1.4.1 - 270.13) <E71FA444-D69B-3395-8F99-0DA367E6CF22> /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x1e71000 -  0x1f70ff3  com.apple.iLifeSQLAccess (1.7.1 - 70.30) <081DDD36-ADA7-3329-8265-BE6AD5AB4E5F> /Applications/iPhoto.app/Contents/Frameworks/iLifeSQLAccess.framework/Versions/ A/iLifeSQLAccess
    0x1fb7000 -  0x1fe2ffb  com.apple.ProUtils (1.1 - 220.17) <B2463A1A-E353-3B07-B937-A32F42240D28> /Applications/iPhoto.app/Contents/Frameworks/ProUtils.framework/Versions/A/ProU tils
    0x1ffc000 -  0x2067fff  com.apple.iLifeKit (1.3.1 - 180.8) <0BCA4B04-BC17-3F77-BD93-9FAC22E7199E> /Applications/iPhoto.app/Contents/Frameworks/iLifeKit.framework/Versions/A/iLif eKit
    0x20ac000 -  0x22d4ff7  com.apple.prokit (7.2.3 - 1823) <0FEDF2D7-F31A-36F2-91A9-C03877B0CB46> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x23e4000 -  0x2946fff  com.apple.RedRock (1.9.4 - 321.1) <7D29E84D-9336-3912-BA5C-EA8125553945> /Applications/iPhoto.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRo ck
    0x2b60000 -  0x2b76ffb  com.apple.AOSAccounts (1.0.2 - 1.0.71) <13763832-1B2B-32E8-95BC-C23A627E6DD4> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
    0x2b8b000 -  0x2bc5ff3  com.apple.Ubiquity (1.1 - 210.2) <F8426ABA-BB3F-3A48-BF4E-9A0F6C12634F> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x2be1000 -  0x2be1ff6  com.apple.SafariDAVNotifier (1.1.1 - 1) <DE95A56E-E2C8-3D96-B628-4DC6FA6CDD39> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
    0x2be8000 -  0x2c09ff7  com.apple.ChunkingLibrary (1.0 - 127.2) <8C1C8488-71E4-3C13-AF75-95CF06C040A3> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x2c15000 -  0x2c17fff  com.apple.LibraryRepair (1.0 - 1) <8D2DE423-2226-395A-9D90-3C43911F8613> /System/Library/PrivateFrameworks/LibraryRepair.framework/Versions/A/LibraryRep air
    0x2c1f000 -  0x2c79fff  com.apple.proapps.MIO (1.0.6 - 512) <9A28C6DB-D807-3601-ABF9-9AF6AD55C44C> /Applications/iPhoto.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0x2c91000 -  0x2c92fff +eOkaoCom.dylib (??? - ???) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
    0x2c96000 -  0x2cbbff2 +eOkaoPt.dylib (??? - ???) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
    0x2cc2000 -  0x2cf6fe7 +eOkaoDt.dylib (??? - ???) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
    0x2cfc000 -  0x2e63fff +eOkaoFr.dylib (??? - ???) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
    0x2e68000 -  0x2ec7ffb  com.apple.NyxAudioAnalysis (12.3 - 12.3) <969D7731-8AE0-32B9-817F-1AA727BBF9D8> /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis
    0x2ede000 -  0x2f18ff7  com.apple.CoreMediaIOServicesPrivate (52.0 - 3311) <D88F358F-5971-3D0F-996F-B384501DA11E> /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x2f33000 -  0x2f5aff7  com.apple.CoreMediaPrivate (20.0 - 20.0) <60E70C01-09F2-3096-B361-83FD4D27BF86> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x2f6d000 -  0x2f9dff7  com.apple.FWAVCPrivate (52.47 - 47) <8E724EF3-79D6-3B0D-8A57-6E13DA3EACB5> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/Versions/A/FWAVCPrivat e
    0x2fb4000 -  0x2ffeffb  com.apple.CoreMediaIOServices (151.0 - 3232) <AE0FAE4D-CF41-3345-9930-9B0CD92141F6> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x3023000 -  0x304aff7  com.apple.ExpressCheckout (1.0 - 1.0) <B6F86CF1-D6EA-312E-9758-CAFA1654CC6F> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/Frameworks/ExpressCheckout.framework/Versions/A/ExpressCheckout
    0x3065000 -  0x3093ffb  com.apple.iLifeImageAnalysis (3.0 - 3) <93C42285-7982-3A15-ABDA-EDF416DF6B22> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/Frameworks/iLifeImageAnalysis.framework/Versions/A/iLifeImageAnalysis
    0x4219000 -  0x421bfff  libCoreFSCache.dylib (??? - ???) <9E7CBE71-566C-36E9-A49F-C5FF6956D76F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0xb9fb000 -  0xb9fbff7 +cl_kernels (??? - ???) <60508372-F3AD-44AF-A051-B591415FBB2A> cl_kernels
    0xf13b000 -  0xf2c3ff9  GLEngine (??? - ???) <84549EEF-900F-397A-AABC-47DD261F40BE> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xf2fa000 -  0xf464ffb  libGLProgrammability.dylib (??? - ???) <169ED314-B937-3877-A7D7-4AFB96D8C561> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0xf493000 -  0xf728ff3  com.apple.ATIRadeonX2000GLDriver (7.32.12 - 7.3.2) <F51CB2F8-EB9D-3E2A-8675-32E1ED10FB9A> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0xf75f000 -  0xf76bffb  libGPUSupport.dylib (??? - ???) <A4467427-9E43-3F03-96E7-B09BBD5F0A6D> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0xf772000 -  0xf79fff0  GLRendererFloat (??? - ???) <B72FCE8D-7A5E-35F3-8A9F-0D139F8921AB> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0xf7a8000 -  0xf7b1ff6  libcldcpuengine.dylib (2.0.19 - compatibility 1.0.0) <95A88DC8-E5EE-363F-9275-214D5AB7A2EF> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0xf7b8000 -  0xf7bafff  com.apple.AddressBook.LocalSourceBundle (1.5 - 1091) <7A218EB1-111E-3E5C-8FC0-3300D232D7F6> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0xf7bf000 -  0xf7c2ffe  com.apple.DirectoryServicesSource (1.5 - 1091) <2DB6EF39-C50C-318D-9F7A-7A9EE37C1FE2> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0xf7e5000 -  0xf7e6ffd +cl_kernels (??? - ???) <BBE883C0-1E69-4891-B03E-424DA3F4BCB5> cl_kernels
    0xfd20000 -  0xfdc8ff7  unorm8_bgra.dylib (2.0.19 - compatibility 1.0.0) <99A967D2-5577-396B-BD11-56EAFF962AB2> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x10fbd000 - 0x10fc0fff  com.apple.iphoto.accountconfig.Facebook (1.2 - 1.2) <8E384045-21E8-305C-A83B-EA307AE34BF6> /Applications/iPhoto.app/Contents/PlugIns/Facebook.accountconfigplugin/Contents /MacOS/Facebook
    0x10fda000 - 0x10fdfffe  com.apple.iphoto.accountconfig.Email (9.2 - 9.2) <EE015CC9-7D9B-387A-AD57-36033C906188> /Applications/iPhoto.app/Contents/PlugIns/Email.accountconfigplugin/Contents/Ma cOS/Email
    0x1319b000 - 0x1319efff  com.apple.iphoto.accountconfig.Flickr (1.1 - 1) <C1432242-CA83-3C06-BEE8-B80E8FBF1BA4> /Applications/iPhoto.app/Contents/PlugIns/Flickr.accountconfigplugin/Contents/M acOS/Flickr
    0x131a4000 - 0x131a9ff8  com.apple.iphoto.accountconfig.MobileMe (1.1 - 1) <5122BF37-F638-3A37-B0E7-5C042DC3B8A2> /Applications/iPhoto.app/Contents/PlugIns/MobileMe.accountconfigplugin/Contents /MacOS/MobileMe
    0x131af000 - 0x131b0ff1  com.apple.textencoding.unicode (2.4 - 2.4) <4E55D4B9-4E67-3FC9-9407-3E99D1D50F15> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x13fe0000 - 0x13fe0ffd +cl_kernels (??? - ???) <85FB00C6-7AA5-43C1-B395-EC9312F1E088> cl_kernels
    0x8fec1000 - 0x8fef3aa7  dyld (195.6 - ???) <60FD3471-A1D7-342E-99A7-3EDECDAEC6EC> /usr/lib/dyld
    0x90005000 - 0x90018fff  com.apple.syncservices.syncservicesui (6.3 - 673.6) <91D49219-60A4-3F62-AD45-B3179F0E084A> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0x90034000 - 0x902e6ff7  com.apple.AddressBook.framework (6.1.3 - 1091) <B8CC707C-6368-3CDD-BE38-D2335B7CC2DE> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x902e7000 - 0x9031dff4  com.apple.LDAPFramework (3.2 - 120.2) <CCEB43CD-3861-33CC-8D9B-588F415A7028> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x904b4000 - 0x904b4fff  com.apple.quartzframework (1.5 - 1.5) <49B5CA00-083A-3D4A-9A68-4759A5CC35A6> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x904b5000 - 0x907bfff3  com.apple.Foundation (6.7.2 - 833.25) <4C52ED74-A1FD-3087-A2E1-035AB3CF9610> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x907c0000 - 0x907c0fff  com.apple.Carbon (153 - 153) <6CB9BB2F-2707-3B9D-8F3F-0BFEEDE96494> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x907c1000 - 0x907c2ff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <2F4B35B2-706C-3383-AA86-DABA409FAE45> /usr/lib/system/libunc.dylib
    0x907c3000 - 0x907e0ff7  com.apple.DotMacSyncManager (6.1 - 488.6) <7E973403-2850-3AED-8B6B-0CE12963883F> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x907e1000 - 0x90849fff  libc++.1.dylib (28.4.0 - compatibility 1.0.0) <B24814AB-CA77-3B9D-8FAB-58C9B4FD3A16> /usr/lib/libc++.1.dylib
    0x9084a000 - 0x90851ff9  libsystem_dnssd.dylib (??? - ???) <EBEAF723-84F8-3544-8FB2-31B7771B50D0> /usr/lib/system/libsystem_dnssd.dylib
    0x90852000 - 0x9085afff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9085b000 - 0x90987ff9  com.apple.CFNetwork (520.5.1 - 520.5.1) <F3C606BF-6DCF-33CD-981B-7253C9E3113A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90988000 - 0x909d8ffa  libTIFF.dylib (??? - ???) <9525B0A1-A4FA-38CA-AF05-AB4C5EB61D5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x909d9000 - 0x909ddff7  com.apple.OpenDirectory (10.7 - 146) <CFBA4CCF-65D4-3879-BC6A-8888C13E3345> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x909de000 - 0x909f8fff  com.apple.Kerberos (1.0 - 1) <D7920A1C-FEC4-3460-8DD0-D02491578CBB> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x909f9000 - 0x90a6dfff  com.apple.CoreSymbolication (2.2 - 73.2) <FA9305CA-FB9B-3646-8C41-FF8DF15AB2C1> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x90a6e000 - 0x90a7eff7  libCRFSuite.dylib (??? - ???) <94E040D2-2769-359A-A21B-DB85FCB73BDC> /usr/lib/libCRFSuite.dylib
    0x90a7f000 - 0x90b06fff  com.apple.print.framework.PrintCore (7.1 - 366.3) <EEC03CAB-7F79-3931-87FE-4DF0B767BF47> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90b07000 - 0x90bddaab  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <2E272DCA-38A0-3530-BBF4-47AE678D20D4> /usr/lib/libobjc.A.dylib
    0x90bde000 - 0x90becfff  com.apple.opengl (1.8.1 - 1.8.1) <766AFB12-A2CB-3A55-B662-FC9FFCAE0008> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90bed000 - 0x90c13ffb  com.apple.quartzfilters (1.7.0 - 1.7.0) <64AB163E-7E91-3028-8730-BE11BC1F5237> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x90c4c000 - 0x90e23fe7  com.apple.CoreFoundation (6.7.2 - 635.21) <4D1D2BAF-1332-32DF-A81B-7E79D4F0A6CB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90e24000 - 0x90e4dfff  com.apple.shortcut (2.1 - 2.1) <60000F49-6309-34B1-88A1-588DC566C8DF> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x90e4e000 - 0x90e9fff9  com.apple.QuickLookFramework (3.2 - 500.18) <CF3EF345-EA3E-3C2D-B56D-E4433326254A> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x90ea4000 - 0x90eb4fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90eb5000 - 0x90ef3fff  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <AF1174F9-4402-31EB-9C84-AB644E5865DF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x90ef4000 - 0x90ef5ff4  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <6DE3FDC7-0BE0-3791-B6F5-C15422A8AFB8> /usr/lib/system/libremovefile.dylib
    0x90ef6000 - 0x90fb6ffb  com.apple.ColorSync (4.7.4 - 4.7.4) <0A68AF35-15DF-3A0A-9B17-70CE2A106A6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x90fb7000 - 0x90ffbff3  com.apple.framework.CoreWLAN (2.1.3 - 213.1) <8A99ADB8-4A3E-3B8E-A0E4-A39398C288EC> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x90ffc000 - 0x91270ff3  com.apple.CoreImage (7.99.1 - 1.0.1) <C4B2DD2A-8E45-31CD-9B25-2AC1CA252B14> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x91298000 - 0x91299fff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x9129a000 - 0x912a4ffe  com.apple.NSServerNotificationCenter (4.1 - 4.1) <1451FE4F-D0A6-3477-986C-9E15FF98597B> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x912a5000 - 0x912a5ff0  com.apple.ApplicationServices (41 - 41) <C48EF6B2-ABF9-35BD-A07A-A38EC0008294> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x912a6000 - 0x912befff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <A8CE15CF-2539-318A-910C-8789D45FFD69> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x912bf000 - 0x912cafff  libkxld.dylib (??? - ???) <14E79D7A-B6C2-35C5-B56D-D343BEC2A106> /usr/lib/system/libkxld.dylib
    0x912cb000 - 0x912ccffd  libCVMSPluginSupport.dylib (??? - ???) <4B0476F9-950D-3EB7-BD83-F65AF0B05F0E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x912cd000 - 0x91300fef  libtidy.A.dylib (??? - ???) <E962D8EC-6B9D-35B7-B586-F07D92302ADD> /usr/lib/libtidy.A.dylib
    0x91301000 - 0x9133eff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <007A1877-E981-3007-A8FA-9B179F4ED6D1> /usr/lib/libcups.2.dylib
    0x9133f000 - 0x91391ffb  com.apple.CoreMediaIO (216.0 - 3199.8) <A079E576-64FD-3069-846E-F3B67AF28E15> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x9148a000 - 0x91490ffb  com.apple.print.framework.Print (7.4 - 247.3) <CB075EEE-FA1F-345C-A1B5-1AB266FC73A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x914c8000 - 0x916c9fff  com.apple.CalendarStore (5.0.3 - 1204.2) <53F15300-7C5E-3055-9553-20FBC5332138> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x916ca000 - 0x916d4ff0  com.apple.DirectoryService.Framework (10.7 - 146) <D192C504-E30A-3DB3-B422-EA324F8F653E> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9170c000 - 0x91721ff7  com.apple.ImageCapture (7.1.0 - 7.1.0) <E5FCA336-7E47-343E-A82D-CCCA5BCD5929> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91722000 - 0x91762ff7  libauto.dylib (??? - ???) <984C81BE-FA1C-3228-8F7E-2965E7E5EB85> /usr/lib/libauto.dylib
    0x91763000 - 0x917aefff  com.apple.iCalendar (5.0.1 - 120.1) <90BBD1C5-F434-3DC6-BE1B-D629CA4CBB8A> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x917af000 - 0x917affff  libOpenScriptingUtil.dylib (??? - ???) <E4C22B65-9493-31D5-9D46-19BD70975587> /usr/lib/libOpenScriptingUtil.dylib
    0x92668000 - 0x92675fff  com.apple.HelpData (2.1.2 - 72.2) <330C6B7F-2512-37B7-B2FF-24E1804E9426> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x92676000 - 0x9267eff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x9267f000 - 0x926a2fff  com.apple.CoreVideo (1.7 - 70.3) <4234C11C-E8E9-309A-9465-27D6D7458895> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x926a3000 - 0x926b1ff7  com.apple.AppleFSCompression (37 - 1.0) <DF263537-8286-3E1D-8AE8-DB325E8CA985> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x926b2000 - 0x926bffff  com.apple.KerberosHelper (3.0 - 1.0) <0E16B080-3931-3D3E-A786-419C24B44B02> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x926c0000 - 0x9277dff3  ColorSyncDeprecated.dylib (4.6.0 - compatibility 1.0.0) <726898F5-E718-3F27-B415-D6FDCDE09174> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x92797000 - 0x92824fe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92825000 - 0x92a41ff7  com.apple.imageKit (2.1.2 - 1.0) <71FC9A62-4E07-307C-8E6B-4DE7661DC0A3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x92a42000 - 0x92a4afff  com.apple.AOSNotification (1.4.0 - 504.1) <CC1D73C6-6F30-333C-B446-542F98396943> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x92a4b000 - 0x92aacffb  com.apple.audio.CoreAudio (4.0.3 - 4.0.3) <7A14BE52-6789-3CE3-9AE9-B733F4903EB1> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x92aad000 - 0x92bbcff7  com.apple.DesktopServices (1.6.5 - 1.6.5) <CEC069D7-37A3-3D25-A3BB-39DE99FDA46E> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bd1000 - 0x92fd3ff6  libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92fd4000 - 0x93014ff7  com.apple.NavigationServices (3.7 - 193) <16A8BCC8-7343-3A90-88B3-AAA334DF615F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x930b8000 - 0x9321bfff  com.apple.QTKit (7.7.1 - 2352) <04D59DD5-3EC6-3095-A1E7-DF57E3156D1F> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9321c000 - 0x932b8fff  com.apple.ink.framework (10.7.5 - 113) <05CAFB64-D3B8-3973-87EA-CB8BBE580F6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x932b9000 - 0x93316ffb  com.apple.htmlrendering (76 - 1.1.4) <409EF0CB-2997-369A-9326-BE12436B9EE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93317000 - 0x93334ff3  com.apple.openscripting (1.3.3 - ???) <0579A4CB-FD6F-3D7F-A17B-AC0F2CF11FC7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93335000 - 0x9333effb  com.apple.aps.framework (2.1 - 2.1) <E8FD997B-2AAF-3DED-95F5-3E67075723DC> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x9333f000 - 0x93391ff7  libFontRegistry.dylib (??? - ???) <C2B84661-A62D-3FFF-8D8C-BC697E9BDF4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x93392000 - 0x93546ff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <4AFF6FC3-6283-3934-8EFC-CA227CA11164> /usr/lib/libicucore.A.dylib
    0x93547000 - 0x93902ffb  com.apple.SceneKit (125.3 - 125.8) <89008B87-87E7-3972-A274-30311497EE32> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
    0x93c7a000 - 0x93c8bfff  libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
    0x93c8f000 - 0x93c8ffff  com.apple.Cocoa (6.6 - ???) <5FAFE73E-6AF5-3D09-9191-0BDC8C6875CB> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93c90000 - 0x93cb8ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <AB530FB2-8BD1-3328-95E8-CF449F0429CA> /usr/lib/libxslt.1.dylib
    0x93cb9000 - 0x93eb1ff7  com.apple.CoreData (104.1 - 358.14) <C1730963-F75D-3338-B65F-D50235538B28> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93eb2000 - 0x93eeffef  libGLImage.dylib (??? - ???) <FC13D46F-69C4-3BA1-A5E8-52C2EC8B7D58> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x93f14000 - 0x93f93ff7  com.apple.iLifeMediaBrowser (2.6.4 - 502.4.5) <5C10CC72-586E-3497-9873-A0ACFB6156C3> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x93f94000 - 0x94388feb  com.apple.VideoToolbox (1.0 - 705.94) <8FCC2C08-2D4C-3A96-B57A-CAA56911120F> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x94389000 - 0x9442dfff  com.apple.QD (3.40.1 - ???) <B5650C5E-AB41-3758-84A1-5A97EDCD8EFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9442e000 - 0x94477ff7  libGLU.dylib (??? - ???) <9AF7AD51-16E3-3674-B60E-30EE499D7B46> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94478000 - 0x94496ff7  libsystem_kernel.dylib (1699.32.7 - compatibility 1.0.0) <79179F83-457A-3539-A76B-E960D2108109> /usr/lib/system/libsystem_kernel.dylib
    0x94497000 - 0x94766ffb  com.apple.security (7.0 - 55148.6) <8DF67BDD-C98F-3B7E-AC63-D468407FA82D> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x94767000 - 0x947b3fff  com.apple.ExchangeWebServices (2.2 - 127) <BBDE2E97-8DD2-3EBC-9D59-ED422ECCBB8F> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x947b6000 - 0x947c4ff7  libxar-nossl.dylib (??? - ???) <5BF4DA8E-C319-354A-967E-A0C725DC8BA3> /usr/lib/libxar-nossl.dylib
    0x947c5000 - 0x947caff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <943213F3-CC9B-328E-8A6F-16D85C4274C7> /usr/lib/system/libmacho.dylib
    0x947cb000 - 0x947deff8  com.apple.MultitouchSupport.framework (231.4 - 231.4) <86C11177-EF7C-33DC-AFE3-703652463562> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x947df000 - 0x94809ff0  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <5CAA1478-97E0-31EA-8F50-BF09D665DD84> /usr/lib/libpcre.0.dylib
    0x9480a000 - 0x9529fff6  com.apple.AppKit (6.7.5 - 1138.51) <B9D3DCA0-9765-354E-9730-75A45A97DDFD> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x952a0000 - 0x952abff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <D6E17FD4-ECA0-3EEE-BFC5-F6A42A21AB5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x952ac000 - 0x952acfff  com.apple.vecLib (3.7 - vecLib 3.7) <8CCF99BF-A4B7-3C01-9219-B83D2AE5F82A> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x952b2000 - 0x952b9ffd  com.apple.NetFS (4.0 - 4.0) <AE731CFE-1B2E-3E46-8759-843F5FB8C24F> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x952ba000 - 0x952c6ff4  com.apple.CrashReporterSupport (10.7.4 - 353) <96C5799C-5273-3B56-9273-CE38900EFE65> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x952c7000 - 0x952c7fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <7EFAD88C-AFBC-3D48-BE14-60B8EACC68D7> /usr/lib/system/libdnsinfo.dylib
    0x952c8000 - 0x952d0ff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <BB0C7B49-600F-3551-A460-B7E36CA4C4A4> /usr/lib/system/libcopyfile.dylib
    0x952ff000 - 0x957dbff6  libBLAS.dylib (??? - ???) <134ABFC6-F29E-3DC5-8E57-E13CB6EF7B41> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x957dc000 - 0x957ddffd  libwebsharing.dylib (??? - ???) <3660334A-2C29-3A39-9DB7-720090A0BB32> /usr/lib/libwebsharing.dylib
    0x957de000 - 0x957e7ff3  com.apple.CommonAuth (2.2 - 2.0) <6F207851-084B-3354-A1B2-63065BC584F6> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x957e8000 - 0x958cafff  com.apple.backup.framework (1.3.5 - 1.3.5) <1FAE91F2-BCEF-387D-B5C4-412C464DA1BE> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x95909000 - 0x9591dfff  com.apple.CFOpenDirectory (10.7 - 146) <E9697845-A071-3A13-B89E-57D877F2D237> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x9591e000 - 0x95a74fff  com.apple.audio.toolbox.AudioToolbox (1.7.3 - 1.7.3) <F09C7075-2C4E-3A4F-A372-95D700125513> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x95a75000 - 0x95a78ff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x95ad3000 - 0x95b02ff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x95b03000 - 0x95b25ff8  com.apple.PerformanceAnalysis (1.11 - 11) <453463FF-7C42-3526-8C96-A9971EE07154> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x95c28000 - 0x95c32ff2  com.apple.audio.SoundManager (3.9.4.1 - 3.9.4.1) <2A089CE8-9760-3F0F-B77D-29A78940EA17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x95c33000 - 0x95c97fff  com.apple.framework.IOKit (2.0 - ???) <94827954-5906-36C4-819B-24CDAFD85C72> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x95cda000 - 0x95cdbfff  com.apple.TrustEvaluationAgent (2.0 - 1) <4BB39578-2F5E-3A50-AD59-9C0AB99472EB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x95cdc000 - 0x95ce2fff  libGFXShared.dylib (??? - ???) <9C9834EB-B794-38C8-9B90-31D8CB234F86> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x95ce3000 - 0x95ce5ff9  com.apple.securityhi (4.0 - 1) <C4BB2354-C7D2-3487-B71E-382DDC5B38E4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x95cf9000 - 0x95cffffd  com.apple.CommerceCore (1.0 - 17.1) <32AB16CE-7BBB-3124-8C42-2EE3E1D336F0> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x95d1a000 - 0x95db6ffe  com.apple.PDFKit (2.7.8 - 2.7.8) <2DFB71DA-158B-375B-AA75-532AF883EAAA> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x95db7000 - 0x95dc7fff  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <D6F728DA-990A-32A3-86FA-4A3F4D88E309> /usr/lib/libsasl2.2.dylib
    0x95dc8000 - 0x95ec7ffb  com.apple.DiskImagesFramework (10.7.4 - 331.7) <31A74A7E-E2AE-313D-A7C4-6DFCF0F22C9A> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x95ec8000 - 0x95efafff  com.apple.CalDAV (1.0.1 - 93) <7E225C7D-E0B6-3742-95DD-12271154E5D7> /System/Library/Pri

    First try the following:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
         User/Home/Library/ Preferences folder.
    2 - delete the contents the following folder:
    User/Library/Containers/com.apple.iPhoto
    3 - reboot, launch iPhoto and try again.
    NOTE: For Mavericks, 10.9,  go to your Home folder and use the View ➙ Show View Options menu to bring the this window:
    where you can check the Show Library Folder checkbox.

  • How do i import my library from an external hard drive. Exported it as had to wipe pc and reinstal windows but when i try to import nothing happens

    How do i import my library from an external hard drive. Had to export it as had to reinstal windows due to a conflict between windows and i-tunes. Wen i try to import nothing happens despite selecting the file. Can you import from an i-phone to i-tunes?

    What do you mean bye exported the library? 
    There is nothing to export or import.
    The correct process to backup the iTunes library would be to copy the ENTIRE iTunes folder from the computer to the external drive.

Maybe you are looking for