License.h
// Copyright 2010 ESRI // // All rights reserved under the copyright laws of the United States // and applicable international laws, treaties, and conventions. // // You may freely redistribute and use this sample code, with or // without modification, provided you include the original copyright // notice and use restrictions. // // See the use restrictions. // #ifndef __DYNAMICDISPLAY__LICENSE_H__ #define __DYNAMICDISPLAY__LICENSE_H__ #include <iostream> #include <ArcSDK.h> // Initialize the application and check out a license if needed. bool InitializeApp(esriLicenseExtensionCode license = (esriLicenseExtensionCode)0); // Attempt to initialize bool InitAttemptWithoutExtension(esriLicenseProductCode product); bool InitAttemptWithExtension(esriLicenseProductCode product, esriLicenseExtensionCode extension); // Shutdown the application and check in the license if needed. HRESULT ShutdownApp(esriLicenseExtensionCode license = (esriLicenseExtensionCode)0); #endif /* __DYNAMICDISPLAY__LICENSE_H__ */