Previous page

Next page

Locate page in Contents

Print this page

Windows

The following steps describe how to set up a project in Microsoft Visual Studio:

  1. Create a project of your choice in a usual way and open the project Property Pages windows.
  2. In the C/C++ -> General -> Additional Include Directories section, add the path to the directory where you've installed the Parallels Virtualization SDK.
  3. In the C/C++ -> Precompiled Headers -> Create/Use Precompiled Header section, select "Not Using Precompiled Headers" option.
  4. Add the following files from the Helpers\SdkWrap subdirectory (located in the Parallels Virtualization SDK directory) to the project:

    SdkWrap.h

    SdkWrap.cpp

    These are the helper files that provide a set of methods for loading and unloading dynamic libraries. You can use the included source code file to customize this functionality if you wish.

  5. Add the following include directives to your program:

    #include "Include\Parallels.h"

    #include "Helpers\SdkWrap\SdkWrap.h"

    The standard libraries used by the samples provided in this guide are:

    #include <stdio.h>

    #include <stdlib.h>

Please send us your feedback on this help page