2009-01-11 04:09 AM - last edited on 2023-08-04 02:46 PM by Doreena Deng
2009-01-23 11:09 AM
2009-02-05 03:34 AM
'STR#' 32000 "Add-on Name and Description" { /* [ 1] */ "API DevKit Sample" /* [ 2] */ "Default project in ArchiCAD API Development Kit." } 'STR#' 32500 "Menu strings" { /* [ 1] */ "Sample menu" } 'STR#' 32520 "Status bar strings" { /* [ 1] */ "Sample" }"DemoFix.grc"
@#define CHI__APP @#define INTERNAL_NAME "Demo" @#define ORIGINAL_NAME "Demo.apx" @ @#define COMPANY_STR "Some Company" @#define COPYRIGHT_STR "Copyright (c) Some Company 2008" @#define FILEDESC_STR "API DevKit Sample" @ @#include "GSLocalization.h" @ /* Version resource - uses strings defined in the localizable resource file */ 'VERS' { COMPANY_STR COPYRIGHT_STR FILEDESC_STR 1.00 1.00 "ArchiCAD" 12.0 } /* TODO: replace the first ID with your developer ID and the second ID with */ /* your local ID */ @ #include "MDIDs_APICD.h" 'MDID' 32500 "Add-On Identifier" { 1 1 }"Demo.rc2"
#include <Windows.h> #if !defined (WINDOWS) #define WINDOWS #endif #include "Demo.grc.rc2" #include "DemoFix.grc.rc2" 1 ICON LOADONCALL MOVEABLE IMPURE ACAP.icoEnvironment:VC++2008
2009-02-05 08:13 AM