code
stringlengths
2
1.05M
repo_name
stringlengths
4
116
path
stringlengths
3
991
language
stringclasses
30 values
license
stringclasses
15 values
size
int32
3
1.05M
<?php declare(strict_types = 1); /** * /src/DTO/RestDtoInterface.php * * @author TLe, Tarmo Leppänen <tarmo.leppanen@pinja.com> */ namespace App\DTO; use App\Entity\Interfaces\EntityInterface; use Throwable; /** * Interface RestDtoInterface * * @package App\DTO * @author TLe, Tarmo Leppänen <tarmo.leppanen@pinja.com> */ interface RestDtoInterface { public function setId(string $id): self; /** * Getter method for visited setters. This is needed for dto patching. * * @return array<int, string> */ public function getVisited(): array; /** * Setter for visited data. This is needed for dto patching. */ public function setVisited(string $property): self; /** * Method to load DTO data from specified entity. */ public function load(EntityInterface $entity): self; /** * Method to update specified entity with DTO data. */ public function update(EntityInterface $entity): EntityInterface; /** * Method to patch current dto with another one. * * @throws Throwable */ public function patch(self $dto): self; }
tarlepp/symfony-flex-backend
src/DTO/RestDtoInterface.php
PHP
mit
1,141
package net.lightstone.net.codec; import java.io.IOException; import net.lightstone.msg.Message; import org.jboss.netty.buffer.ChannelBuffer; public abstract class MessageCodec<T extends Message> { private final Class<T> clazz; private final int opcode; public MessageCodec(Class<T> clazz, int opcode) { this.clazz = clazz; this.opcode = opcode; } public final Class<T> getType() { return clazz; } public final int getOpcode() { return opcode; } public abstract ChannelBuffer encode(T message) throws IOException; public abstract T decode(ChannelBuffer buffer) throws IOException; }
grahamedgecombe/lightstone
src/net/lightstone/net/codec/MessageCodec.java
Java
mit
613
/* IE 8 FIXES MAIN BLUE: #99CCFF LINK BLUE: #0066FF NEW BLUE: #3366FF ORANGE: #FFCC66 GREEN: #66CC00 TBL GREEN: #A7C942 RED: #CC0000 BORDER: #CCC GREY: #999 DARK GRY: #555 */ #rent_go{vertical-align:-3px;} div.land-do h2{ filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=45, color:'#F0F0F0'); } h3.origin-start{ bottom:-20px; right:-160px; filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); } .results{width:1100px; margin:0px auto;} .result_loan{float:left;}
charlle/charlle
assets/styles/Fix/ie.css
CSS
mit
531
/* == malihu jquery custom scrollbar plugin == Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller */ /* CONTENTS: 1. BASIC STYLE - Plugin's basic/essential CSS properties (normally, should not be edited). 2. VERTICAL SCROLLBAR - Positioning and dimensions of vertical scrollbar. 3. HORIZONTAL SCROLLBAR - Positioning and dimensions of horizontal scrollbar. 4. VERTICAL AND HORIZONTAL SCROLLBARS - Positioning and dimensions of 2-axis scrollbars. 5. TRANSITIONS - CSS3 transitions for hover events, auto-expanded and auto-hidden scrollbars. 6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS 6.1 THEMES - Scrollbar colors, opacity, dimensions, backgrounds etc. via ready-to-use themes. */ /* ------------------------------------------------------------------------------------------------------------------------ 1. BASIC STYLE ------------------------------------------------------------------------------------------------------------------------ */ .mCustomScrollbar{ -ms-touch-action: none; touch-action: none; /* MSPointer events - direct all pointer events to js */ } .mCustomScrollbar.mCS_no_scrollbar, .mCustomScrollbar.mCS_touch_action{ -ms-touch-action: auto; touch-action: auto; } .mCustomScrollBox{ /* contains plugin's markup */ position: relative; overflow: hidden; height: 100%; max-width: 100%; outline: none; direction: ltr; } .mCSB_container{ /* contains the original content */ overflow: hidden; width: auto; height: auto; } /* ------------------------------------------------------------------------------------------------------------------------ 2. VERTICAL SCROLLBAR y-axis ------------------------------------------------------------------------------------------------------------------------ */ .mCSB_inside > .mCSB_container{ margin-right: 30px; } .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{ margin-right: 0; } /* non-visible scrollbar */ .mCS-dir-rtl > .mCSB_inside > .mCSB_container{ /* RTL direction/left-side scrollbar */ margin-right: 0; margin-left: 30px; } .mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{ margin-left: 0; } /* RTL direction/left-side scrollbar */ .mCSB_scrollTools{ /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */ position: absolute; width: 16px; height: auto; left: auto; top: 0; right: 0; bottom: 0; } .mCSB_outside + .mCSB_scrollTools{ right: -26px; } /* scrollbar position: outside */ .mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools, .mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools{ /* RTL direction/left-side scrollbar */ right: auto; left: 0; } .mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools{ left: -26px; } /* RTL direction/left-side scrollbar (scrollbar position: outside) */ .mCSB_scrollTools .mCSB_draggerContainer{ /* contains the draggable element and dragger rail markup */ position: absolute; top: 0; left: 0; bottom: 0; right: 0; height: auto; } .mCSB_scrollTools a + .mCSB_draggerContainer{ margin: 20px 0; } .mCSB_scrollTools .mCSB_draggerRail{ width: 2px; height: 100%; margin: 0 auto; -webkit-border-radius: 16px; -moz-border-radius: 16px; border-radius: 16px; } .mCSB_scrollTools .mCSB_dragger{ /* the draggable element */ cursor: pointer; width: 100%; height: 30px; /* minimum dragger height */ z-index: 1; } .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ /* the dragger element */ position: relative; width: 4px; height: 100%; margin: 0 auto; -webkit-border-radius: 16px; -moz-border-radius: 16px; border-radius: 16px; text-align: center; } .mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, .mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{ width: 12px; /* auto-expanded scrollbar */ } .mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{ width: 8px; /* auto-expanded scrollbar */ } .mCSB_scrollTools .mCSB_buttonUp, .mCSB_scrollTools .mCSB_buttonDown{ display: block; position: absolute; height: 20px; width: 100%; overflow: hidden; margin: 0 auto; cursor: pointer; } .mCSB_scrollTools .mCSB_buttonDown{ bottom: 0; } /* ------------------------------------------------------------------------------------------------------------------------ 3. HORIZONTAL SCROLLBAR x-axis ------------------------------------------------------------------------------------------------------------------------ */ .mCSB_horizontal.mCSB_inside > .mCSB_container{ margin-right: 0; margin-bottom: 30px; } .mCSB_horizontal.mCSB_outside > .mCSB_container{ min-height: 100%; } .mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden{ margin-bottom: 0; } /* non-visible scrollbar */ .mCSB_scrollTools.mCSB_scrollTools_horizontal{ width: auto; height: 16px; top: auto; right: 0; bottom: 0; left: 0; } .mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal, .mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal{ bottom: -26px; } /* scrollbar position: outside */ .mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer{ margin: 0 20px; } .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail{ width: 100%; height: 2px; margin: 7px 0; } .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 30px; /* minimum dragger width */ height: 100%; left: 0; } .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ width: 100%; height: 4px; margin: 6px auto; } .mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, .mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{ height: 12px; /* auto-expanded scrollbar */ margin: 2px auto; } .mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{ height: 8px; /* auto-expanded scrollbar */ margin: 4px 0; } .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft, .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight{ display: block; position: absolute; width: 20px; height: 100%; overflow: hidden; margin: 0 auto; cursor: pointer; } .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft{ left: 0; } .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight{ right: 0; } /* ------------------------------------------------------------------------------------------------------------------------ 4. VERTICAL AND HORIZONTAL SCROLLBARS yx-axis ------------------------------------------------------------------------------------------------------------------------ */ .mCSB_container_wrapper{ position: absolute; height: auto; width: auto; overflow: hidden; top: 0; left: 0; right: 0; bottom: 0; margin-right: 30px; margin-bottom: 30px; } .mCSB_container_wrapper > .mCSB_container{ padding-right: 30px; padding-bottom: 30px; } .mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical{ bottom: 20px; } .mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ right: 20px; } /* non-visible horizontal scrollbar */ .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical{ bottom: 0; } /* non-visible vertical scrollbar/RTL direction/left-side scrollbar */ .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal, .mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ right: 0; } /* RTL direction/left-side scrollbar */ .mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ left: 20px; } /* non-visible scrollbar/RTL direction/left-side scrollbar */ .mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal{ left: 0; } .mCS-dir-rtl > .mCSB_inside > .mCSB_container_wrapper{ /* RTL direction/left-side scrollbar */ margin-right: 0; margin-left: 30px; } .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container{ padding-right: 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container{ padding-bottom: 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden{ margin-right: 0; /* non-visible scrollbar */ margin-left: 0; } /* non-visible horizontal scrollbar */ .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden{ margin-bottom: 0; } /* ------------------------------------------------------------------------------------------------------------------------ 5. TRANSITIONS ------------------------------------------------------------------------------------------------------------------------ */ .mCSB_scrollTools, .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCSB_scrollTools .mCSB_buttonUp, .mCSB_scrollTools .mCSB_buttonDown, .mCSB_scrollTools .mCSB_buttonLeft, .mCSB_scrollTools .mCSB_buttonRight{ -webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out; -moz-transition: opacity .2s ease-in-out, background-color .2s ease-in-out; -o-transition: opacity .2s ease-in-out, background-color .2s ease-in-out; transition: opacity .2s ease-in-out, background-color .2s ease-in-out; } .mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, /* auto-expanded scrollbar */ .mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail, .mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, .mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail{ -webkit-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out; -moz-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out; -o-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out; transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out; } /* ------------------------------------------------------------------------------------------------------------------------ 6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS ------------------------------------------------------------------------------------------------------------------------ */ /* ---------------------------------------- 6.1 THEMES ---------------------------------------- */ /* default theme ("light") */ .mCSB_scrollTools{ opacity: 0.75; filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)"; } .mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools, .mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools{ opacity: 0; filter: "alpha(opacity=0)"; -ms-filter: "alpha(opacity=0)"; } .mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag, .mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag, .mCustomScrollBox:hover > .mCSB_scrollTools, .mCustomScrollBox:hover ~ .mCSB_scrollTools, .mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools, .mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools{ opacity: 1; filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)"; } .mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(229, 229, 229, 0.5); filter: "alpha(opacity=40)"; -ms-filter: "alpha(opacity=40)"; } .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(230, 230, 230, 1); filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)"; } .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(178, 178, 178, 1); filter: "alpha(opacity=85)"; -ms-filter: "alpha(opacity=85)"; } .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(178, 178, 178, 1); filter: "alpha(opacity=90)"; -ms-filter: "alpha(opacity=90)"; } .mCSB_scrollTools .mCSB_buttonUp, .mCSB_scrollTools .mCSB_buttonDown, .mCSB_scrollTools .mCSB_buttonLeft, .mCSB_scrollTools .mCSB_buttonRight{ background-image: url(mCSB_buttons.png); /* css sprites */ background-repeat: no-repeat; opacity: 0.4; filter: "alpha(opacity=40)"; -ms-filter: "alpha(opacity=40)"; } .mCSB_scrollTools .mCSB_buttonUp{ background-position: 0 0; /* sprites locations light: 0 0, -16px 0, -32px 0, -48px 0, 0 -72px, -16px -72px, -32px -72px dark: -80px 0, -96px 0, -112px 0, -128px 0, -80px -72px, -96px -72px, -112px -72px */ } .mCSB_scrollTools .mCSB_buttonDown{ background-position: 0 -20px; /* sprites locations light: 0 -20px, -16px -20px, -32px -20px, -48px -20px, 0 -92px, -16px -92px, -32px -92px dark: -80px -20px, -96px -20px, -112px -20px, -128px -20px, -80px -92px, -96px -92px, -112 -92px */ } .mCSB_scrollTools .mCSB_buttonLeft{ background-position: 0 -40px; /* sprites locations light: 0 -40px, -20px -40px, -40px -40px, -60px -40px, 0 -112px, -20px -112px, -40px -112px dark: -80px -40px, -100px -40px, -120px -40px, -140px -40px, -80px -112px, -100px -112px, -120px -112px */ } .mCSB_scrollTools .mCSB_buttonRight{ background-position: 0 -56px; /* sprites locations light: 0 -56px, -20px -56px, -40px -56px, -60px -56px, 0 -128px, -20px -128px, -40px -128px dark: -80px -56px, -100px -56px, -120px -56px, -140px -56px, -80px -128px, -100px -128px, -120px -128px */ } .mCSB_scrollTools .mCSB_buttonUp:hover, .mCSB_scrollTools .mCSB_buttonDown:hover, .mCSB_scrollTools .mCSB_buttonLeft:hover, .mCSB_scrollTools .mCSB_buttonRight:hover{ opacity: 0.75; filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)"; } .mCSB_scrollTools .mCSB_buttonUp:active, .mCSB_scrollTools .mCSB_buttonDown:active, .mCSB_scrollTools .mCSB_buttonLeft:active, .mCSB_scrollTools .mCSB_buttonRight:active{ opacity: 0.9; filter: "alpha(opacity=90)"; -ms-filter: "alpha(opacity=90)"; } /* theme: "dark" */ .mCS-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(229, 229, 229, 0.5); } .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); } .mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: rgba(0,0,0,0.85); } .mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: rgba(0,0,0,0.9); } .mCS-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -80px 0; } .mCS-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -80px -20px; } .mCS-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -80px -40px; } .mCS-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -80px -56px; } /* ---------------------------------------- */ /* theme: "light-2", "dark-2" */ .mCS-light-2.mCSB_scrollTools .mCSB_draggerRail, .mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail{ width: 4px; background-color: #fff; background-color: rgba(229, 229, 229, 0.5); -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; } .mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 4px; background-color: #fff; background-color: rgba(255,255,255,0.75); -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; } .mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ width: 100%; height: 4px; margin: 6px auto; } .mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.85); } .mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.9); } .mCS-light-2.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px 0; } .mCS-light-2.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -20px; } .mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -40px; } .mCS-light-2.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -56px; } /* theme: "dark-2" */ .mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.1); -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; } .mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; } .mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); } .mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); } .mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px 0; } .mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -20px; } .mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -40px; } .mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight{ background-position: -120px -56px; } /* ---------------------------------------- */ /* theme: "light-thick", "dark-thick" */ .mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail, .mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail{ width: 4px; background-color: #fff; background-color: rgba(255,255,255,0.1); -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; } .mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 6px; background-color: #fff; background-color: rgba(255,255,255,0.75); -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; } .mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail{ width: 100%; height: 4px; margin: 6px 0; } .mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ width: 100%; height: 6px; margin: 5px auto; } .mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.85); } .mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.9); } .mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp{ background-position: -16px 0; } .mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown{ background-position: -16px -20px; } .mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -20px -40px; } .mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight{ background-position: -20px -56px; } /* theme: "dark-thick" */ .mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.1); -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; } .mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; } .mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); } .mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); } .mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp{ background-position: -96px 0; } .mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown{ background-position: -96px -20px; } .mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -100px -40px; } .mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight{ background-position: -100px -56px; } /* ---------------------------------------- */ /* theme: "light-thin", "dark-thin" */ .mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail{ background-color: #fff; background-color: rgba(255,255,255,0.1); } .mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 2px; } .mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail{ width: 100%; } .mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ width: 100%; height: 2px; margin: 7px auto; } /* theme "dark-thin" */ .mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.15); } .mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); } .mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); } .mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); } .mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp{ background-position: -80px 0; } .mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown{ background-position: -80px -20px; } .mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -80px -40px; } .mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight{ background-position: -80px -56px; } /* ---------------------------------------- */ /* theme "rounded", "rounded-dark", "rounded-dots", "rounded-dots-dark" */ .mCS-rounded.mCSB_scrollTools .mCSB_draggerRail{ background-color: #fff; background-color: rgba(255,255,255,0.15); } .mCS-rounded.mCSB_scrollTools .mCSB_dragger, .mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger, .mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger, .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger{ height: 14px; } .mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 14px; margin: 0 1px; } .mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger, .mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger, .mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger, .mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 14px; } .mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ height: 14px; margin: 1px 0; } .mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, .mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, .mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{ width: 16px; /* auto-expanded scrollbar */ height: 16px; margin: -1px 0; } .mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, .mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{ width: 4px; /* auto-expanded scrollbar */ } .mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, .mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, .mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{ height: 16px; /* auto-expanded scrollbar */ width: 16px; margin: 0 -1px; } .mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, .mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{ height: 4px; /* auto-expanded scrollbar */ margin: 6px 0; } .mCS-rounded.mCSB_scrollTools .mCSB_buttonUp{ background-position: 0 -72px; } .mCS-rounded.mCSB_scrollTools .mCSB_buttonDown{ background-position: 0 -92px; } .mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft{ background-position: 0 -112px; } .mCS-rounded.mCSB_scrollTools .mCSB_buttonRight{ background-position: 0 -128px; } /* theme "rounded-dark", "rounded-dots-dark" */ .mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); } .mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.15); } .mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); } .mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); } .mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -80px -72px; } .mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -80px -92px; } .mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -80px -112px; } .mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -80px -128px; } /* theme "rounded-dots", "rounded-dots-dark" */ .mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail, .mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail{ width: 4px; } .mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail, .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{ background-color: transparent; background-position: center; } .mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail, .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail{ background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg=="); background-repeat: repeat-y; opacity: 0.3; filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; } .mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{ height: 4px; margin: 6px 0; background-repeat: repeat-x; } .mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp{ background-position: -16px -72px; } .mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown{ background-position: -16px -92px; } .mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -20px -112px; } .mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight{ background-position: -20px -128px; } /* theme "rounded-dots-dark" */ .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail{ background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII="); } .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -96px -72px; } .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -96px -92px; } .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -100px -112px; } .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -100px -128px; } /* ---------------------------------------- */ /* theme "3d", "3d-dark", "3d-thick", "3d-thick-dark" */ .mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-repeat: repeat-y; background-image: -moz-linear-gradient(left, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%); background-image: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0.5)), color-stop(100%,rgba(255,255,255,0))); background-image: -webkit-linear-gradient(left, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%); background-image: -o-linear-gradient(left, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%); background-image: -ms-linear-gradient(left, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%); background-image: linear-gradient(to right, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%); } .mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ background-repeat: repeat-x; background-image: -moz-linear-gradient(top, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.5)), color-stop(100%,rgba(255,255,255,0))); background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%); background-image: -o-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%); background-image: -ms-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%); background-image: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%); } /* theme "3d", "3d-dark" */ .mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger, .mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger{ height: 70px; } .mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger, .mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 70px; } .mCS-3d.mCSB_scrollTools, .mCS-3d-dark.mCSB_scrollTools{ opacity: 1; filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; } .mCS-3d.mCSB_scrollTools .mCSB_draggerRail, .mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ -webkit-border-radius: 16px; -moz-border-radius: 16px; border-radius: 16px; } .mCS-3d.mCSB_scrollTools .mCSB_draggerRail, .mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail{ width: 8px; background-color: #000; background-color: rgba(0,0,0,0.2); box-shadow: inset 1px 0 1px rgba(0,0,0,0.5), inset -1px 0 1px rgba(255,255,255,0.2); } .mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, .mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, .mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #555; } .mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 8px; } .mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{ width: 100%; height: 8px; margin: 4px 0; box-shadow: inset 0 1px 1px rgba(0,0,0,0.5), inset 0 -1px 1px rgba(255,255,255,0.2); } .mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ width: 100%; height: 8px; margin: 4px auto; } .mCS-3d.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; } .mCS-3d.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; } .mCS-3d.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; } .mCS-3d.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -128px; } /* theme "3d-dark" */ .mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.1); box-shadow: inset 1px 0 1px rgba(0,0,0,0.1); } .mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{ box-shadow: inset 0 1px 1px rgba(0,0,0,0.1); } .mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; } .mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; } .mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; } .mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -120px -128px; } /* ---------------------------------------- */ /* theme: "3d-thick", "3d-thick-dark" */ .mCS-3d-thick.mCSB_scrollTools, .mCS-3d-thick-dark.mCSB_scrollTools{ opacity: 1; filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; } .mCS-3d-thick.mCSB_scrollTools, .mCS-3d-thick-dark.mCSB_scrollTools, .mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer, .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer{ -webkit-border-radius: 7px; -moz-border-radius: 7px; border-radius: 7px; } .mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; } .mCSB_inside + .mCS-3d-thick.mCSB_scrollTools_vertical, .mCSB_inside + .mCS-3d-thick-dark.mCSB_scrollTools_vertical{ right: 1px; } .mCS-3d-thick.mCSB_scrollTools_vertical, .mCS-3d-thick-dark.mCSB_scrollTools_vertical{ box-shadow: inset 1px 0 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.5); } .mCS-3d-thick.mCSB_scrollTools_horizontal, .mCS-3d-thick-dark.mCSB_scrollTools_horizontal{ bottom: 1px; box-shadow: inset 0 1px 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.5); } .mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ box-shadow: inset 1px 0 0 rgba(255,255,255,0.4); width: 12px; margin: 2px; position: absolute; height: auto; top: 0; bottom: 0; left: 0; right: 0; } .mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ box-shadow: inset 0 1px 0 rgba(255,255,255,0.4); } .mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, .mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #555; } .mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ height: 12px; width: auto; } .mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer{ background-color: #000; background-color: rgba(0,0,0,0.05); box-shadow: inset 1px 1px 16px rgba(0,0,0,0.1); } .mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail{ background-color: transparent; } .mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; } .mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; } .mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; } .mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -128px; } /* theme: "3d-thick-dark" */ .mCS-3d-thick-dark.mCSB_scrollTools{ box-shadow: inset 0 0 14px rgba(0,0,0,0.2); } .mCS-3d-thick-dark.mCSB_scrollTools_horizontal{ box-shadow: inset 0 1px 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.2); } .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ box-shadow: inset 1px 0 0 rgba(255,255,255,0.4), inset -1px 0 0 rgba(0,0,0,0.2); } .mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.2); } .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #777; } .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer{ background-color: #fff; background-color: rgba(0,0,0,0.05); box-shadow: inset 1px 1px 16px rgba(0,0,0,0.1); } .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: transparent; } .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; } .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; } .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; } .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -120px -128px; } /* ---------------------------------------- */ /* theme: "minimal", "minimal-dark" */ .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical, .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical{ right: 0; margin: 12px 0; } .mCustomScrollBox.mCS-minimal + .mCSB_scrollTools.mCSB_scrollTools_horizontal, .mCustomScrollBox.mCS-minimal + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal, .mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools.mCSB_scrollTools_horizontal, .mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal{ bottom: 0; margin: 0 12px; } /* RTL direction/left-side scrollbar */ .mCS-dir-rtl > .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical, .mCS-dir-rtl > .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical{ left: 0; right: auto; } .mCS-minimal.mCSB_scrollTools .mCSB_draggerRail, .mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: transparent; } .mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger, .mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger{ height: 50px; } .mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger, .mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 50px; } .mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.2); filter: "alpha(opacity=20)"; -ms-filter: "alpha(opacity=20)"; } .mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.5); filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)"; } /* theme: "minimal-dark" */ .mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.2); filter: "alpha(opacity=20)"; -ms-filter: "alpha(opacity=20)"; } .mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.5); filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)"; } /* ---------------------------------------- */ /* theme "light-3", "dark-3" */ .mCS-light-3.mCSB_scrollTools .mCSB_draggerRail, .mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail{ width: 6px; background-color: #000; background-color: rgba(0,0,0,0.2); } .mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 6px; } .mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail{ width: 100%; height: 6px; margin: 5px 0; } .mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, .mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{ width: 12px; } .mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, .mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{ height: 12px; margin: 2px 0; } .mCS-light-3.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; } .mCS-light-3.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; } .mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; } .mCS-light-3.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -128px; } /* theme "dark-3" */ .mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); } .mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); } .mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); } .mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.1); } .mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; } .mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; } .mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; } .mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight{ background-position: -120px -128px; } /* ---------------------------------------- */ /* theme "inset", "inset-dark", "inset-2", "inset-2-dark", "inset-3", "inset-3-dark" */ .mCS-inset.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{ width: 12px; background-color: #000; background-color: rgba(0,0,0,0.2); } .mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 6px; margin: 3px 5px; position: absolute; height: auto; top: 0; bottom: 0; left: 0; right: 0; } .mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ height: 6px; margin: 5px 3px; position: absolute; width: auto; top: 0; bottom: 0; left: 0; right: 0; } .mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{ width: 100%; height: 12px; margin: 2px 0; } .mCS-inset.mCSB_scrollTools .mCSB_buttonUp, .mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp, .mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; } .mCS-inset.mCSB_scrollTools .mCSB_buttonDown, .mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown, .mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; } .mCS-inset.mCSB_scrollTools .mCSB_buttonLeft, .mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft, .mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; } .mCS-inset.mCSB_scrollTools .mCSB_buttonRight, .mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight, .mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -128px; } /* theme "inset-dark", "inset-2-dark", "inset-3-dark" */ .mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); } .mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, .mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); } .mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); } .mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.1); } .mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp, .mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; } .mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown, .mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; } .mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft, .mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; } .mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight, .mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -120px -128px; } /* theme "inset-2", "inset-2-dark" */ .mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: transparent; border-width: 1px; border-style: solid; border-color: #fff; border-color: rgba(255,255,255,0.2); -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail{ border-color: #000; border-color: rgba(0,0,0,0.2); } /* theme "inset-3", "inset-3-dark" */ .mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail{ background-color: #fff; background-color: rgba(255,255,255,0.6); } .mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.6); } .mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); } .mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); } .mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); } .mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.75); } .mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.85); } .mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.9); } /* ---------------------------------------- */
digicorp/propeller
components/custom-scrollbar/css/jquery.mCustomScrollbar.css
CSS
mit
53,712
using Caliburn.Micro; using FollowMe.Messages; using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel; using System.Text; using System.Threading.Tasks; namespace FollowMe.WebService { /// <summary> /// RemoteControl to control the Ar.Drone indirectly. /// You can start and stop the person following. /// </summary> [ServiceBehavior( ConcurrencyMode=ConcurrencyMode.Single, InstanceContextMode=InstanceContextMode.Single)] public class RemoteControl : IRemoteControl, IHandle<DangerLocationMessage>, IHandle<PersonLocationMessage> { private static readonly ILog Log = LogManager.GetLog(typeof(RemoteControl)); private readonly IEventAggregator eventAggregator; private Enums.TargetLocation personLocation = Enums.TargetLocation.Unknown; private Enums.TargetLocation dangerLocation = Enums.TargetLocation.Unknown; public RemoteControl(IEventAggregator eventAggregator) { if (eventAggregator == null) throw new ArgumentNullException("eventAggregator"); this.eventAggregator = eventAggregator; this.eventAggregator.Subscribe(this); } /// <summary> /// Start the person following /// </summary> public void Start() { Log.Info("Start - BECAUSE OF SECURITY REASONS NOT IMPLEMENTED"); } /// <summary> /// Stop the Person following /// </summary> public void Stop() { Log.Info("Stop"); eventAggregator.Publish(new StopMessage(), action => { Task.Factory.StartNew(action); }); } public Enums.TargetLocation GetPersonLocation() { Log.Info("GetPersonLocation {0}", personLocation); return personLocation; } public Enums.TargetLocation GetDangerLocation() { Log.Info("GetDangerLocation {0}", dangerLocation); return dangerLocation; } public PersonAndDangerLocation GetPersonAndDangerLocation() { Log.Info("GetPersonAndDangerLocation, person: {0}, danger: {1}", personLocation, dangerLocation); return new PersonAndDangerLocation { DangerLocation = dangerLocation, PersonLocation = personLocation }; } public void Handle(DangerLocationMessage message) { this.dangerLocation = message.DangerLocation; } public void Handle(PersonLocationMessage message) { this.personLocation = message.PersonLocation; } } }
HeinrichChristian/FlyingRobotToWarnVisuallyImpaired
FollowMe/WebService/RemoteControl.cs
C#
mit
2,774
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.13"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>KlusterKite: KlusterKite.NodeManager.Launcher.Utils.Exceptions.PackageNotFoundException Class Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">KlusterKite &#160;<span id="projectnumber">0.0.0</span> </div> <div id="projectbrief">A framework to create scalable and redundant services based on awesome Akka.Net project.</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.13 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <script type="text/javascript" src="menudata.js"></script> <script type="text/javascript" src="menu.js"></script> <script type="text/javascript"> $(function() { initMenu('',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); </script> <div id="main-nav"></div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('class_kluster_kite_1_1_node_manager_1_1_launcher_1_1_utils_1_1_exceptions_1_1_package_not_found_exception.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="summary"> <a href="#pub-methods">Public Member Functions</a> &#124; <a href="class_kluster_kite_1_1_node_manager_1_1_launcher_1_1_utils_1_1_exceptions_1_1_package_not_found_exception-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">KlusterKite.NodeManager.Launcher.Utils.Exceptions.PackageNotFoundException Class Reference</div> </div> </div><!--header--> <div class="contents"> <p>The exception of missing requested package in repository <a href="class_kluster_kite_1_1_node_manager_1_1_launcher_1_1_utils_1_1_exceptions_1_1_package_not_found_exception.html#details">More...</a></p> <div class="dynheader"> Inheritance diagram for KlusterKite.NodeManager.Launcher.Utils.Exceptions.PackageNotFoundException:</div> <div class="dyncontent"> <div class="center"> <img src="class_kluster_kite_1_1_node_manager_1_1_launcher_1_1_utils_1_1_exceptions_1_1_package_not_found_exception.png" usemap="#KlusterKite.NodeManager.Launcher.Utils.Exceptions.PackageNotFoundException_map" alt=""/> <map id="KlusterKite.NodeManager.Launcher.Utils.Exceptions.PackageNotFoundException_map" name="KlusterKite.NodeManager.Launcher.Utils.Exceptions.PackageNotFoundException_map"> </map> </div></div> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> Public Member Functions</h2></td></tr> <tr class="memitem:aaf80d7ecc179a82aba0aabfaba92533d"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_kluster_kite_1_1_node_manager_1_1_launcher_1_1_utils_1_1_exceptions_1_1_package_not_found_exception.html#aaf80d7ecc179a82aba0aabfaba92533d">PackageNotFoundException</a> (string message)</td></tr> <tr class="separator:aaf80d7ecc179a82aba0aabfaba92533d"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>The exception of missing requested package in repository </p> <p class="definition">Definition at line <a class="el" href="_package_not_found_exception_8cs_source.html#l00017">17</a> of file <a class="el" href="_package_not_found_exception_8cs_source.html">PackageNotFoundException.cs</a>.</p> </div><h2 class="groupheader">Constructor &amp; Destructor Documentation</h2> <a id="aaf80d7ecc179a82aba0aabfaba92533d"></a> <h2 class="memtitle"><span class="permalink"><a href="#aaf80d7ecc179a82aba0aabfaba92533d">&#9670;&nbsp;</a></span>PackageNotFoundException()</h2> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">KlusterKite.NodeManager.Launcher.Utils.Exceptions.PackageNotFoundException.PackageNotFoundException </td> <td>(</td> <td class="paramtype">string&#160;</td> <td class="paramname"><em>message</em></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p></p> <p class="definition">Definition at line <a class="el" href="_package_not_found_exception_8cs_source.html#l00020">20</a> of file <a class="el" href="_package_not_found_exception_8cs_source.html">PackageNotFoundException.cs</a>.</p> </div> </div> <hr/>The documentation for this class was generated from the following file:<ul> <li>KlusterKite.NodeManager/KlusterKite.NodeManager.Launcher.Utils/Exceptions/<a class="el" href="_package_not_found_exception_8cs_source.html">PackageNotFoundException.cs</a></li> </ul> </div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="namespace_kluster_kite.html">KlusterKite</a></li><li class="navelem"><a class="el" href="namespace_kluster_kite_1_1_node_manager.html">NodeManager</a></li><li class="navelem"><a class="el" href="namespace_kluster_kite_1_1_node_manager_1_1_launcher.html">Launcher</a></li><li class="navelem"><a class="el" href="namespace_kluster_kite_1_1_node_manager_1_1_launcher_1_1_utils.html">Utils</a></li><li class="navelem"><a class="el" href="namespace_kluster_kite_1_1_node_manager_1_1_launcher_1_1_utils_1_1_exceptions.html">Exceptions</a></li><li class="navelem"><a class="el" href="class_kluster_kite_1_1_node_manager_1_1_launcher_1_1_utils_1_1_exceptions_1_1_package_not_found_exception.html">PackageNotFoundException</a></li> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li> </ul> </div> </body> </html>
KlusterKite/KlusterKite
Docs/Doxygen/html/class_kluster_kite_1_1_node_manager_1_1_launcher_1_1_utils_1_1_exceptions_1_1_package_not_found_exception.html
HTML
mit
7,930
#include <iostream> #include <seqan/graph_types.h> #include <seqan/graph_algorithms.h> #include <seqan/find_motif.h> using namespace seqan; int main () { typedef unsigned int TCargo; typedef Graph<Undirected<TCargo> > TGraph; typedef VertexDescriptor<TGraph>::Type TVertexDescriptor; TGraph g; TVertexDescriptor edges[]={1,0,0,4,2,1,4,1,5,1,6,2,3,2,2,3,7,3,5,4,6,5,5,6,7,6,7,7}; addEdges(g,edges,14); char letters[]={'a','b','c','d','e','f','g','h'}; String<char>map; assignVertexMap(g, map, letters); TVertexDescriptor start = 0; typedef Iterator<TGraph, DfsPreorder>::Type TDfsIterator; TDfsIterator dfsIt(g, start); std::cout << "Iterate from '" << getProperty(nameMap, start) << "' in depth-first-search ordering: "; while(!atEnd(dfsIt)) { std::cout << getProperty(nameMap, getValue(dfsIt)) << ", "; goNext(dfsIt); } std::cout << std::endl; ::std::cout << g << ::std::endl; return 0; }
bkahlert/seqan-research
raw/pmsb13/pmsb13-data-20130530/sources/fjt74l9mlcqisdus/2013-04-12T11-39-06.554+0200/sandbox/my_sandbox/apps/tutorial_20/tutorial_20.cpp
C++
mit
989
 var report_test_url = "reports\\BSV_GC_n_08_du_22_octobre_2013.pdf"; var report_dir = "files/"; var report_extension = ".pdf"; /***************************************************************************************************************************/ /* report_panel */ function report_panel(panel, report_panel){//, on_search_report) { report_panel.report_list = report_panel.find("#report_list"); report_panel.report_list_count = report_panel.find("#report_list_count"); report_panel.report_total_count = report_panel.find("#report_total_count"); report_panel.report_filter = report_panel.find("#report_filter"); report_panel.report_filter_years = report_panel.find("#report_filter_years"); report_panel.report_filter_areas = report_panel.find("#report_filter_areas"); report_panel.report_filter_reset = report_panel.find(".filter_reset"); report_panel.report_sorter_panel = report_panel.find("#report_sorter").hide(); report_panel.report_sorters = report_panel.report_sorter_panel.find(".report_sorter_item"); report_panel.current_sort = "date"; report_panel.report_text_filter = report_panel.find("#report_text_filter").hide(); report_panel.btn_filter_text = report_panel.find("#btn_filter_text"); report_panel.opened_report_ids = new Array(); // Init filter reset report_panel.report_filter.hide(); report_panel.find("#filter_reset_years").click(function () { jQuery("#report_filter_years div").removeClass("selected"); report_panel.selected_year = null; report_panel.filter_on_change(); }); report_panel.find("#filter_reset_areas").click(function () { jQuery("#report_filter_areas div").removeClass("selected"); report_panel.selected_area = null; report_panel.filter_on_change(); }); // Sorters report_panel.report_sorters.click(function () { report_panel.sort_changed(jQuery(this)); }); report_panel.cover_up = panel.get_waiting_cover_up(report_panel, 100); /* List management *********************************************************/ // Search succeeded report_panel.search_succeeded = function (response) { console.time("[Report list] Create DOM on new search"); report_panel.opened_report_ids = new Array(); report_panel.selected_year = null; report_panel.selected_area = null; report_panel.report_sorter_panel.show(); report_panel.report_text_filter.show(); report_panel.clear_list(); report_panel.reports = response.Reports; if (report_panel.current_sort != "date") report_panel.sort_reports_array(report_panel.current_sort); report_panel.set_counts(); report_panel.create_list(response); report_panel.create_filters(response); console.timeEnd("[Report list] Create DOM on new search"); report_panel.cover_up.doFadeOut(); } /* Report list DOM creation *********************************************************/ // Show report list report_panel.set_counts = function () { report_panel.report_list_count.text(report_panel.reports.length); report_panel.report_total_count.text(report_panel.reports.length); } // Show report list report_panel.create_list = function () { var html = ""; for (i = 0; i < report_panel.reports.length; i++) { html += report_panel.create_report_item(report_panel.reports[i],i); } report_panel.report_list.html(html); jQuery("#report_list a").click(function () { var report_item = jQuery(this).parent().parent(); report_panel.opened_report_ids.push(report_item.attr("id_report")); report_item.addClass("opened"); }); } // Create report item list report_panel.create_report_item = function (data, index) { var opened = jQuery.inArray("" + data.Id, report_panel.opened_report_ids) != -1; var report_item = "<div class='report_item" + ( (index % 2 == 1) ? " alt" : "") + ((opened) ? " opened" : "") + "' year='" + data.Year + "' id_area='" + data.Id_Area + "' id_report='" + data.Id + "' >" + "<div class='report_area'>" + "<div class='cube'></div>" + "<div class='report_area_name'>" + data.AreaName + "</div>" + "<div class='report_date'>" + data.DateString + "</div>" + "</div>" + "<div class='report_name'>" + "<a href='" + report_dir + data.Name + report_extension + "' target='_blank' title='" + data.Name + "'>" + data.Name + "</a>" + "<div class='report_pdf'></div>" + "</div>" + "</div>" return report_item; } // Clear list report_panel.clear_list = function () { report_panel.report_list.empty(); report_panel.report_filter_areas.empty(); report_panel.report_filter_years.empty(); report_panel.report_list_count.text("0"); report_panel.report_total_count.text("0"); } /* Filter Methods *********************************************************/ // Filters creation report_panel.create_filters = function (response) { var reports_by_year = d3.nest() .key(function (d) { return d.Year; }) .rollup(function (g) { return g.length; }) .entries(response.Reports); for (i = 0; i < response.Years.length; i++) { var year_item = jQuery("<div year='" + reports_by_year[i].key + "'></div>") .append("<span class='filter_year_item_text'>" + reports_by_year[i].key + "</span>") .append("<span class='filter_year_item_count'>(" + reports_by_year[i].values + ")</span>") .click(function () { jQuery("#report_filter_years div").removeClass("selected"); jQuery(this).addClass("selected"); report_panel.selected_year = jQuery(this).attr("year"); report_panel.filter_on_change(); }) .appendTo(report_panel.report_filter_years); } report_panel.report_filter.show(); } report_panel.filter_area = function (id_area) { report_panel.selected_area = id_area; report_panel.filter_on_change(); } // On filter selection report_panel.filter_on_change = function () { report_panel.report_list.find(".report_item").hide(); var class_to_show = ".report_item"; if (report_panel.selected_area != null) class_to_show += "[id_area='" + report_panel.selected_area + "']"; if (report_panel.selected_year != null) class_to_show += "[year='" + report_panel.selected_year + "']"; var to_show = report_panel.report_list.find(class_to_show); to_show.show(); report_panel.report_list_count.text(to_show.length); } /* Sort Methods *********************************************************/ // on Sort report_panel.sort_changed = function (sorter) { report_panel.report_sorters.removeClass("selected"); sorter.addClass("selected") var previous_sort = report_panel.current_sort; report_panel.current_sort = sorter.attr("sort"); if (previous_sort == report_panel.current_sort) { if (report_panel.current_sort.indexOf("_desc") != -1) { report_panel.current_sort = report_panel.current_sort.replace("_desc", ""); } else { report_panel.current_sort = report_panel.current_sort + "_desc"; } } report_panel.cover_up.fadeIn(duration_fade_short, function () { report_panel.sort_list(report_panel.current_sort); report_panel.cover_up.fadeOut(duration_fade_short); }); } // Sort list report_panel.sort_list = function (sort_type) { report_panel.report_list.empty(); report_panel.sort_reports_array(report_panel.current_sort); report_panel.create_list(); report_panel.filter_on_change(); } // Data sorting function report_panel.sort_reports_array = function (sort_type) { var sort_func = null; if (sort_type == "name") { sort_func = report_panel.sort_name; } else if (sort_type == "name_desc") { sort_func = report_panel.sort_name_desc; } else if (sort_type == "area_name") { sort_func = report_panel.sort_area_name; } else if (sort_type == "area_name_desc") { sort_func = report_panel.sort_area_name_desc; } else if (sort_type == "date") { sort_func = report_panel.sort_date; } else if (sort_type == "date_desc") { sort_func = report_panel.sort_date_desc; } report_panel.reports.sort(sort_func); } // Date sort delegate report_panel.sort_date = function (e_1, e_2) { var a1 = parseInt(e_1.Date.substr(6)), b1 = parseInt(e_2.Date.substr(6)); if (a1 == b1) return 0; return a1 > b1 ? 1 : -1; } // Arean name sort delegate report_panel.sort_area_name = function (e_1, e_2) { var a1 = e_1.AreaName, b1 = e_2.AreaName; if (a1 == b1) return 0; return a1 > b1 ? 1 : -1; } // file name sort delegate report_panel.sort_name = function (e_1, e_2) { var a1 = e_1.Name.toLowerCase(), b1 = e_2.Name.toLowerCase(); if (a1 == b1) return 0; return a1 > b1 ? 1 : -1; } // Date sort delegate report_panel.sort_date_desc = function (e_1, e_2) { var a1 = parseInt(e_1.Date.substr(6)), b1 = parseInt(e_2.Date.substr(6)); if (a1 == b1) return 0; return a1 < b1 ? 1 : -1; } // Arean name sort delegate report_panel.sort_area_name_desc = function (e_1, e_2) { var a1 = e_1.AreaName, b1 = e_2.AreaName; if (a1 == b1) return 0; return a1 < b1 ? 1 : -1; } // file name sort delegate report_panel.sort_name_desc = function (e_1, e_2) { var a1 = e_1.Name.toLowerCase(), b1 = e_2.Name.toLowerCase(); if (a1 == b1) return 0; return a1 < b1 ? 1 : -1; } report_panel.open_report = function (id_report) { var report_item_anchor = report_panel.find("#report_list .report_item[id_report='" + id_report + "'] a"); report_item_anchor.click(); window.open(report_item_anchor.attr("href"), "_blank"); } return report_panel; }
win-stub/PestObserver
web/scripts/report_panel.js
JavaScript
mit
11,254
--- 香港手語詞語相似打法系列: * [快、容易、近、細少]({{ site.baseurl }}/香港手語-快-容易-近-細少/) * [普通、剛剛、一筆勾消、不在]({{ site.baseurl }}/香港手語-普通-剛剛-一筆勾消-不在/) * [升職、進步]({{ site.baseurl }}/香港手語相似系列-升職-進步/) * [老師、老闆、準備]({{ site.baseurl }}/香港手語相似系列:老師、老闆、準備/) * [熙來掠往、集合、跟隨、相遇]({{ site.baseurl }}/香港手語相似系列:熙來掠往、集合、跟隨、相遇/) * [真、一倍、木材]({{ site.baseurl }}/香港手語相似系列-真-一倍-木材/) * [要、喉嚨、咳嗽]({{ site.baseurl }}/香港手語相似系列-要-喉嚨-咳嗽/) * [飯、年齡]({{ site.baseurl }}/香港手語相似系列-飯-年齡/)
roulesophy/roulesophy.github.io
_posts/index/hksl_confusion.md
Markdown
mit
811
// LICENSE package com.forgedui.editor.edit; import java.beans.PropertyChangeEvent; import java.util.ArrayList; import java.util.List; import org.eclipse.draw2d.geometry.Rectangle; import org.eclipse.gef.commands.Command; import org.eclipse.gef.requests.CreateRequest; import com.forgedui.editor.GUIEditorPlugin; import com.forgedui.editor.edit.command.AddToTableViewElementCommand; import com.forgedui.editor.edit.policy.ContainerEditPolicy; import com.forgedui.editor.figures.TableViewFigure; import com.forgedui.model.titanium.SearchBar; import com.forgedui.model.titanium.TableView; import com.forgedui.model.titanium.TableViewRow; import com.forgedui.model.titanium.TableViewSection; import com.forgedui.model.titanium.TitaniumUIBoundedElement; import com.forgedui.model.titanium.TitaniumUIElement; /** * @author Dmitry {dmitry.grimm@gmail.com} * */ public class TableViewEditPart extends TitaniumContainerEditPart<TableView> { @SuppressWarnings({ "rawtypes", "unchecked" }) @Override public List<?> getModelChildren_() { List list = new ArrayList(super.getModelChildren_()); TableView model = (TableView)getModel(); if (model.getHeaderView() != null){ list.add(model.getHeaderView()); } if (model.getFooterView() != null){ list.add(model.getFooterView()); } if ((model.getSearchHidden() == null || !model.getSearchHidden()) && model.getSearch() != null){ list.add(model.getSearch()); } return list; } /** * Making sure to refresh things visual. */ @Override public void propertyChange(PropertyChangeEvent evt) { final String propName = evt.getPropertyName(); if (TableView.PROP_HEADER_VIEW.equals(propName) || TableView.PROP_FOOTER_VIEW.equals(propName) || TableView.PROP_SEARCH_VIEW.equals(propName) || TableView.PROP_SEARCH_VIEW_HIDDEN.equals(propName) || TableView.PROP_MIN_ROW_HEIGHT.equals(propName) || TableView.PROP_MAX_ROW_HEIGHT.equals(propName) ) { refresh(); } else { super.propertyChange(evt); } } @Override protected void createEditPolicies() { super.createEditPolicies(); installEditPolicy(ContainerEditPolicy.KEY, new TableViewEditPolicy()); } @Override protected void refreshVisuals() { TableView model = (TableView)getModel(); TableViewFigure figure = (TableViewFigure)getFigure(); figure.setHeaderTitle(model.getHeaderTitle()); figure.setFooterTitle(model.getFooterTitle()); figure.setHasHeaderView(model.getHeaderView() != null); figure.setHasFooterView(model.getFooterView() != null); super.refreshVisuals(); } } class TableViewEditPolicy extends ContainerEditPolicy { protected Command getCreateCommand(CreateRequest request) { // And then passed those to the validate facility. Object newObject = request.getNewObject(); Object container = getHost().getModel(); if (!GUIEditorPlugin.getComponentValidator().validate(newObject, container)) return null; if (!(newObject instanceof TableViewRow) && !(newObject instanceof TableViewSection) && newObject instanceof TitaniumUIElement){ Rectangle r = (Rectangle)getConstraintFor(request); if (r != null){ TitaniumUIBoundedElement child = (TitaniumUIBoundedElement) newObject; if (container instanceof TableView){ TableView view = (TableView) getHost().getModel(); if (child instanceof SearchBar && view.getSearch() == null){ return new AddToTableViewElementCommand(view, child, r, true); } else if (GUIEditorPlugin.getComponentValidator().isView(child)){ if (r.y <= view.getDimension().height / 2){ if (view.getHeaderView() == null){ return new AddToTableViewElementCommand(view, child, r, true); } } else if (view.getFooterView() == null){ return new AddToTableViewElementCommand(view, child, r, false); } } return null;//Can't drop } } } return super.getCreateCommand(request); } /*@Override protected Object getConstraintFor(CreateRequest request) { Rectangle r = (Rectangle) super.getConstraintFor(request); r.x = 0; return r; }*/ }
ShoukriKattan/ForgedUI-Eclipse
com.forgedui.editor/src/com/forgedui/editor/edit/TableViewEditPart.java
Java
mit
4,096
/* Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ CKEDITOR.plugins.setLang( 'about', 'pt-br', { copy: 'Copyright &copy; $1. Todos os direitos reservados.', dlgTitle: 'Sobre o CKEditor 4', moreInfo: 'Para informações sobre a licença por favor visite o nosso site:' } );
otto-torino/gino
ckeditor/plugins/about/lang/pt-br.js
JavaScript
mit
400
package com.daviancorp.android.data.database; import android.database.Cursor; import android.database.CursorWrapper; import com.daviancorp.android.data.classes.Location; /** * A convenience class to wrap a cursor that returns rows from the "locations" * table. The {@link getLocation()} method will give you a Location instance * representing the current row. */ public class LocationCursor extends CursorWrapper { public LocationCursor(Cursor c) { super(c); } /** * Returns a Location object configured for the current row, or null if the * current row is invalid. */ public Location getLocation() { if (isBeforeFirst() || isAfterLast()) return null; Location location = new Location(); long locationId = getLong(getColumnIndex(S.COLUMN_LOCATIONS_ID)); String name = getString(getColumnIndex(S.COLUMN_LOCATIONS_NAME)); String fileLocation = getString(getColumnIndex(S.COLUMN_LOCATIONS_MAP)); location.setId(locationId); location.setName(name); location.setFileLocation(fileLocation); return location; } }
dbooga/MonsterHunter3UDatabase
MonsterHunter3UDatabase/src/com/daviancorp/android/data/database/LocationCursor.java
Java
mit
1,054
<div class="col-md-2"> </div> <div class="col-md-8" style="margin-top: 2%;"> <?php if(isset($editar)){ echo form_open('Pacientes/savePaciente'); }else{ echo form_open('Pacientes/addPaciente'); } ?> <div class="panel panel-info"> <div class="panel-heading"> <center> <li class="fa fa-user-plus"></li> <?php if(isset($editar)){ echo "Editar ".$editar->Nombre; }else{ echo "Agregar"; } ?> </center> </div> <div class="panel-body"> <div class="row" style="margin-top: 1%"> <div class="col-md-8"> <div class="form-group"> <?php if(isset($editar)){ echo "<input name='id' type='hidden' value='".$editar->idPacientes."' >"; } ?> <label><li class="fa fa-edit"></li> Nombre</label> <input autofocus type="text" name="nombre" class="form-control" placeholder="Nombre Completo" required value="<?php if(isset($editar)){ echo $editar->Nombre;}?>" > </div> </div> <div class="col-md-4"> <div class="from-group"> <label><li class="fa fa-calendar"></li> Fecha</label> <input type="date" name="fecha" class="form-control" value="<?php if(isset($editar)){ echo $editar->Registro;}else{ echo date("Y-m-d");} ?>" required> </div> </div> </div> <div class="row" style="margin-top: 1%;"> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><li class="fa fa-home"></li> Domicilio</label> <input class="form-control" type="text" name="domicilio" required placeholder="Calle y Numero" value="<?php if(isset($editar)){ echo $editar->Domicilio;}?>"> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><li class="fa fa-check"></li> Ocupacion</label> <input class="form-control" type="text" name="ocupacion" required placeholder="Ocupacion..." value="<?php if(isset($editar)){ echo $editar->Ocupacion;}?>"> </div> </div> </div> <div class="row" style="margin-top: 1%;"> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><li class="fa fa-phone"></li> Telefono</label> <input class="form-control" type="tel" name="telefono" required placeholder="Telefono" value="<?php if(isset($editar)){ echo $editar->Tel;}?>"> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><li class="fa fa-question"></li> Referencias</label> <input class="form-control" type="text" name="referencia" placeholder="Referencias..." value="<?php if(isset($editar)){ echo $editar->Referencia;}?>"> </div> </div> </div> <div class="row" style="margin-top: 1%;"> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><li class="fa fa-venus-mars"></li> Sexo</label> <select class="form-control" name="sexo" required> <option></option> <option value="0" <?php if(isset($editar) && $editar->Sexo == 0){ echo 'selected';}?> >Hombre</option> <option value="1" <?php if(isset($editar) && $editar->Sexo == 1){ echo 'selected';}?> >Mujer</option> </select> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><li class="fa fa-clock-o"></li> Edad</label> <input class="form-control" type="number" name="edad" placeholder="Edad" required min="1" value="<?php if(isset($editar)){ echo $editar->Edad;}?>"> </div> </div> </div> <div class="col-md-4"> </div> <div class="col-md-4"> <button class="btn btn-success btn-block" type="submit"><li class="fa fa-check-circle"></li> <?php if(isset($editar)){ echo "Guardar";}else{ echo "Agregar";}?></button> </div> <div class="col-md-4"> </div> </div> </div> </form> </div> </div> <div class="col-md-2"> </div>
nykteus/Consultorio
application/views/Contenido/frmAddPaciente.php
PHP
mit
4,871
var bind = require('bind'); var debug = require('debug')('uj:app'); var Entity = require('./entity'); var inherit = require('inherit'); /** * Initialize a new `App` with `options`. * * @param {Object} options */ function App (options) { this.defaults = {} this.debug = debug; Entity.call(this, options); } /** * Inherit `Entity` */ inherit(App, Entity); /** * Load saved app `id` or `traits` from storage. */ App.prototype.load = function () { Entity.prototype.load.call(this); }; /** * Expose the app singleton. */ module.exports = bind.all(new App()); /** * Expose the `App` constructor. */ module.exports.App = App;
prateekbhatt/userjoy
apps/cdn/lib/app.js
JavaScript
mit
655
<!DOCTYPE html> <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>[GADIA] - wot clan</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Place favicon.ico and apple-touch-icon.png in the root directory --> <link rel="stylesheet" href="css/normalize.css"> <link rel="stylesheet" href="css/main.css"> <script src="js/vendor/modernizr-2.6.2.min.js"></script> </head> <body> <!--[if lt IE 7]> <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> <![endif]--> <p>WoT Project</p> <h1>[GADIA]</h1> <section class="example-images"> <header>Gadia girl without wihite border</header> <ul> <li><figure><img src="img/24.png" alt="24x24"></figure><p>24x24 px</p></li> <li><figure><img src="img/32.png" alt="32x32"></figure><p>32x32 px</p></li> <li><figure><img src="img/64.png" alt="64x64"></figure><p>64x64 px</p></li> <li><figure><img src="img/195.png" alt="195x195"></figure><p>195x195 px</p></li> <li><figure><img src="img/256.png" alt="256x256"></figure><p>256x256 px</p></li> </ul> </section> <section class="example-images"> <header>Gadia girl with wihite border</header> <ul> <li><figure><img src="img/w24.png" alt="24x24"></figure><p>24x24 px</p></li> <li><figure><img src="img/w32.png" alt="32x32"></figure><p>32x32 px</p></li> <li><figure><img src="img/w64.png" alt="64x64"></figure><p>64x64 px</p></li> <li><figure><img src="img/w195.png" alt="195x195"></figure><p>195x195 px</p></li> <li><figure><img src="img/w256.png" alt="256x256"></figure><p>256x256 px</p></li> </ul> </section> <section class="example-images"> <header>Example front image for group on VK</header> <figure class="vk_image"> <img src="img/gadia_vk_image.jpg" alt=""> </figure> </section> <footer> &copy; miniq_ru[GADIA] | Russia, Chelyabinsk, 2015 </footer> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script>window.jQuery || document.write('<script src="js/vendor/jquery-1.10.2.min.js"><\/script>')</script> <script src="js/plugins.js"></script> <script src="js/main.js"></script> </body> </html>
argayash/gadiawot
index.html
HTML
mit
3,044
//================================================================ // RS_ChangeWindowTextColorSafely.js // --------------------------------------------------------------- // The MIT License // Copyright (c) 2017 biud436 // --------------------------------------------------------------- // Free for commercial and non commercial use. //================================================================ /*:ko * @target MV * @plugindesc 특정 창의 텍스트 색상을 원하는 색상으로 변경할 수 있습니다 <RS_ChangeWindowTextColorSafely> * @author biud436 * * @param windowList * @text 사용자 정의 색상 * @type note * @desc 도움말을 참고하세요! * @default "" * * @help * ============================================================================= * 사용 방법 * ============================================================================= * 각 창에 서로 다른 텍스트 색상을 적용하려면, * 사용자 정의 색상 매개변수에 다음 노트 태그를 입력해야 합니다. * * <Window_ItemList normalColor #ff0000> * <Window_SkillList normalColor #ffff00> * <Window_SkillList crisisColor #ff0000> * * 노트 태그는 클래스 이름과 해당 클래스의 메소드 이름 그리고 색상 값을 제공해야 하므로, * 정확히 입력하시기 바랍니다. * * 정말 많은 메소드를 바꿀 수 있지만 모두 표기하진 않았습니다. * * 바뀐 색상은 게임 내에서 확인할 수 있습니다. * * ============================================================================= * 변경 기록 * ============================================================================= * 2017.12.21 (v1.0.0) - First Release. */ /*: * @target MV * @plugindesc This plugin allows you to change the text color for window as you desired. <RS_ChangeWindowTextColorSafely> * @author biud436 * * @param windowList * @text Window List * @type note * @desc Refer to a help documentation * @default "" * * @help * * We're going to define each window a different special color. To quickly define, * We must use to define a notetag in the plugin parameter called 'Window List' * * <Window_ItemList normalColor #ff0000> * <Window_SkillList normalColor #ffff00> * <Window_SkillList crisisColor #ff0000> * * Note tags provide the information likes as a class name and method name, * color value for window. You can see how the text color for window that is * changed in the game. * * ============================================================================= * Change Log * ============================================================================= * 2017.12.21 (v1.0.0) - First Release. */ var Imported = Imported || {}; Imported.RS_ChangeWindowTextColorSafely = true; var RS = RS || {}; RS.Utils = RS.Utils || {}; (() => { let parameters = $plugins.filter(function (i) { return i.description.contains("<RS_ChangeWindowTextColorSafely>"); }); parameters = parameters.length > 0 && parameters[0].parameters; RS.Utils.jsonParse = function (str) { const retData = JSON.parse(str, function (k, v) { try { return RS.Utils.jsonParse(v); } catch (e) { return v; } }); return retData; }; const defaultWindowClasses = RS.Utils.jsonParse(parameters["windowList"]); Utils.changeWindowTextColorSafely = function (NOTETAGS) { let clsName = ""; let funcName = ""; let color = ""; let done = false; const notetags = NOTETAGS.split(/[\r\n]+/); notetags.forEach((note) => { if (note.match(/<(.*)[ ](.*)[ ](.*)>/)) { clsName = String(RegExp.$1); funcName = String(RegExp.$2); color = String(RegExp.$3); done = true; } if (done) { const CLASS_NAME = window[clsName]; const FUNC_NAME = funcName.slice(0); const COLOR_NAME = color.slice(0); if (typeof CLASS_NAME === "function") { const prototypeName = CLASS_NAME.prototype[FUNC_NAME]; if (typeof prototypeName === "function") { CLASS_NAME.prototype[funcName] = function () { return COLOR_NAME; }; } } } }); }; Utils.changeWindowTextColorSafely(defaultWindowClasses); })();
biud436/MV
RS_ChangeWindowTextColorSafely.js
JavaScript
mit
4,574
// ----------------------------------------------------------- // // This file was generated, please do not modify. // // ----------------------------------------------------------- namespace EmptyKeys.UserInterface.Generated { using System; using System.CodeDom.Compiler; using System.Collections.ObjectModel; using EmptyKeys.UserInterface; using EmptyKeys.UserInterface.Charts; using EmptyKeys.UserInterface.Data; using EmptyKeys.UserInterface.Controls; using EmptyKeys.UserInterface.Controls.Primitives; using EmptyKeys.UserInterface.Input; using EmptyKeys.UserInterface.Interactions.Core; using EmptyKeys.UserInterface.Interactivity; using EmptyKeys.UserInterface.Media; using EmptyKeys.UserInterface.Media.Effects; using EmptyKeys.UserInterface.Media.Animation; using EmptyKeys.UserInterface.Media.Imaging; using EmptyKeys.UserInterface.Shapes; using EmptyKeys.UserInterface.Renderers; using EmptyKeys.UserInterface.Themes; [GeneratedCodeAttribute("Empty Keys UI Generator", "3.1.0.0")] public sealed class Dictionary : ResourceDictionary { private static Dictionary singleton = new Dictionary(); public Dictionary() { this.InitializeResources(); } public static Dictionary Instance { get { return singleton; } } private void InitializeResources() { // Resource - [buttonAnimStyle] Style var r_0_s_bo = this[typeof(Button)]; Style r_0_s = new Style(typeof(Button), r_0_s_bo as Style); Setter r_0_s_S_0 = new Setter(Button.WidthProperty, 200F); r_0_s.Setters.Add(r_0_s_S_0); Setter r_0_s_S_1 = new Setter(Button.MarginProperty, new Thickness(0F, 1F, 0F, 1F)); r_0_s.Setters.Add(r_0_s_S_1); Setter r_0_s_S_2 = new Setter(Button.SnapsToDevicePixelsProperty, false); r_0_s.Setters.Add(r_0_s_S_2); EventTrigger r_0_s_ET_0 = new EventTrigger(Button.MouseEnterEvent); r_0_s.Triggers.Add(r_0_s_ET_0); BeginStoryboard r_0_s_ET_0_AC_0 = new BeginStoryboard(); r_0_s_ET_0_AC_0.Name = "r_0_s_ET_0_AC_0"; r_0_s_ET_0.AddAction(r_0_s_ET_0_AC_0); Storyboard r_0_s_ET_0_AC_0_SB = new Storyboard(); r_0_s_ET_0_AC_0.Storyboard = r_0_s_ET_0_AC_0_SB; r_0_s_ET_0_AC_0_SB.Name = "r_0_s_ET_0_AC_0_SB"; ThicknessAnimation r_0_s_ET_0_AC_0_SB_TL_0 = new ThicknessAnimation(); r_0_s_ET_0_AC_0_SB_TL_0.Name = "r_0_s_ET_0_AC_0_SB_TL_0"; r_0_s_ET_0_AC_0_SB_TL_0.Duration = new Duration(new TimeSpan(0, 0, 0, 0, 500)); r_0_s_ET_0_AC_0_SB_TL_0.From = new Thickness(0F, 1F, 0F, 1F); r_0_s_ET_0_AC_0_SB_TL_0.To = new Thickness(0F, 5F, 0F, 5F); SineEase r_0_s_ET_0_AC_0_SB_TL_0_EA = new SineEase(); r_0_s_ET_0_AC_0_SB_TL_0.EasingFunction = r_0_s_ET_0_AC_0_SB_TL_0_EA; Storyboard.SetTargetProperty(r_0_s_ET_0_AC_0_SB_TL_0, Button.MarginProperty); r_0_s_ET_0_AC_0_SB.Children.Add(r_0_s_ET_0_AC_0_SB_TL_0); FloatAnimation r_0_s_ET_0_AC_0_SB_TL_1 = new FloatAnimation(); r_0_s_ET_0_AC_0_SB_TL_1.Name = "r_0_s_ET_0_AC_0_SB_TL_1"; r_0_s_ET_0_AC_0_SB_TL_1.Duration = new Duration(new TimeSpan(0, 0, 0, 0, 500)); r_0_s_ET_0_AC_0_SB_TL_1.To = 220F; SineEase r_0_s_ET_0_AC_0_SB_TL_1_EA = new SineEase(); r_0_s_ET_0_AC_0_SB_TL_1.EasingFunction = r_0_s_ET_0_AC_0_SB_TL_1_EA; Storyboard.SetTargetProperty(r_0_s_ET_0_AC_0_SB_TL_1, Button.WidthProperty); r_0_s_ET_0_AC_0_SB.Children.Add(r_0_s_ET_0_AC_0_SB_TL_1); EventTrigger r_0_s_ET_1 = new EventTrigger(Button.MouseLeaveEvent); r_0_s.Triggers.Add(r_0_s_ET_1); BeginStoryboard r_0_s_ET_1_AC_0 = new BeginStoryboard(); r_0_s_ET_1_AC_0.Name = "r_0_s_ET_1_AC_0"; r_0_s_ET_1.AddAction(r_0_s_ET_1_AC_0); Storyboard r_0_s_ET_1_AC_0_SB = new Storyboard(); r_0_s_ET_1_AC_0.Storyboard = r_0_s_ET_1_AC_0_SB; r_0_s_ET_1_AC_0_SB.Name = "r_0_s_ET_1_AC_0_SB"; ThicknessAnimation r_0_s_ET_1_AC_0_SB_TL_0 = new ThicknessAnimation(); r_0_s_ET_1_AC_0_SB_TL_0.Name = "r_0_s_ET_1_AC_0_SB_TL_0"; r_0_s_ET_1_AC_0_SB_TL_0.Duration = new Duration(new TimeSpan(0, 0, 0, 0, 500)); r_0_s_ET_1_AC_0_SB_TL_0.From = new Thickness(0F, 5F, 0F, 5F); r_0_s_ET_1_AC_0_SB_TL_0.To = new Thickness(0F, 1F, 0F, 1F); SineEase r_0_s_ET_1_AC_0_SB_TL_0_EA = new SineEase(); r_0_s_ET_1_AC_0_SB_TL_0.EasingFunction = r_0_s_ET_1_AC_0_SB_TL_0_EA; Storyboard.SetTargetProperty(r_0_s_ET_1_AC_0_SB_TL_0, Button.MarginProperty); r_0_s_ET_1_AC_0_SB.Children.Add(r_0_s_ET_1_AC_0_SB_TL_0); FloatAnimation r_0_s_ET_1_AC_0_SB_TL_1 = new FloatAnimation(); r_0_s_ET_1_AC_0_SB_TL_1.Name = "r_0_s_ET_1_AC_0_SB_TL_1"; r_0_s_ET_1_AC_0_SB_TL_1.Duration = new Duration(new TimeSpan(0, 0, 0, 0, 500)); r_0_s_ET_1_AC_0_SB_TL_1.To = 200F; SineEase r_0_s_ET_1_AC_0_SB_TL_1_EA = new SineEase(); r_0_s_ET_1_AC_0_SB_TL_1.EasingFunction = r_0_s_ET_1_AC_0_SB_TL_1_EA; Storyboard.SetTargetProperty(r_0_s_ET_1_AC_0_SB_TL_1, Button.WidthProperty); r_0_s_ET_1_AC_0_SB.Children.Add(r_0_s_ET_1_AC_0_SB_TL_1); this.Add("buttonAnimStyle", r_0_s); // Resource - [buttonStyle] Style var r_1_s_bo = this[typeof(Button)]; Style r_1_s = new Style(typeof(Button), r_1_s_bo as Style); Setter r_1_s_S_0 = new Setter(Button.BackgroundProperty, new SolidColorBrush(new ColorW(255, 140, 0, 255))); r_1_s.Setters.Add(r_1_s_S_0); Setter r_1_s_S_1 = new Setter(Button.WidthProperty, 200F); r_1_s.Setters.Add(r_1_s_S_1); Setter r_1_s_S_2 = new Setter(Button.PaddingProperty, new Thickness(2F)); r_1_s.Setters.Add(r_1_s_S_2); this.Add("buttonStyle", r_1_s); // Resource - [logoEmptyKeys] BitmapImage BitmapImage r_2_bm = new BitmapImage(); r_2_bm.TextureAsset = "Images/EmptyKeysLogoTextSmall"; this.Add("logoEmptyKeys", r_2_bm); // Resource - [MessageBoxButtonYes] String this.Add("MessageBoxButtonYes", "Yes!"); // Resource - [Sounds] SoundSourceCollection var r_4_sounds = new SoundSourceCollection(); SoundManager.Instance.AddSound("Click"); r_4_sounds.Add(new SoundSource { SoundType = SoundType.ButtonsClick, SoundAsset = "Click", Volume = 1f }); SoundManager.Instance.AddSound("KeyPress"); r_4_sounds.Add(new SoundSource { SoundType = SoundType.TextBoxKeyPress, SoundAsset = "KeyPress", Volume = 1f }); SoundManager.Instance.AddSound("Move"); r_4_sounds.Add(new SoundSource { SoundType = SoundType.TabControlMove, SoundAsset = "Move", Volume = 1f }); SoundManager.Instance.AddSound("Select"); r_4_sounds.Add(new SoundSource { SoundType = SoundType.TabControlSelect, SoundAsset = "Select", Volume = 1f }); this.Add("Sounds", r_4_sounds); // Resource - [TitleResource] String this.Add("TitleResource", "Basic UI Example"); // Resource - [ToolTipText] String this.Add("ToolTipText", "Click to open message box"); ImageManager.Instance.AddImage("Images/EmptyKeysLogoTextSmall"); } } }
EmptyKeys/UI_Examples
BasicUI_Xenko/BasicUI_Xenko/BasicUI_Xenko.UserInterface/GeneratedUI/Dictionary.xaml.cs
C#
mit
7,744
/* this ALWAYS GENERATED file contains the definitions for the interfaces */ /* File created by MIDL compiler version 8.00.0601 */ /* @@MIDL_FILE_HEADING( ) */ #pragma warning( disable: 4049 ) /* more than 64k source lines */ /* verify that the <rpcndr.h> version is high enough to compile this file*/ #ifndef __REQUIRED_RPCNDR_H_VERSION__ #define __REQUIRED_RPCNDR_H_VERSION__ 475 #endif /* verify that the <rpcsal.h> version is high enough to compile this file*/ #ifndef __REQUIRED_RPCSAL_H_VERSION__ #define __REQUIRED_RPCSAL_H_VERSION__ 100 #endif #include "rpc.h" #include "rpcndr.h" #ifndef __RPCNDR_H_VERSION__ #error this stub requires an updated version of <rpcndr.h> #endif // __RPCNDR_H_VERSION__ #ifndef COM_NO_WINDOWS_H #include "windows.h" #include "ole2.h" #endif /*COM_NO_WINDOWS_H*/ #ifndef __vsshell80_h__ #define __vsshell80_h__ #if defined(_MSC_VER) && (_MSC_VER >= 1020) #pragma once #endif /* Forward Declarations */ #ifndef __IVsProjectDebugTargetProvider_FWD_DEFINED__ #define __IVsProjectDebugTargetProvider_FWD_DEFINED__ typedef interface IVsProjectDebugTargetProvider IVsProjectDebugTargetProvider; #endif /* __IVsProjectDebugTargetProvider_FWD_DEFINED__ */ #ifndef __IVsRegisterProjectDebugTargetProvider_FWD_DEFINED__ #define __IVsRegisterProjectDebugTargetProvider_FWD_DEFINED__ typedef interface IVsRegisterProjectDebugTargetProvider IVsRegisterProjectDebugTargetProvider; #endif /* __IVsRegisterProjectDebugTargetProvider_FWD_DEFINED__ */ #ifndef __SVsRegisterDebugTargetProvider_FWD_DEFINED__ #define __SVsRegisterDebugTargetProvider_FWD_DEFINED__ typedef interface SVsRegisterDebugTargetProvider SVsRegisterDebugTargetProvider; #endif /* __SVsRegisterDebugTargetProvider_FWD_DEFINED__ */ #ifndef __IVsBrowseObject_FWD_DEFINED__ #define __IVsBrowseObject_FWD_DEFINED__ typedef interface IVsBrowseObject IVsBrowseObject; #endif /* __IVsBrowseObject_FWD_DEFINED__ */ #ifndef __IVsCfgBrowseObject_FWD_DEFINED__ #define __IVsCfgBrowseObject_FWD_DEFINED__ typedef interface IVsCfgBrowseObject IVsCfgBrowseObject; #endif /* __IVsCfgBrowseObject_FWD_DEFINED__ */ #ifndef __IVsDetermineWizardTrust_FWD_DEFINED__ #define __IVsDetermineWizardTrust_FWD_DEFINED__ typedef interface IVsDetermineWizardTrust IVsDetermineWizardTrust; #endif /* __IVsDetermineWizardTrust_FWD_DEFINED__ */ #ifndef __SVsDetermineWizardTrust_FWD_DEFINED__ #define __SVsDetermineWizardTrust_FWD_DEFINED__ typedef interface SVsDetermineWizardTrust SVsDetermineWizardTrust; #endif /* __SVsDetermineWizardTrust_FWD_DEFINED__ */ #ifndef __IVsSolutionEvents4_FWD_DEFINED__ #define __IVsSolutionEvents4_FWD_DEFINED__ typedef interface IVsSolutionEvents4 IVsSolutionEvents4; #endif /* __IVsSolutionEvents4_FWD_DEFINED__ */ #ifndef __IVsFireSolutionEvents2_FWD_DEFINED__ #define __IVsFireSolutionEvents2_FWD_DEFINED__ typedef interface IVsFireSolutionEvents2 IVsFireSolutionEvents2; #endif /* __IVsFireSolutionEvents2_FWD_DEFINED__ */ #ifndef __IVsPrioritizedSolutionEvents_FWD_DEFINED__ #define __IVsPrioritizedSolutionEvents_FWD_DEFINED__ typedef interface IVsPrioritizedSolutionEvents IVsPrioritizedSolutionEvents; #endif /* __IVsPrioritizedSolutionEvents_FWD_DEFINED__ */ #ifndef __IVsPersistSolutionProps2_FWD_DEFINED__ #define __IVsPersistSolutionProps2_FWD_DEFINED__ typedef interface IVsPersistSolutionProps2 IVsPersistSolutionProps2; #endif /* __IVsPersistSolutionProps2_FWD_DEFINED__ */ #ifndef __IVsEnhancedDataTip_FWD_DEFINED__ #define __IVsEnhancedDataTip_FWD_DEFINED__ typedef interface IVsEnhancedDataTip IVsEnhancedDataTip; #endif /* __IVsEnhancedDataTip_FWD_DEFINED__ */ #ifndef __IVsDebugger2_FWD_DEFINED__ #define __IVsDebugger2_FWD_DEFINED__ typedef interface IVsDebugger2 IVsDebugger2; #endif /* __IVsDebugger2_FWD_DEFINED__ */ #ifndef __IVsDebugProcessNotify_FWD_DEFINED__ #define __IVsDebugProcessNotify_FWD_DEFINED__ typedef interface IVsDebugProcessNotify IVsDebugProcessNotify; #endif /* __IVsDebugProcessNotify_FWD_DEFINED__ */ #ifndef __IVsQueryDebuggableProjectCfg_FWD_DEFINED__ #define __IVsQueryDebuggableProjectCfg_FWD_DEFINED__ typedef interface IVsQueryDebuggableProjectCfg IVsQueryDebuggableProjectCfg; #endif /* __IVsQueryDebuggableProjectCfg_FWD_DEFINED__ */ #ifndef __IVsCommandWindow2_FWD_DEFINED__ #define __IVsCommandWindow2_FWD_DEFINED__ typedef interface IVsCommandWindow2 IVsCommandWindow2; #endif /* __IVsCommandWindow2_FWD_DEFINED__ */ #ifndef __IVsDeferredDocView_FWD_DEFINED__ #define __IVsDeferredDocView_FWD_DEFINED__ typedef interface IVsDeferredDocView IVsDeferredDocView; #endif /* __IVsDeferredDocView_FWD_DEFINED__ */ #ifndef __IVsBuildableProjectCfg2_FWD_DEFINED__ #define __IVsBuildableProjectCfg2_FWD_DEFINED__ typedef interface IVsBuildableProjectCfg2 IVsBuildableProjectCfg2; #endif /* __IVsBuildableProjectCfg2_FWD_DEFINED__ */ #ifndef __IVsPublishableProjectStatusCallback_FWD_DEFINED__ #define __IVsPublishableProjectStatusCallback_FWD_DEFINED__ typedef interface IVsPublishableProjectStatusCallback IVsPublishableProjectStatusCallback; #endif /* __IVsPublishableProjectStatusCallback_FWD_DEFINED__ */ #ifndef __IVsPublishableProjectCfg_FWD_DEFINED__ #define __IVsPublishableProjectCfg_FWD_DEFINED__ typedef interface IVsPublishableProjectCfg IVsPublishableProjectCfg; #endif /* __IVsPublishableProjectCfg_FWD_DEFINED__ */ #ifndef __IVsParseCommandLine2_FWD_DEFINED__ #define __IVsParseCommandLine2_FWD_DEFINED__ typedef interface IVsParseCommandLine2 IVsParseCommandLine2; #endif /* __IVsParseCommandLine2_FWD_DEFINED__ */ #ifndef __IVsCommandWindowsCollection_FWD_DEFINED__ #define __IVsCommandWindowsCollection_FWD_DEFINED__ typedef interface IVsCommandWindowsCollection IVsCommandWindowsCollection; #endif /* __IVsCommandWindowsCollection_FWD_DEFINED__ */ #ifndef __SVsCommandWindowsCollection_FWD_DEFINED__ #define __SVsCommandWindowsCollection_FWD_DEFINED__ typedef interface SVsCommandWindowsCollection SVsCommandWindowsCollection; #endif /* __SVsCommandWindowsCollection_FWD_DEFINED__ */ #ifndef __IVsThreadPool_FWD_DEFINED__ #define __IVsThreadPool_FWD_DEFINED__ typedef interface IVsThreadPool IVsThreadPool; #endif /* __IVsThreadPool_FWD_DEFINED__ */ #ifndef __SVsThreadPool_FWD_DEFINED__ #define __SVsThreadPool_FWD_DEFINED__ typedef interface SVsThreadPool SVsThreadPool; #endif /* __SVsThreadPool_FWD_DEFINED__ */ #ifndef __IVsShell2_FWD_DEFINED__ #define __IVsShell2_FWD_DEFINED__ typedef interface IVsShell2 IVsShell2; #endif /* __IVsShell2_FWD_DEFINED__ */ #ifndef __IVsGradient_FWD_DEFINED__ #define __IVsGradient_FWD_DEFINED__ typedef interface IVsGradient IVsGradient; #endif /* __IVsGradient_FWD_DEFINED__ */ #ifndef __IVsImageButton_FWD_DEFINED__ #define __IVsImageButton_FWD_DEFINED__ typedef interface IVsImageButton IVsImageButton; #endif /* __IVsImageButton_FWD_DEFINED__ */ #ifndef __IVsUIShell2_FWD_DEFINED__ #define __IVsUIShell2_FWD_DEFINED__ typedef interface IVsUIShell2 IVsUIShell2; #endif /* __IVsUIShell2_FWD_DEFINED__ */ #ifndef __SVsMainWindowDropTarget_FWD_DEFINED__ #define __SVsMainWindowDropTarget_FWD_DEFINED__ typedef interface SVsMainWindowDropTarget SVsMainWindowDropTarget; #endif /* __SVsMainWindowDropTarget_FWD_DEFINED__ */ #ifndef __IVsSupportItemHandoff2_FWD_DEFINED__ #define __IVsSupportItemHandoff2_FWD_DEFINED__ typedef interface IVsSupportItemHandoff2 IVsSupportItemHandoff2; #endif /* __IVsSupportItemHandoff2_FWD_DEFINED__ */ #ifndef __IVsLaunchPadOutputParser_FWD_DEFINED__ #define __IVsLaunchPadOutputParser_FWD_DEFINED__ typedef interface IVsLaunchPadOutputParser IVsLaunchPadOutputParser; #endif /* __IVsLaunchPadOutputParser_FWD_DEFINED__ */ #ifndef __IVsLaunchPad2_FWD_DEFINED__ #define __IVsLaunchPad2_FWD_DEFINED__ typedef interface IVsLaunchPad2 IVsLaunchPad2; #endif /* __IVsLaunchPad2_FWD_DEFINED__ */ #ifndef __IVsOpenProjectOrSolutionDlg_FWD_DEFINED__ #define __IVsOpenProjectOrSolutionDlg_FWD_DEFINED__ typedef interface IVsOpenProjectOrSolutionDlg IVsOpenProjectOrSolutionDlg; #endif /* __IVsOpenProjectOrSolutionDlg_FWD_DEFINED__ */ #ifndef __SVsOpenProjectOrSolutionDlg_FWD_DEFINED__ #define __SVsOpenProjectOrSolutionDlg_FWD_DEFINED__ typedef interface SVsOpenProjectOrSolutionDlg SVsOpenProjectOrSolutionDlg; #endif /* __SVsOpenProjectOrSolutionDlg_FWD_DEFINED__ */ #ifndef __IVsCreateAggregateProject_FWD_DEFINED__ #define __IVsCreateAggregateProject_FWD_DEFINED__ typedef interface IVsCreateAggregateProject IVsCreateAggregateProject; #endif /* __IVsCreateAggregateProject_FWD_DEFINED__ */ #ifndef __SVsCreateAggregateProject_FWD_DEFINED__ #define __SVsCreateAggregateProject_FWD_DEFINED__ typedef interface SVsCreateAggregateProject SVsCreateAggregateProject; #endif /* __SVsCreateAggregateProject_FWD_DEFINED__ */ #ifndef __IVsAggregatableProject_FWD_DEFINED__ #define __IVsAggregatableProject_FWD_DEFINED__ typedef interface IVsAggregatableProject IVsAggregatableProject; #endif /* __IVsAggregatableProject_FWD_DEFINED__ */ #ifndef __IVsAggregatableProjectFactory_FWD_DEFINED__ #define __IVsAggregatableProjectFactory_FWD_DEFINED__ typedef interface IVsAggregatableProjectFactory IVsAggregatableProjectFactory; #endif /* __IVsAggregatableProjectFactory_FWD_DEFINED__ */ #ifndef __IVsParentProject2_FWD_DEFINED__ #define __IVsParentProject2_FWD_DEFINED__ typedef interface IVsParentProject2 IVsParentProject2; #endif /* __IVsParentProject2_FWD_DEFINED__ */ #ifndef __IVsBuildPropertyStorage_FWD_DEFINED__ #define __IVsBuildPropertyStorage_FWD_DEFINED__ typedef interface IVsBuildPropertyStorage IVsBuildPropertyStorage; #endif /* __IVsBuildPropertyStorage_FWD_DEFINED__ */ #ifndef __IVsProjectBuildSystem_FWD_DEFINED__ #define __IVsProjectBuildSystem_FWD_DEFINED__ typedef interface IVsProjectBuildSystem IVsProjectBuildSystem; #endif /* __IVsProjectBuildSystem_FWD_DEFINED__ */ #ifndef __IPersistXMLFragment_FWD_DEFINED__ #define __IPersistXMLFragment_FWD_DEFINED__ typedef interface IPersistXMLFragment IPersistXMLFragment; #endif /* __IPersistXMLFragment_FWD_DEFINED__ */ #ifndef __IVsProjectFlavorCfg_FWD_DEFINED__ #define __IVsProjectFlavorCfg_FWD_DEFINED__ typedef interface IVsProjectFlavorCfg IVsProjectFlavorCfg; #endif /* __IVsProjectFlavorCfg_FWD_DEFINED__ */ #ifndef __IVsProjectFlavorCfgOutputGroups_FWD_DEFINED__ #define __IVsProjectFlavorCfgOutputGroups_FWD_DEFINED__ typedef interface IVsProjectFlavorCfgOutputGroups IVsProjectFlavorCfgOutputGroups; #endif /* __IVsProjectFlavorCfgOutputGroups_FWD_DEFINED__ */ #ifndef __IVsProjectFlavorCfgProvider_FWD_DEFINED__ #define __IVsProjectFlavorCfgProvider_FWD_DEFINED__ typedef interface IVsProjectFlavorCfgProvider IVsProjectFlavorCfgProvider; #endif /* __IVsProjectFlavorCfgProvider_FWD_DEFINED__ */ #ifndef __IVsProjectFlavorReferences_FWD_DEFINED__ #define __IVsProjectFlavorReferences_FWD_DEFINED__ typedef interface IVsProjectFlavorReferences IVsProjectFlavorReferences; #endif /* __IVsProjectFlavorReferences_FWD_DEFINED__ */ #ifndef __IVsFilterKeys2_FWD_DEFINED__ #define __IVsFilterKeys2_FWD_DEFINED__ typedef interface IVsFilterKeys2 IVsFilterKeys2; #endif /* __IVsFilterKeys2_FWD_DEFINED__ */ #ifndef __IVsSettingsReader_FWD_DEFINED__ #define __IVsSettingsReader_FWD_DEFINED__ typedef interface IVsSettingsReader IVsSettingsReader; #endif /* __IVsSettingsReader_FWD_DEFINED__ */ #ifndef __IVsSettingsWriter_FWD_DEFINED__ #define __IVsSettingsWriter_FWD_DEFINED__ typedef interface IVsSettingsWriter IVsSettingsWriter; #endif /* __IVsSettingsWriter_FWD_DEFINED__ */ #ifndef __IVsUserSettings_FWD_DEFINED__ #define __IVsUserSettings_FWD_DEFINED__ typedef interface IVsUserSettings IVsUserSettings; #endif /* __IVsUserSettings_FWD_DEFINED__ */ #ifndef __SVsSettingsReader_FWD_DEFINED__ #define __SVsSettingsReader_FWD_DEFINED__ typedef interface SVsSettingsReader SVsSettingsReader; #endif /* __SVsSettingsReader_FWD_DEFINED__ */ #ifndef __IVsUserSettingsQuery_FWD_DEFINED__ #define __IVsUserSettingsQuery_FWD_DEFINED__ typedef interface IVsUserSettingsQuery IVsUserSettingsQuery; #endif /* __IVsUserSettingsQuery_FWD_DEFINED__ */ #ifndef __IVsProfileSettingsFileInfo_FWD_DEFINED__ #define __IVsProfileSettingsFileInfo_FWD_DEFINED__ typedef interface IVsProfileSettingsFileInfo IVsProfileSettingsFileInfo; #endif /* __IVsProfileSettingsFileInfo_FWD_DEFINED__ */ #ifndef __IVsProfileSettingsFileCollection_FWD_DEFINED__ #define __IVsProfileSettingsFileCollection_FWD_DEFINED__ typedef interface IVsProfileSettingsFileCollection IVsProfileSettingsFileCollection; #endif /* __IVsProfileSettingsFileCollection_FWD_DEFINED__ */ #ifndef __IVsProfileSettingsTree_FWD_DEFINED__ #define __IVsProfileSettingsTree_FWD_DEFINED__ typedef interface IVsProfileSettingsTree IVsProfileSettingsTree; #endif /* __IVsProfileSettingsTree_FWD_DEFINED__ */ #ifndef __IVsSettingsErrorInformation_FWD_DEFINED__ #define __IVsSettingsErrorInformation_FWD_DEFINED__ typedef interface IVsSettingsErrorInformation IVsSettingsErrorInformation; #endif /* __IVsSettingsErrorInformation_FWD_DEFINED__ */ #ifndef __IVsProfileDataManager_FWD_DEFINED__ #define __IVsProfileDataManager_FWD_DEFINED__ typedef interface IVsProfileDataManager IVsProfileDataManager; #endif /* __IVsProfileDataManager_FWD_DEFINED__ */ #ifndef __SVsProfileDataManager_FWD_DEFINED__ #define __SVsProfileDataManager_FWD_DEFINED__ typedef interface SVsProfileDataManager SVsProfileDataManager; #endif /* __SVsProfileDataManager_FWD_DEFINED__ */ #ifndef __IVsDeferredSaveProject_FWD_DEFINED__ #define __IVsDeferredSaveProject_FWD_DEFINED__ typedef interface IVsDeferredSaveProject IVsDeferredSaveProject; #endif /* __IVsDeferredSaveProject_FWD_DEFINED__ */ #ifndef __IVsBrowseProjectLocation_FWD_DEFINED__ #define __IVsBrowseProjectLocation_FWD_DEFINED__ typedef interface IVsBrowseProjectLocation IVsBrowseProjectLocation; #endif /* __IVsBrowseProjectLocation_FWD_DEFINED__ */ #ifndef __IVsSolution3_FWD_DEFINED__ #define __IVsSolution3_FWD_DEFINED__ typedef interface IVsSolution3 IVsSolution3; #endif /* __IVsSolution3_FWD_DEFINED__ */ #ifndef __IVsConfigurationManagerDlg_FWD_DEFINED__ #define __IVsConfigurationManagerDlg_FWD_DEFINED__ typedef interface IVsConfigurationManagerDlg IVsConfigurationManagerDlg; #endif /* __IVsConfigurationManagerDlg_FWD_DEFINED__ */ #ifndef __SVsConfigurationManagerDlg_FWD_DEFINED__ #define __SVsConfigurationManagerDlg_FWD_DEFINED__ typedef interface SVsConfigurationManagerDlg SVsConfigurationManagerDlg; #endif /* __SVsConfigurationManagerDlg_FWD_DEFINED__ */ #ifndef __IVsUpdateSolutionEvents3_FWD_DEFINED__ #define __IVsUpdateSolutionEvents3_FWD_DEFINED__ typedef interface IVsUpdateSolutionEvents3 IVsUpdateSolutionEvents3; #endif /* __IVsUpdateSolutionEvents3_FWD_DEFINED__ */ #ifndef __IVsSolutionBuildManager3_FWD_DEFINED__ #define __IVsSolutionBuildManager3_FWD_DEFINED__ typedef interface IVsSolutionBuildManager3 IVsSolutionBuildManager3; #endif /* __IVsSolutionBuildManager3_FWD_DEFINED__ */ #ifndef __IVsSingleFileGeneratorFactory_FWD_DEFINED__ #define __IVsSingleFileGeneratorFactory_FWD_DEFINED__ typedef interface IVsSingleFileGeneratorFactory IVsSingleFileGeneratorFactory; #endif /* __IVsSingleFileGeneratorFactory_FWD_DEFINED__ */ #ifndef __IVsStartPageDownload_FWD_DEFINED__ #define __IVsStartPageDownload_FWD_DEFINED__ typedef interface IVsStartPageDownload IVsStartPageDownload; #endif /* __IVsStartPageDownload_FWD_DEFINED__ */ #ifndef __SVsStartPageDownload_FWD_DEFINED__ #define __SVsStartPageDownload_FWD_DEFINED__ typedef interface SVsStartPageDownload SVsStartPageDownload; #endif /* __SVsStartPageDownload_FWD_DEFINED__ */ #ifndef __IVsMenuEditorTransactionEvents_FWD_DEFINED__ #define __IVsMenuEditorTransactionEvents_FWD_DEFINED__ typedef interface IVsMenuEditorTransactionEvents IVsMenuEditorTransactionEvents; #endif /* __IVsMenuEditorTransactionEvents_FWD_DEFINED__ */ #ifndef __IVsThreadedWaitDialog_FWD_DEFINED__ #define __IVsThreadedWaitDialog_FWD_DEFINED__ typedef interface IVsThreadedWaitDialog IVsThreadedWaitDialog; #endif /* __IVsThreadedWaitDialog_FWD_DEFINED__ */ #ifndef __SVsThreadedWaitDialog_FWD_DEFINED__ #define __SVsThreadedWaitDialog_FWD_DEFINED__ typedef interface SVsThreadedWaitDialog SVsThreadedWaitDialog; #endif /* __SVsThreadedWaitDialog_FWD_DEFINED__ */ #ifndef __IVsProfilesManagerUI_FWD_DEFINED__ #define __IVsProfilesManagerUI_FWD_DEFINED__ typedef interface IVsProfilesManagerUI IVsProfilesManagerUI; #endif /* __IVsProfilesManagerUI_FWD_DEFINED__ */ #ifndef __SVsProfilesManagerUI_FWD_DEFINED__ #define __SVsProfilesManagerUI_FWD_DEFINED__ typedef interface SVsProfilesManagerUI SVsProfilesManagerUI; #endif /* __SVsProfilesManagerUI_FWD_DEFINED__ */ #ifndef __IVsXMLMemberDataCallBack_FWD_DEFINED__ #define __IVsXMLMemberDataCallBack_FWD_DEFINED__ typedef interface IVsXMLMemberDataCallBack IVsXMLMemberDataCallBack; #endif /* __IVsXMLMemberDataCallBack_FWD_DEFINED__ */ #ifndef __IVsXMLMemberDataRegisterCallBack_FWD_DEFINED__ #define __IVsXMLMemberDataRegisterCallBack_FWD_DEFINED__ typedef interface IVsXMLMemberDataRegisterCallBack IVsXMLMemberDataRegisterCallBack; #endif /* __IVsXMLMemberDataRegisterCallBack_FWD_DEFINED__ */ #ifndef __IVsXMLMemberData3_FWD_DEFINED__ #define __IVsXMLMemberData3_FWD_DEFINED__ typedef interface IVsXMLMemberData3 IVsXMLMemberData3; #endif /* __IVsXMLMemberData3_FWD_DEFINED__ */ #ifndef __IVsNavInfoNode_FWD_DEFINED__ #define __IVsNavInfoNode_FWD_DEFINED__ typedef interface IVsNavInfoNode IVsNavInfoNode; #endif /* __IVsNavInfoNode_FWD_DEFINED__ */ #ifndef __IVsEnumNavInfoNodes_FWD_DEFINED__ #define __IVsEnumNavInfoNodes_FWD_DEFINED__ typedef interface IVsEnumNavInfoNodes IVsEnumNavInfoNodes; #endif /* __IVsEnumNavInfoNodes_FWD_DEFINED__ */ #ifndef __IVsNavInfo_FWD_DEFINED__ #define __IVsNavInfo_FWD_DEFINED__ typedef interface IVsNavInfo IVsNavInfo; #endif /* __IVsNavInfo_FWD_DEFINED__ */ #ifndef __IVsObjectBrowserDescription3_FWD_DEFINED__ #define __IVsObjectBrowserDescription3_FWD_DEFINED__ typedef interface IVsObjectBrowserDescription3 IVsObjectBrowserDescription3; #endif /* __IVsObjectBrowserDescription3_FWD_DEFINED__ */ #ifndef __IVsObjectList2_FWD_DEFINED__ #define __IVsObjectList2_FWD_DEFINED__ typedef interface IVsObjectList2 IVsObjectList2; #endif /* __IVsObjectList2_FWD_DEFINED__ */ #ifndef __IVsSimpleObjectList2_FWD_DEFINED__ #define __IVsSimpleObjectList2_FWD_DEFINED__ typedef interface IVsSimpleObjectList2 IVsSimpleObjectList2; #endif /* __IVsSimpleObjectList2_FWD_DEFINED__ */ #ifndef __IVsBrowseContainersList_FWD_DEFINED__ #define __IVsBrowseContainersList_FWD_DEFINED__ typedef interface IVsBrowseContainersList IVsBrowseContainersList; #endif /* __IVsBrowseContainersList_FWD_DEFINED__ */ #ifndef __IVsLibrary2_FWD_DEFINED__ #define __IVsLibrary2_FWD_DEFINED__ typedef interface IVsLibrary2 IVsLibrary2; #endif /* __IVsLibrary2_FWD_DEFINED__ */ #ifndef __IVsSimpleLibrary2_FWD_DEFINED__ #define __IVsSimpleLibrary2_FWD_DEFINED__ typedef interface IVsSimpleLibrary2 IVsSimpleLibrary2; #endif /* __IVsSimpleLibrary2_FWD_DEFINED__ */ #ifndef __IVsLibrary2Ex_FWD_DEFINED__ #define __IVsLibrary2Ex_FWD_DEFINED__ typedef interface IVsLibrary2Ex IVsLibrary2Ex; #endif /* __IVsLibrary2Ex_FWD_DEFINED__ */ #ifndef __IVsEnumLibraries2_FWD_DEFINED__ #define __IVsEnumLibraries2_FWD_DEFINED__ typedef interface IVsEnumLibraries2 IVsEnumLibraries2; #endif /* __IVsEnumLibraries2_FWD_DEFINED__ */ #ifndef __IVsObjectManager2_FWD_DEFINED__ #define __IVsObjectManager2_FWD_DEFINED__ typedef interface IVsObjectManager2 IVsObjectManager2; #endif /* __IVsObjectManager2_FWD_DEFINED__ */ #ifndef __IVsBrowseComponentSet_FWD_DEFINED__ #define __IVsBrowseComponentSet_FWD_DEFINED__ typedef interface IVsBrowseComponentSet IVsBrowseComponentSet; #endif /* __IVsBrowseComponentSet_FWD_DEFINED__ */ #ifndef __IVsSimpleBrowseComponentSet_FWD_DEFINED__ #define __IVsSimpleBrowseComponentSet_FWD_DEFINED__ typedef interface IVsSimpleBrowseComponentSet IVsSimpleBrowseComponentSet; #endif /* __IVsSimpleBrowseComponentSet_FWD_DEFINED__ */ #ifndef __IVsCombinedBrowseComponentSet_FWD_DEFINED__ #define __IVsCombinedBrowseComponentSet_FWD_DEFINED__ typedef interface IVsCombinedBrowseComponentSet IVsCombinedBrowseComponentSet; #endif /* __IVsCombinedBrowseComponentSet_FWD_DEFINED__ */ #ifndef __IVsSelectedSymbol_FWD_DEFINED__ #define __IVsSelectedSymbol_FWD_DEFINED__ typedef interface IVsSelectedSymbol IVsSelectedSymbol; #endif /* __IVsSelectedSymbol_FWD_DEFINED__ */ #ifndef __IVsEnumSelectedSymbols_FWD_DEFINED__ #define __IVsEnumSelectedSymbols_FWD_DEFINED__ typedef interface IVsEnumSelectedSymbols IVsEnumSelectedSymbols; #endif /* __IVsEnumSelectedSymbols_FWD_DEFINED__ */ #ifndef __IVsSelectedSymbols_FWD_DEFINED__ #define __IVsSelectedSymbols_FWD_DEFINED__ typedef interface IVsSelectedSymbols IVsSelectedSymbols; #endif /* __IVsSelectedSymbols_FWD_DEFINED__ */ #ifndef __IVsNavigationTool_FWD_DEFINED__ #define __IVsNavigationTool_FWD_DEFINED__ typedef interface IVsNavigationTool IVsNavigationTool; #endif /* __IVsNavigationTool_FWD_DEFINED__ */ #ifndef __IVsFindSymbol_FWD_DEFINED__ #define __IVsFindSymbol_FWD_DEFINED__ typedef interface IVsFindSymbol IVsFindSymbol; #endif /* __IVsFindSymbol_FWD_DEFINED__ */ #ifndef __IVsFindSymbolEvents_FWD_DEFINED__ #define __IVsFindSymbolEvents_FWD_DEFINED__ typedef interface IVsFindSymbolEvents IVsFindSymbolEvents; #endif /* __IVsFindSymbolEvents_FWD_DEFINED__ */ #ifndef __IVsCallBrowser_FWD_DEFINED__ #define __IVsCallBrowser_FWD_DEFINED__ typedef interface IVsCallBrowser IVsCallBrowser; #endif /* __IVsCallBrowser_FWD_DEFINED__ */ #ifndef __SVsCallBrowser_FWD_DEFINED__ #define __SVsCallBrowser_FWD_DEFINED__ typedef interface SVsCallBrowser SVsCallBrowser; #endif /* __SVsCallBrowser_FWD_DEFINED__ */ #ifndef __IVsComponentSelectorDlg2_FWD_DEFINED__ #define __IVsComponentSelectorDlg2_FWD_DEFINED__ typedef interface IVsComponentSelectorDlg2 IVsComponentSelectorDlg2; #endif /* __IVsComponentSelectorDlg2_FWD_DEFINED__ */ #ifndef __SVsComponentSelectorDlg2_FWD_DEFINED__ #define __SVsComponentSelectorDlg2_FWD_DEFINED__ typedef interface SVsComponentSelectorDlg2 SVsComponentSelectorDlg2; #endif /* __SVsComponentSelectorDlg2_FWD_DEFINED__ */ #ifndef __IVsBuildMacroInfo_FWD_DEFINED__ #define __IVsBuildMacroInfo_FWD_DEFINED__ typedef interface IVsBuildMacroInfo IVsBuildMacroInfo; #endif /* __IVsBuildMacroInfo_FWD_DEFINED__ */ #ifndef __IVsPreviewChangesList_FWD_DEFINED__ #define __IVsPreviewChangesList_FWD_DEFINED__ typedef interface IVsPreviewChangesList IVsPreviewChangesList; #endif /* __IVsPreviewChangesList_FWD_DEFINED__ */ #ifndef __IVsSimplePreviewChangesList_FWD_DEFINED__ #define __IVsSimplePreviewChangesList_FWD_DEFINED__ typedef interface IVsSimplePreviewChangesList IVsSimplePreviewChangesList; #endif /* __IVsSimplePreviewChangesList_FWD_DEFINED__ */ #ifndef __IVsPreviewChangesEngine_FWD_DEFINED__ #define __IVsPreviewChangesEngine_FWD_DEFINED__ typedef interface IVsPreviewChangesEngine IVsPreviewChangesEngine; #endif /* __IVsPreviewChangesEngine_FWD_DEFINED__ */ #ifndef __IVsPreviewChangesService_FWD_DEFINED__ #define __IVsPreviewChangesService_FWD_DEFINED__ typedef interface IVsPreviewChangesService IVsPreviewChangesService; #endif /* __IVsPreviewChangesService_FWD_DEFINED__ */ #ifndef __SVsPreviewChangesService_FWD_DEFINED__ #define __SVsPreviewChangesService_FWD_DEFINED__ typedef interface SVsPreviewChangesService SVsPreviewChangesService; #endif /* __SVsPreviewChangesService_FWD_DEFINED__ */ #ifndef __IVsCodeDefViewContext_FWD_DEFINED__ #define __IVsCodeDefViewContext_FWD_DEFINED__ typedef interface IVsCodeDefViewContext IVsCodeDefViewContext; #endif /* __IVsCodeDefViewContext_FWD_DEFINED__ */ #ifndef __IVsCodeDefView_FWD_DEFINED__ #define __IVsCodeDefView_FWD_DEFINED__ typedef interface IVsCodeDefView IVsCodeDefView; #endif /* __IVsCodeDefView_FWD_DEFINED__ */ #ifndef __IVsSupportCodeDefView_FWD_DEFINED__ #define __IVsSupportCodeDefView_FWD_DEFINED__ typedef interface IVsSupportCodeDefView IVsSupportCodeDefView; #endif /* __IVsSupportCodeDefView_FWD_DEFINED__ */ #ifndef __SVsCodeDefView_FWD_DEFINED__ #define __SVsCodeDefView_FWD_DEFINED__ typedef interface SVsCodeDefView SVsCodeDefView; #endif /* __SVsCodeDefView_FWD_DEFINED__ */ #ifndef __IVsCoTaskMemFreeMyStrings_FWD_DEFINED__ #define __IVsCoTaskMemFreeMyStrings_FWD_DEFINED__ typedef interface IVsCoTaskMemFreeMyStrings IVsCoTaskMemFreeMyStrings; #endif /* __IVsCoTaskMemFreeMyStrings_FWD_DEFINED__ */ #ifndef __IVsRunningDocumentTable2_FWD_DEFINED__ #define __IVsRunningDocumentTable2_FWD_DEFINED__ typedef interface IVsRunningDocumentTable2 IVsRunningDocumentTable2; #endif /* __IVsRunningDocumentTable2_FWD_DEFINED__ */ #ifndef __IVsRunningDocTableEvents4_FWD_DEFINED__ #define __IVsRunningDocTableEvents4_FWD_DEFINED__ typedef interface IVsRunningDocTableEvents4 IVsRunningDocTableEvents4; #endif /* __IVsRunningDocTableEvents4_FWD_DEFINED__ */ #ifndef __IVsToolboxDataProviderRegistry_FWD_DEFINED__ #define __IVsToolboxDataProviderRegistry_FWD_DEFINED__ typedef interface IVsToolboxDataProviderRegistry IVsToolboxDataProviderRegistry; #endif /* __IVsToolboxDataProviderRegistry_FWD_DEFINED__ */ #ifndef __SVsToolboxDataProviderRegistry_FWD_DEFINED__ #define __SVsToolboxDataProviderRegistry_FWD_DEFINED__ typedef interface SVsToolboxDataProviderRegistry SVsToolboxDataProviderRegistry; #endif /* __SVsToolboxDataProviderRegistry_FWD_DEFINED__ */ #ifndef __IVsFontAndColorCacheManager_FWD_DEFINED__ #define __IVsFontAndColorCacheManager_FWD_DEFINED__ typedef interface IVsFontAndColorCacheManager IVsFontAndColorCacheManager; #endif /* __IVsFontAndColorCacheManager_FWD_DEFINED__ */ #ifndef __SVsFontAndColorCacheManager_FWD_DEFINED__ #define __SVsFontAndColorCacheManager_FWD_DEFINED__ typedef interface SVsFontAndColorCacheManager SVsFontAndColorCacheManager; #endif /* __SVsFontAndColorCacheManager_FWD_DEFINED__ */ #ifndef __IVsUpgradeLogger_FWD_DEFINED__ #define __IVsUpgradeLogger_FWD_DEFINED__ typedef interface IVsUpgradeLogger IVsUpgradeLogger; #endif /* __IVsUpgradeLogger_FWD_DEFINED__ */ #ifndef __SVsUpgradeLogger_FWD_DEFINED__ #define __SVsUpgradeLogger_FWD_DEFINED__ typedef interface SVsUpgradeLogger SVsUpgradeLogger; #endif /* __SVsUpgradeLogger_FWD_DEFINED__ */ #ifndef __IVsFileUpgrade_FWD_DEFINED__ #define __IVsFileUpgrade_FWD_DEFINED__ typedef interface IVsFileUpgrade IVsFileUpgrade; #endif /* __IVsFileUpgrade_FWD_DEFINED__ */ #ifndef __IVsProjectUpgradeViaFactory_FWD_DEFINED__ #define __IVsProjectUpgradeViaFactory_FWD_DEFINED__ typedef interface IVsProjectUpgradeViaFactory IVsProjectUpgradeViaFactory; #endif /* __IVsProjectUpgradeViaFactory_FWD_DEFINED__ */ #ifndef __IVsProjectUpgradeViaFactory2_FWD_DEFINED__ #define __IVsProjectUpgradeViaFactory2_FWD_DEFINED__ typedef interface IVsProjectUpgradeViaFactory2 IVsProjectUpgradeViaFactory2; #endif /* __IVsProjectUpgradeViaFactory2_FWD_DEFINED__ */ #ifndef __IVsSolutionEventsProjectUpgrade_FWD_DEFINED__ #define __IVsSolutionEventsProjectUpgrade_FWD_DEFINED__ typedef interface IVsSolutionEventsProjectUpgrade IVsSolutionEventsProjectUpgrade; #endif /* __IVsSolutionEventsProjectUpgrade_FWD_DEFINED__ */ #ifndef __IVsActivityLog_FWD_DEFINED__ #define __IVsActivityLog_FWD_DEFINED__ typedef interface IVsActivityLog IVsActivityLog; #endif /* __IVsActivityLog_FWD_DEFINED__ */ #ifndef __SVsActivityLog_FWD_DEFINED__ #define __SVsActivityLog_FWD_DEFINED__ typedef interface SVsActivityLog SVsActivityLog; #endif /* __SVsActivityLog_FWD_DEFINED__ */ #ifndef __IVsPersistDocData3_FWD_DEFINED__ #define __IVsPersistDocData3_FWD_DEFINED__ typedef interface IVsPersistDocData3 IVsPersistDocData3; #endif /* __IVsPersistDocData3_FWD_DEFINED__ */ #ifndef __IVsWindowFrame2_FWD_DEFINED__ #define __IVsWindowFrame2_FWD_DEFINED__ typedef interface IVsWindowFrame2 IVsWindowFrame2; #endif /* __IVsWindowFrame2_FWD_DEFINED__ */ #ifndef __IVsPropertyPage2_FWD_DEFINED__ #define __IVsPropertyPage2_FWD_DEFINED__ typedef interface IVsPropertyPage2 IVsPropertyPage2; #endif /* __IVsPropertyPage2_FWD_DEFINED__ */ #ifndef __IVsWindowFrameNotify3_FWD_DEFINED__ #define __IVsWindowFrameNotify3_FWD_DEFINED__ typedef interface IVsWindowFrameNotify3 IVsWindowFrameNotify3; #endif /* __IVsWindowFrameNotify3_FWD_DEFINED__ */ #ifndef __IVsPackageDynamicToolOwnerEx_FWD_DEFINED__ #define __IVsPackageDynamicToolOwnerEx_FWD_DEFINED__ typedef interface IVsPackageDynamicToolOwnerEx IVsPackageDynamicToolOwnerEx; #endif /* __IVsPackageDynamicToolOwnerEx_FWD_DEFINED__ */ #ifndef __IVsContextualIntellisenseFilter_FWD_DEFINED__ #define __IVsContextualIntellisenseFilter_FWD_DEFINED__ typedef interface IVsContextualIntellisenseFilter IVsContextualIntellisenseFilter; #endif /* __IVsContextualIntellisenseFilter_FWD_DEFINED__ */ #ifndef __IVsContextualIntellisenseFilterProvider_FWD_DEFINED__ #define __IVsContextualIntellisenseFilterProvider_FWD_DEFINED__ typedef interface IVsContextualIntellisenseFilterProvider IVsContextualIntellisenseFilterProvider; #endif /* __IVsContextualIntellisenseFilterProvider_FWD_DEFINED__ */ #ifndef __IVsToolboxActiveUserHook_FWD_DEFINED__ #define __IVsToolboxActiveUserHook_FWD_DEFINED__ typedef interface IVsToolboxActiveUserHook IVsToolboxActiveUserHook; #endif /* __IVsToolboxActiveUserHook_FWD_DEFINED__ */ #ifndef __IVsDefaultToolboxTabState_FWD_DEFINED__ #define __IVsDefaultToolboxTabState_FWD_DEFINED__ typedef interface IVsDefaultToolboxTabState IVsDefaultToolboxTabState; #endif /* __IVsDefaultToolboxTabState_FWD_DEFINED__ */ #ifndef __IVsPathVariableResolver_FWD_DEFINED__ #define __IVsPathVariableResolver_FWD_DEFINED__ typedef interface IVsPathVariableResolver IVsPathVariableResolver; #endif /* __IVsPathVariableResolver_FWD_DEFINED__ */ #ifndef __SVsPathVariableResolver_FWD_DEFINED__ #define __SVsPathVariableResolver_FWD_DEFINED__ typedef interface SVsPathVariableResolver SVsPathVariableResolver; #endif /* __SVsPathVariableResolver_FWD_DEFINED__ */ #ifndef __IVsProjectFactory2_FWD_DEFINED__ #define __IVsProjectFactory2_FWD_DEFINED__ typedef interface IVsProjectFactory2 IVsProjectFactory2; #endif /* __IVsProjectFactory2_FWD_DEFINED__ */ #ifndef __IVsAsynchOpenFromSccProjectEvents_FWD_DEFINED__ #define __IVsAsynchOpenFromSccProjectEvents_FWD_DEFINED__ typedef interface IVsAsynchOpenFromSccProjectEvents IVsAsynchOpenFromSccProjectEvents; #endif /* __IVsAsynchOpenFromSccProjectEvents_FWD_DEFINED__ */ #ifndef __IVsAsynchOpenFromScc_FWD_DEFINED__ #define __IVsAsynchOpenFromScc_FWD_DEFINED__ typedef interface IVsAsynchOpenFromScc IVsAsynchOpenFromScc; #endif /* __IVsAsynchOpenFromScc_FWD_DEFINED__ */ #ifndef __IVsHierarchyDeleteHandler2_FWD_DEFINED__ #define __IVsHierarchyDeleteHandler2_FWD_DEFINED__ typedef interface IVsHierarchyDeleteHandler2 IVsHierarchyDeleteHandler2; #endif /* __IVsHierarchyDeleteHandler2_FWD_DEFINED__ */ #ifndef __IVsToolbox3_FWD_DEFINED__ #define __IVsToolbox3_FWD_DEFINED__ typedef interface IVsToolbox3 IVsToolbox3; #endif /* __IVsToolbox3_FWD_DEFINED__ */ #ifndef __IVsToolboxDataProvider2_FWD_DEFINED__ #define __IVsToolboxDataProvider2_FWD_DEFINED__ typedef interface IVsToolboxDataProvider2 IVsToolboxDataProvider2; #endif /* __IVsToolboxDataProvider2_FWD_DEFINED__ */ #ifndef __IVsResourceManager_FWD_DEFINED__ #define __IVsResourceManager_FWD_DEFINED__ typedef interface IVsResourceManager IVsResourceManager; #endif /* __IVsResourceManager_FWD_DEFINED__ */ #ifndef __SVsResourceManager_FWD_DEFINED__ #define __SVsResourceManager_FWD_DEFINED__ typedef interface SVsResourceManager SVsResourceManager; #endif /* __SVsResourceManager_FWD_DEFINED__ */ #ifndef __IVsAddNewWebProjectItemDlg_FWD_DEFINED__ #define __IVsAddNewWebProjectItemDlg_FWD_DEFINED__ typedef interface IVsAddNewWebProjectItemDlg IVsAddNewWebProjectItemDlg; #endif /* __IVsAddNewWebProjectItemDlg_FWD_DEFINED__ */ #ifndef __IVsWebProject_FWD_DEFINED__ #define __IVsWebProject_FWD_DEFINED__ typedef interface IVsWebProject IVsWebProject; #endif /* __IVsWebProject_FWD_DEFINED__ */ #ifndef __IVsUIHierarchyWindow2_FWD_DEFINED__ #define __IVsUIHierarchyWindow2_FWD_DEFINED__ typedef interface IVsUIHierarchyWindow2 IVsUIHierarchyWindow2; #endif /* __IVsUIHierarchyWindow2_FWD_DEFINED__ */ #ifndef __IVsProjectDataConnection_FWD_DEFINED__ #define __IVsProjectDataConnection_FWD_DEFINED__ typedef interface IVsProjectDataConnection IVsProjectDataConnection; #endif /* __IVsProjectDataConnection_FWD_DEFINED__ */ #ifndef __IVsTaskList2_FWD_DEFINED__ #define __IVsTaskList2_FWD_DEFINED__ typedef interface IVsTaskList2 IVsTaskList2; #endif /* __IVsTaskList2_FWD_DEFINED__ */ #ifndef __IVsTaskProvider3_FWD_DEFINED__ #define __IVsTaskProvider3_FWD_DEFINED__ typedef interface IVsTaskProvider3 IVsTaskProvider3; #endif /* __IVsTaskProvider3_FWD_DEFINED__ */ #ifndef __IVsTaskItem3_FWD_DEFINED__ #define __IVsTaskItem3_FWD_DEFINED__ typedef interface IVsTaskItem3 IVsTaskItem3; #endif /* __IVsTaskItem3_FWD_DEFINED__ */ #ifndef __IVsErrorList_FWD_DEFINED__ #define __IVsErrorList_FWD_DEFINED__ typedef interface IVsErrorList IVsErrorList; #endif /* __IVsErrorList_FWD_DEFINED__ */ #ifndef __SVsErrorList_FWD_DEFINED__ #define __SVsErrorList_FWD_DEFINED__ typedef interface SVsErrorList SVsErrorList; #endif /* __SVsErrorList_FWD_DEFINED__ */ #ifndef __IVsErrorItem_FWD_DEFINED__ #define __IVsErrorItem_FWD_DEFINED__ typedef interface IVsErrorItem IVsErrorItem; #endif /* __IVsErrorItem_FWD_DEFINED__ */ #ifndef __IVsWindowPaneCommitFilter_FWD_DEFINED__ #define __IVsWindowPaneCommitFilter_FWD_DEFINED__ typedef interface IVsWindowPaneCommitFilter IVsWindowPaneCommitFilter; #endif /* __IVsWindowPaneCommitFilter_FWD_DEFINED__ */ #ifndef __IPreferPropertyPagesWithTreeControl_FWD_DEFINED__ #define __IPreferPropertyPagesWithTreeControl_FWD_DEFINED__ typedef interface IPreferPropertyPagesWithTreeControl IPreferPropertyPagesWithTreeControl; #endif /* __IPreferPropertyPagesWithTreeControl_FWD_DEFINED__ */ #ifndef __IVsSpecifyProjectDesignerPages_FWD_DEFINED__ #define __IVsSpecifyProjectDesignerPages_FWD_DEFINED__ typedef interface IVsSpecifyProjectDesignerPages IVsSpecifyProjectDesignerPages; #endif /* __IVsSpecifyProjectDesignerPages_FWD_DEFINED__ */ #ifndef __IVsDeployDependency2_FWD_DEFINED__ #define __IVsDeployDependency2_FWD_DEFINED__ typedef interface IVsDeployDependency2 IVsDeployDependency2; #endif /* __IVsDeployDependency2_FWD_DEFINED__ */ #ifndef __IVsOutputGroup2_FWD_DEFINED__ #define __IVsOutputGroup2_FWD_DEFINED__ typedef interface IVsOutputGroup2 IVsOutputGroup2; #endif /* __IVsOutputGroup2_FWD_DEFINED__ */ #ifndef __IVsFontAndColorUtilities_FWD_DEFINED__ #define __IVsFontAndColorUtilities_FWD_DEFINED__ typedef interface IVsFontAndColorUtilities IVsFontAndColorUtilities; #endif /* __IVsFontAndColorUtilities_FWD_DEFINED__ */ #ifndef __IVsOutputWindow2_FWD_DEFINED__ #define __IVsOutputWindow2_FWD_DEFINED__ typedef interface IVsOutputWindow2 IVsOutputWindow2; #endif /* __IVsOutputWindow2_FWD_DEFINED__ */ #ifndef __IVsDebuggableProjectCfg2_FWD_DEFINED__ #define __IVsDebuggableProjectCfg2_FWD_DEFINED__ typedef interface IVsDebuggableProjectCfg2 IVsDebuggableProjectCfg2; #endif /* __IVsDebuggableProjectCfg2_FWD_DEFINED__ */ #ifndef __IVsProvideUserContext2_FWD_DEFINED__ #define __IVsProvideUserContext2_FWD_DEFINED__ typedef interface IVsProvideUserContext2 IVsProvideUserContext2; #endif /* __IVsProvideUserContext2_FWD_DEFINED__ */ #ifndef __IVsExtensibility3_FWD_DEFINED__ #define __IVsExtensibility3_FWD_DEFINED__ typedef interface IVsExtensibility3 IVsExtensibility3; #endif /* __IVsExtensibility3_FWD_DEFINED__ */ #ifndef __IVsGlobalsCallback2_FWD_DEFINED__ #define __IVsGlobalsCallback2_FWD_DEFINED__ typedef interface IVsGlobalsCallback2 IVsGlobalsCallback2; #endif /* __IVsGlobalsCallback2_FWD_DEFINED__ */ #ifndef __IVsGlobals2_FWD_DEFINED__ #define __IVsGlobals2_FWD_DEFINED__ typedef interface IVsGlobals2 IVsGlobals2; #endif /* __IVsGlobals2_FWD_DEFINED__ */ #ifndef __IVsProfferCommands3_FWD_DEFINED__ #define __IVsProfferCommands3_FWD_DEFINED__ typedef interface IVsProfferCommands3 IVsProfferCommands3; #endif /* __IVsProfferCommands3_FWD_DEFINED__ */ #ifndef __IVsHierarchyRefactorNotify_FWD_DEFINED__ #define __IVsHierarchyRefactorNotify_FWD_DEFINED__ typedef interface IVsHierarchyRefactorNotify IVsHierarchyRefactorNotify; #endif /* __IVsHierarchyRefactorNotify_FWD_DEFINED__ */ #ifndef __IVsRefactorNotify_FWD_DEFINED__ #define __IVsRefactorNotify_FWD_DEFINED__ typedef interface IVsRefactorNotify IVsRefactorNotify; #endif /* __IVsRefactorNotify_FWD_DEFINED__ */ #ifndef __IVsMonitorSelection2_FWD_DEFINED__ #define __IVsMonitorSelection2_FWD_DEFINED__ typedef interface IVsMonitorSelection2 IVsMonitorSelection2; #endif /* __IVsMonitorSelection2_FWD_DEFINED__ */ #ifndef __IVsToolsOptions_FWD_DEFINED__ #define __IVsToolsOptions_FWD_DEFINED__ typedef interface IVsToolsOptions IVsToolsOptions; #endif /* __IVsToolsOptions_FWD_DEFINED__ */ #ifndef __SVsToolsOptions_FWD_DEFINED__ #define __SVsToolsOptions_FWD_DEFINED__ typedef interface SVsToolsOptions SVsToolsOptions; #endif /* __SVsToolsOptions_FWD_DEFINED__ */ #ifndef __IVsDeployableProjectCfg2_FWD_DEFINED__ #define __IVsDeployableProjectCfg2_FWD_DEFINED__ typedef interface IVsDeployableProjectCfg2 IVsDeployableProjectCfg2; #endif /* __IVsDeployableProjectCfg2_FWD_DEFINED__ */ #ifndef __IVsFontAndColorStorage2_FWD_DEFINED__ #define __IVsFontAndColorStorage2_FWD_DEFINED__ typedef interface IVsFontAndColorStorage2 IVsFontAndColorStorage2; #endif /* __IVsFontAndColorStorage2_FWD_DEFINED__ */ #ifndef __IVsDocOutlineProvider2_FWD_DEFINED__ #define __IVsDocOutlineProvider2_FWD_DEFINED__ typedef interface IVsDocOutlineProvider2 IVsDocOutlineProvider2; #endif /* __IVsDocOutlineProvider2_FWD_DEFINED__ */ #ifndef __IVSMDTypeResolutionService_FWD_DEFINED__ #define __IVSMDTypeResolutionService_FWD_DEFINED__ typedef interface IVSMDTypeResolutionService IVSMDTypeResolutionService; #endif /* __IVSMDTypeResolutionService_FWD_DEFINED__ */ #ifndef __IVsUIShellOpenDocument2_FWD_DEFINED__ #define __IVsUIShellOpenDocument2_FWD_DEFINED__ typedef interface IVsUIShellOpenDocument2 IVsUIShellOpenDocument2; #endif /* __IVsUIShellOpenDocument2_FWD_DEFINED__ */ #ifndef __IVsFilterNewProjectDlg_FWD_DEFINED__ #define __IVsFilterNewProjectDlg_FWD_DEFINED__ typedef interface IVsFilterNewProjectDlg IVsFilterNewProjectDlg; #endif /* __IVsFilterNewProjectDlg_FWD_DEFINED__ */ #ifndef __IVsRegisterNewDialogFilters_FWD_DEFINED__ #define __IVsRegisterNewDialogFilters_FWD_DEFINED__ typedef interface IVsRegisterNewDialogFilters IVsRegisterNewDialogFilters; #endif /* __IVsRegisterNewDialogFilters_FWD_DEFINED__ */ #ifndef __SVsRegisterNewDialogFilters_FWD_DEFINED__ #define __SVsRegisterNewDialogFilters_FWD_DEFINED__ typedef interface SVsRegisterNewDialogFilters SVsRegisterNewDialogFilters; #endif /* __SVsRegisterNewDialogFilters_FWD_DEFINED__ */ #ifndef __IVsWebBrowserUser2_FWD_DEFINED__ #define __IVsWebBrowserUser2_FWD_DEFINED__ typedef interface IVsWebBrowserUser2 IVsWebBrowserUser2; #endif /* __IVsWebBrowserUser2_FWD_DEFINED__ */ #ifndef __IVsHasRelatedSaveItems_FWD_DEFINED__ #define __IVsHasRelatedSaveItems_FWD_DEFINED__ typedef interface IVsHasRelatedSaveItems IVsHasRelatedSaveItems; #endif /* __IVsHasRelatedSaveItems_FWD_DEFINED__ */ /* header files for imported files */ #include "oaidl.h" #include "vsshell.h" #include "vsshell2.h" #ifdef __cplusplus extern "C"{ #endif /* interface __MIDL_itf_vsshell80_0000_0000 */ /* [local] */ #if 0 typedef DWORD_PTR DLGPROC; typedef DWORD_PTR LPFNPSPCALLBACKA; typedef DWORD_PTR HINSTANCE; #endif #include <prsht.h> #pragma once #pragma once #pragma region Input Buffer SAL 1 compatibility macros #pragma endregion Input Buffer SAL 1 compatibility macros #pragma once #pragma once #pragma once enum VSErrorCodes80 { VS_E_MIGRATIONREQUIRESRELOAD = ( HRESULT )(( ( ( ( unsigned long )1 << 31 ) | ( ( unsigned long )4 << 16 ) ) | ( unsigned long )0x1fe6 ) ), VS_E_SYNCHRONOUSOPENREQUIRED = ( HRESULT )(( ( ( ( unsigned long )1 << 31 ) | ( ( unsigned long )4 << 16 ) ) | ( unsigned long )0x1fe7 ) ), VS_E_VSSETTINGS_INVALIDVERSION = ( HRESULT )(( ( ( ( unsigned long )1 << 31 ) | ( ( unsigned long )4 << 16 ) ) | ( unsigned long )0x1fe8 ) ), VS_E_DOCUMENTOPENNOTTRUSTED = ( HRESULT )(( ( ( ( unsigned long )1 << 31 ) | ( ( unsigned long )4 << 16 ) ) | ( unsigned long )0x1fe9 ) ) } ; enum __VSFORMATINDEX { VSFORMATINDEX_UTF8 = 0, VSFORMATINDEX_MBCS = 1, VSFORMATINDEX_UNICODE = 2 } ; typedef ULONG VSFORMATINDEX; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0000_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0000_v0_0_s_ifspec; #ifndef __IVsProjectDebugTargetProvider_INTERFACE_DEFINED__ #define __IVsProjectDebugTargetProvider_INTERFACE_DEFINED__ /* interface IVsProjectDebugTargetProvider */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsProjectDebugTargetProvider; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("4C5F0CEB-5AC9-4ea4-85E2-72E088EA75A8") IVsProjectDebugTargetProvider : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE SupplyDebugTarget( /* [out] */ __RPC__deref_out_opt BSTR *pbstrTarget, /* [out] */ __RPC__deref_out_opt BSTR *pbstrCommandLine) = 0; }; #else /* C style interface */ typedef struct IVsProjectDebugTargetProviderVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsProjectDebugTargetProvider * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsProjectDebugTargetProvider * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsProjectDebugTargetProvider * This); HRESULT ( STDMETHODCALLTYPE *SupplyDebugTarget )( __RPC__in IVsProjectDebugTargetProvider * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrTarget, /* [out] */ __RPC__deref_out_opt BSTR *pbstrCommandLine); END_INTERFACE } IVsProjectDebugTargetProviderVtbl; interface IVsProjectDebugTargetProvider { CONST_VTBL struct IVsProjectDebugTargetProviderVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsProjectDebugTargetProvider_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsProjectDebugTargetProvider_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsProjectDebugTargetProvider_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsProjectDebugTargetProvider_SupplyDebugTarget(This,pbstrTarget,pbstrCommandLine) \ ( (This)->lpVtbl -> SupplyDebugTarget(This,pbstrTarget,pbstrCommandLine) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsProjectDebugTargetProvider_INTERFACE_DEFINED__ */ #ifndef __IVsRegisterProjectDebugTargetProvider_INTERFACE_DEFINED__ #define __IVsRegisterProjectDebugTargetProvider_INTERFACE_DEFINED__ /* interface IVsRegisterProjectDebugTargetProvider */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsRegisterProjectDebugTargetProvider; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("4C5F0CEA-5AC9-4ea4-85E2-72E088EA75A8") IVsRegisterProjectDebugTargetProvider : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE AddDebugTargetProvider( /* [in] */ __RPC__in_opt IVsProjectDebugTargetProvider *pNewDbgTrgtProvider, /* [out] */ __RPC__deref_out_opt IVsProjectDebugTargetProvider **ppNextDbgTrgtProvider) = 0; virtual HRESULT STDMETHODCALLTYPE RemoveDebugTargetProvider( /* [in] */ __RPC__in_opt IVsProjectDebugTargetProvider *pDbgTrgtProvider) = 0; }; #else /* C style interface */ typedef struct IVsRegisterProjectDebugTargetProviderVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsRegisterProjectDebugTargetProvider * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsRegisterProjectDebugTargetProvider * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsRegisterProjectDebugTargetProvider * This); HRESULT ( STDMETHODCALLTYPE *AddDebugTargetProvider )( __RPC__in IVsRegisterProjectDebugTargetProvider * This, /* [in] */ __RPC__in_opt IVsProjectDebugTargetProvider *pNewDbgTrgtProvider, /* [out] */ __RPC__deref_out_opt IVsProjectDebugTargetProvider **ppNextDbgTrgtProvider); HRESULT ( STDMETHODCALLTYPE *RemoveDebugTargetProvider )( __RPC__in IVsRegisterProjectDebugTargetProvider * This, /* [in] */ __RPC__in_opt IVsProjectDebugTargetProvider *pDbgTrgtProvider); END_INTERFACE } IVsRegisterProjectDebugTargetProviderVtbl; interface IVsRegisterProjectDebugTargetProvider { CONST_VTBL struct IVsRegisterProjectDebugTargetProviderVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsRegisterProjectDebugTargetProvider_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsRegisterProjectDebugTargetProvider_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsRegisterProjectDebugTargetProvider_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsRegisterProjectDebugTargetProvider_AddDebugTargetProvider(This,pNewDbgTrgtProvider,ppNextDbgTrgtProvider) \ ( (This)->lpVtbl -> AddDebugTargetProvider(This,pNewDbgTrgtProvider,ppNextDbgTrgtProvider) ) #define IVsRegisterProjectDebugTargetProvider_RemoveDebugTargetProvider(This,pDbgTrgtProvider) \ ( (This)->lpVtbl -> RemoveDebugTargetProvider(This,pDbgTrgtProvider) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsRegisterProjectDebugTargetProvider_INTERFACE_DEFINED__ */ #ifndef __SVsRegisterDebugTargetProvider_INTERFACE_DEFINED__ #define __SVsRegisterDebugTargetProvider_INTERFACE_DEFINED__ /* interface SVsRegisterDebugTargetProvider */ /* [object][uuid] */ EXTERN_C const IID IID_SVsRegisterDebugTargetProvider; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("6B25ED7D-E462-4bba-B181-81D9F73FCD72") SVsRegisterDebugTargetProvider : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsRegisterDebugTargetProviderVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsRegisterDebugTargetProvider * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsRegisterDebugTargetProvider * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsRegisterDebugTargetProvider * This); END_INTERFACE } SVsRegisterDebugTargetProviderVtbl; interface SVsRegisterDebugTargetProvider { CONST_VTBL struct SVsRegisterDebugTargetProviderVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsRegisterDebugTargetProvider_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsRegisterDebugTargetProvider_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsRegisterDebugTargetProvider_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsRegisterDebugTargetProvider_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0003 */ /* [local] */ #define SID_SVsRegisterDebugTargetProvider IID_SVsRegisterDebugTargetProvider extern const __declspec(selectany) GUID GUID_BookmarkWindow = { 0xa0c5197d, 0xac7, 0x4b63, { 0x97, 0xcd, 0x88, 0x72, 0xa7, 0x89, 0xd2, 0x33 } }; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0003_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0003_v0_0_s_ifspec; #ifndef __IVsBrowseObject_INTERFACE_DEFINED__ #define __IVsBrowseObject_INTERFACE_DEFINED__ /* interface IVsBrowseObject */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsBrowseObject; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("bc5b644e-7fd7-4a75-98cc-0c2c98aa96f6") IVsBrowseObject : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetProjectItem( /* [out] */ __RPC__deref_out_opt IVsHierarchy **pHier, /* [out] */ __RPC__out VSITEMID *pItemid) = 0; }; #else /* C style interface */ typedef struct IVsBrowseObjectVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsBrowseObject * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsBrowseObject * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsBrowseObject * This); HRESULT ( STDMETHODCALLTYPE *GetProjectItem )( __RPC__in IVsBrowseObject * This, /* [out] */ __RPC__deref_out_opt IVsHierarchy **pHier, /* [out] */ __RPC__out VSITEMID *pItemid); END_INTERFACE } IVsBrowseObjectVtbl; interface IVsBrowseObject { CONST_VTBL struct IVsBrowseObjectVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsBrowseObject_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsBrowseObject_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsBrowseObject_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsBrowseObject_GetProjectItem(This,pHier,pItemid) \ ( (This)->lpVtbl -> GetProjectItem(This,pHier,pItemid) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsBrowseObject_INTERFACE_DEFINED__ */ #ifndef __IVsCfgBrowseObject_INTERFACE_DEFINED__ #define __IVsCfgBrowseObject_INTERFACE_DEFINED__ /* interface IVsCfgBrowseObject */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsCfgBrowseObject; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("a630cff5-eb22-40b7-9464-5f8d4b98b1cb") IVsCfgBrowseObject : public IVsBrowseObject { public: virtual HRESULT STDMETHODCALLTYPE GetCfg( /* [out] */ __RPC__deref_out_opt IVsCfg **ppCfg) = 0; }; #else /* C style interface */ typedef struct IVsCfgBrowseObjectVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsCfgBrowseObject * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsCfgBrowseObject * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsCfgBrowseObject * This); HRESULT ( STDMETHODCALLTYPE *GetProjectItem )( __RPC__in IVsCfgBrowseObject * This, /* [out] */ __RPC__deref_out_opt IVsHierarchy **pHier, /* [out] */ __RPC__out VSITEMID *pItemid); HRESULT ( STDMETHODCALLTYPE *GetCfg )( __RPC__in IVsCfgBrowseObject * This, /* [out] */ __RPC__deref_out_opt IVsCfg **ppCfg); END_INTERFACE } IVsCfgBrowseObjectVtbl; interface IVsCfgBrowseObject { CONST_VTBL struct IVsCfgBrowseObjectVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsCfgBrowseObject_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsCfgBrowseObject_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsCfgBrowseObject_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsCfgBrowseObject_GetProjectItem(This,pHier,pItemid) \ ( (This)->lpVtbl -> GetProjectItem(This,pHier,pItemid) ) #define IVsCfgBrowseObject_GetCfg(This,ppCfg) \ ( (This)->lpVtbl -> GetCfg(This,ppCfg) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsCfgBrowseObject_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0005 */ /* [local] */ extern const __declspec(selectany) CLSID CLSID_SolutionFolderProject = { 0x2150e333, 0x8fdc, 0x42a3, { 0x94, 0x74, 0x1a, 0x39, 0x56, 0xd4, 0x6d, 0xe8 } }; enum __VSHPROPID2 { VSHPROPID_PropertyPagesCLSIDList = -2065, VSHPROPID_CfgPropertyPagesCLSIDList = -2066, VSHPROPID_ExtObjectCATID = -2067, VSHPROPID_BrowseObjectCATID = -2068, VSHPROPID_CfgBrowseObjectCATID = -2069, VSHPROPID_AddItemTemplatesGuid = -2070, VSHPROPID_ChildrenEnumerated = -2071, VSHPROPID_StatusBarClientText = -2072, VSHPROPID_DebuggeeProcessId = -2073, VSHPROPID_IsLinkFile = -2074, VSHPROPID_KeepAliveDocument = -2075, VSHPROPID_SupportsProjectDesigner = -2076, VSHPROPID_IntellisenseUnknown = -2077, VSHPROPID_IsUpgradeRequired = -2078, VSHPROPID_DesignerHiddenCodeGeneration = -2079, VSHPROPID_SuppressOutOfDateMessageOnBuild = -2080, VSHPROPID_Container = -2081, VSHPROPID_UseInnerHierarchyIconList = -2082, VSHPROPID_EnableDataSourceWindow = -2083, VSHPROPID_AppTitleBarTopHierarchyName = -2084, VSHPROPID_DebuggerSourcePaths = -2085, VSHPROPID_CategoryGuid = -2086, VSHPROPID_DisableApplicationSettings = -2087, VSHPROPID_ProjectDesignerEditor = -2088, VSHPROPID_PriorityPropertyPagesCLSIDList = -2089, VSHPROPID_NoDefaultNestedHierSorting = -2090, VSHPROPID_ExcludeFromExportItemTemplate = -2091, VSHPROPID_SupportedMyApplicationTypes = -2092, VSHPROPID_FIRST2 = -2092 } ; typedef /* [public] */ DWORD VSHPROPID2; enum __VSDESIGNER_HIDDENCODEGENERATION { VSDHCG_Declarations = 1, VSDHCG_InitMethods = 2, VSDHCG_EventMethods = 4 } ; enum _ProjectLoadSecurityDialogState { PLSDS_ShowAgain = 1, PLSDS_DontShowAgainBrowse = 2, PLSDS_DontShowAgainFullLoad = 3, PLSDS_DontShowAgainUnload = 4 } ; typedef DWORD ProjectLoadSecurityDialogState; enum __VSPROPID2 { VSPROPID_IsSolutionNodeHidden = -8017, VSPROPID_DeferredSaveSolution = -8018, VSPROPID_SimplifiedConfigurations = -8019, VSPROPID_IsSolutionClosing = -8020, VSPROPID_IsAProjectClosing = -8021, VSPROPID_IsSolutionOpeningDocs = -8022, VSPROPID_IsOpenNotificationPending = -8023, VSPROPID_ProjectLoadSecurityDialogState = -8024, VSPROPID_SolutionUserFileCreatedOnThisComputer = -8025, VSPROPID_NewProjectDlgPreferredLanguage = -8026, VSPROPID_FIRST2 = -8026 } ; typedef /* [public] */ DWORD VSPROPID2; enum __VSCFGPROPID2 { VSCFGPROPID_HideConfigurations = -16009, VSCFGPROPID_FIRST2 = -16009 } ; typedef LONG VSCFGPROPID2; enum __VSCREATEPROJFLAGS2 { CPF_DEFERREDSAVE = 0x80, CPF_OPEN_ASYNCHRONOUSLY = 0x100, CPF_OPEN_STANDALONE = 0x200 } ; typedef DWORD VSCREATEPROJFLAGS2; enum __VSCREATESOLUTIONFLAGS2 { CSF_HIDESOLUTIONNODEALWAYS = 0x10, CSF_DEFERREDSAVESOLUTION = 0x20 } ; typedef /* [public] */ DWORD VSCREATESOLUTIONFLAGS2; enum __VSSLNOPENOPTIONS2 { SLNOPENOPT_LoadingAsync = 0x8 } ; typedef DWORD VSSLNOPENOPTIONS2; enum __VSADDITEMFLAGS2 { VSADDITEM_NoUserTemplateFeatures = 0x1000, VSADDITEM_ShowOpenButtonDropDown = 0x40000 } ; typedef DWORD VSADDITEMFLAGS2; enum __VSCREATEEDITORFLAGS2 { CEF_OPENSPECIFIC = 0x10 } ; typedef DWORD VSCREATEEDITORFLAGS2; enum __VSOSEFLAGS2 { OSE_CheckTrustLevelOfWizard = 0x100000 } ; typedef DWORD VSOSEFLAGS2; enum __VSOSPEFLAGS2 { OSPE_CheckTrustLevelOfWizard = 0x100000 } ; typedef DWORD VSOSPEFLAGS2; enum __VSWIZARDTRUSTLEVEL { WTL_Trusted = 1, WTL_Untrusted = 2, WTL_Unspecified = 3 } ; typedef DWORD VSWIZARDTRUSTLEVEL; enum __VSEDITORTRUSTLEVEL { ETL_NeverTrusted = 0, ETL_AlwaysTrusted = 1, ETL_HasUntrustedLogicalViews = 2 } ; typedef DWORD VSEDITORTRUSTLEVEL; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0005_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0005_v0_0_s_ifspec; #ifndef __IVsDetermineWizardTrust_INTERFACE_DEFINED__ #define __IVsDetermineWizardTrust_INTERFACE_DEFINED__ /* interface IVsDetermineWizardTrust */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsDetermineWizardTrust; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("42085C99-3F5B-4b61-9737-592479718CEC") IVsDetermineWizardTrust : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE OnWizardInitiated( /* [in] */ __RPC__in LPCOLESTR pszTemplateFilename, /* [in] */ __RPC__in REFGUID guidProjectType) = 0; virtual HRESULT STDMETHODCALLTYPE OnWizardCompleted( void) = 0; virtual HRESULT STDMETHODCALLTYPE IsWizardRunning( /* [out] */ __RPC__out BOOL *pfWizardRunning) = 0; virtual HRESULT STDMETHODCALLTYPE GetRunningWizardTemplateName( /* [out] */ __RPC__deref_out_opt BSTR *pbstrRunningTemplate) = 0; virtual HRESULT STDMETHODCALLTYPE GetWizardTrustLevel( /* [out] */ __RPC__out VSWIZARDTRUSTLEVEL *pdwWizardTrustLevel) = 0; virtual HRESULT STDMETHODCALLTYPE SetWizardTrustLevel( /* [in] */ VSWIZARDTRUSTLEVEL dwWizardTrustLevel) = 0; }; #else /* C style interface */ typedef struct IVsDetermineWizardTrustVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsDetermineWizardTrust * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsDetermineWizardTrust * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsDetermineWizardTrust * This); HRESULT ( STDMETHODCALLTYPE *OnWizardInitiated )( __RPC__in IVsDetermineWizardTrust * This, /* [in] */ __RPC__in LPCOLESTR pszTemplateFilename, /* [in] */ __RPC__in REFGUID guidProjectType); HRESULT ( STDMETHODCALLTYPE *OnWizardCompleted )( __RPC__in IVsDetermineWizardTrust * This); HRESULT ( STDMETHODCALLTYPE *IsWizardRunning )( __RPC__in IVsDetermineWizardTrust * This, /* [out] */ __RPC__out BOOL *pfWizardRunning); HRESULT ( STDMETHODCALLTYPE *GetRunningWizardTemplateName )( __RPC__in IVsDetermineWizardTrust * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrRunningTemplate); HRESULT ( STDMETHODCALLTYPE *GetWizardTrustLevel )( __RPC__in IVsDetermineWizardTrust * This, /* [out] */ __RPC__out VSWIZARDTRUSTLEVEL *pdwWizardTrustLevel); HRESULT ( STDMETHODCALLTYPE *SetWizardTrustLevel )( __RPC__in IVsDetermineWizardTrust * This, /* [in] */ VSWIZARDTRUSTLEVEL dwWizardTrustLevel); END_INTERFACE } IVsDetermineWizardTrustVtbl; interface IVsDetermineWizardTrust { CONST_VTBL struct IVsDetermineWizardTrustVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsDetermineWizardTrust_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsDetermineWizardTrust_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsDetermineWizardTrust_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsDetermineWizardTrust_OnWizardInitiated(This,pszTemplateFilename,guidProjectType) \ ( (This)->lpVtbl -> OnWizardInitiated(This,pszTemplateFilename,guidProjectType) ) #define IVsDetermineWizardTrust_OnWizardCompleted(This) \ ( (This)->lpVtbl -> OnWizardCompleted(This) ) #define IVsDetermineWizardTrust_IsWizardRunning(This,pfWizardRunning) \ ( (This)->lpVtbl -> IsWizardRunning(This,pfWizardRunning) ) #define IVsDetermineWizardTrust_GetRunningWizardTemplateName(This,pbstrRunningTemplate) \ ( (This)->lpVtbl -> GetRunningWizardTemplateName(This,pbstrRunningTemplate) ) #define IVsDetermineWizardTrust_GetWizardTrustLevel(This,pdwWizardTrustLevel) \ ( (This)->lpVtbl -> GetWizardTrustLevel(This,pdwWizardTrustLevel) ) #define IVsDetermineWizardTrust_SetWizardTrustLevel(This,dwWizardTrustLevel) \ ( (This)->lpVtbl -> SetWizardTrustLevel(This,dwWizardTrustLevel) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsDetermineWizardTrust_INTERFACE_DEFINED__ */ #ifndef __SVsDetermineWizardTrust_INTERFACE_DEFINED__ #define __SVsDetermineWizardTrust_INTERFACE_DEFINED__ /* interface SVsDetermineWizardTrust */ /* [object][uuid] */ EXTERN_C const IID IID_SVsDetermineWizardTrust; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("9A3B199D-2294-4da6-9B43-7A4EAFE31FA0") SVsDetermineWizardTrust : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsDetermineWizardTrustVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsDetermineWizardTrust * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsDetermineWizardTrust * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsDetermineWizardTrust * This); END_INTERFACE } SVsDetermineWizardTrustVtbl; interface SVsDetermineWizardTrust { CONST_VTBL struct SVsDetermineWizardTrustVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsDetermineWizardTrust_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsDetermineWizardTrust_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsDetermineWizardTrust_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsDetermineWizardTrust_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0007 */ /* [local] */ #define SID_SVsDetermineWizardTrust IID_SVsDetermineWizardTrust extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0007_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0007_v0_0_s_ifspec; #ifndef __IVsSolutionEvents4_INTERFACE_DEFINED__ #define __IVsSolutionEvents4_INTERFACE_DEFINED__ /* interface IVsSolutionEvents4 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsSolutionEvents4; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("23EC4D20-54A9-4365-82C8-ABDFBA686ECF") IVsSolutionEvents4 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE OnAfterRenameProject( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy) = 0; virtual HRESULT STDMETHODCALLTYPE OnQueryChangeProjectParent( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [in] */ __RPC__in_opt IVsHierarchy *pNewParentHier, /* [out][in] */ __RPC__inout BOOL *pfCancel) = 0; virtual HRESULT STDMETHODCALLTYPE OnAfterChangeProjectParent( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy) = 0; virtual HRESULT STDMETHODCALLTYPE OnAfterAsynchOpenProject( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [in] */ BOOL fAdded) = 0; }; #else /* C style interface */ typedef struct IVsSolutionEvents4Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsSolutionEvents4 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsSolutionEvents4 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsSolutionEvents4 * This); HRESULT ( STDMETHODCALLTYPE *OnAfterRenameProject )( __RPC__in IVsSolutionEvents4 * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy); HRESULT ( STDMETHODCALLTYPE *OnQueryChangeProjectParent )( __RPC__in IVsSolutionEvents4 * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [in] */ __RPC__in_opt IVsHierarchy *pNewParentHier, /* [out][in] */ __RPC__inout BOOL *pfCancel); HRESULT ( STDMETHODCALLTYPE *OnAfterChangeProjectParent )( __RPC__in IVsSolutionEvents4 * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy); HRESULT ( STDMETHODCALLTYPE *OnAfterAsynchOpenProject )( __RPC__in IVsSolutionEvents4 * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [in] */ BOOL fAdded); END_INTERFACE } IVsSolutionEvents4Vtbl; interface IVsSolutionEvents4 { CONST_VTBL struct IVsSolutionEvents4Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsSolutionEvents4_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsSolutionEvents4_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsSolutionEvents4_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsSolutionEvents4_OnAfterRenameProject(This,pHierarchy) \ ( (This)->lpVtbl -> OnAfterRenameProject(This,pHierarchy) ) #define IVsSolutionEvents4_OnQueryChangeProjectParent(This,pHierarchy,pNewParentHier,pfCancel) \ ( (This)->lpVtbl -> OnQueryChangeProjectParent(This,pHierarchy,pNewParentHier,pfCancel) ) #define IVsSolutionEvents4_OnAfterChangeProjectParent(This,pHierarchy) \ ( (This)->lpVtbl -> OnAfterChangeProjectParent(This,pHierarchy) ) #define IVsSolutionEvents4_OnAfterAsynchOpenProject(This,pHierarchy,fAdded) \ ( (This)->lpVtbl -> OnAfterAsynchOpenProject(This,pHierarchy,fAdded) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsSolutionEvents4_INTERFACE_DEFINED__ */ #ifndef __IVsFireSolutionEvents2_INTERFACE_DEFINED__ #define __IVsFireSolutionEvents2_INTERFACE_DEFINED__ /* interface IVsFireSolutionEvents2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsFireSolutionEvents2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("ED6AAB26-108F-4b4f-A57B-14D20982713D") IVsFireSolutionEvents2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE FireOnAfterRenameProject( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy) = 0; virtual HRESULT STDMETHODCALLTYPE FireOnQueryChangeProjectParent( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [in] */ __RPC__in_opt IVsHierarchy *pNewParentHier) = 0; virtual HRESULT STDMETHODCALLTYPE FireOnAfterChangeProjectParent( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy) = 0; virtual HRESULT STDMETHODCALLTYPE FireOnAfterAsynchOpenProject( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [in] */ BOOL fAdded) = 0; }; #else /* C style interface */ typedef struct IVsFireSolutionEvents2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsFireSolutionEvents2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsFireSolutionEvents2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsFireSolutionEvents2 * This); HRESULT ( STDMETHODCALLTYPE *FireOnAfterRenameProject )( __RPC__in IVsFireSolutionEvents2 * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy); HRESULT ( STDMETHODCALLTYPE *FireOnQueryChangeProjectParent )( __RPC__in IVsFireSolutionEvents2 * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [in] */ __RPC__in_opt IVsHierarchy *pNewParentHier); HRESULT ( STDMETHODCALLTYPE *FireOnAfterChangeProjectParent )( __RPC__in IVsFireSolutionEvents2 * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy); HRESULT ( STDMETHODCALLTYPE *FireOnAfterAsynchOpenProject )( __RPC__in IVsFireSolutionEvents2 * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [in] */ BOOL fAdded); END_INTERFACE } IVsFireSolutionEvents2Vtbl; interface IVsFireSolutionEvents2 { CONST_VTBL struct IVsFireSolutionEvents2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsFireSolutionEvents2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsFireSolutionEvents2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsFireSolutionEvents2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsFireSolutionEvents2_FireOnAfterRenameProject(This,pHierarchy) \ ( (This)->lpVtbl -> FireOnAfterRenameProject(This,pHierarchy) ) #define IVsFireSolutionEvents2_FireOnQueryChangeProjectParent(This,pHierarchy,pNewParentHier) \ ( (This)->lpVtbl -> FireOnQueryChangeProjectParent(This,pHierarchy,pNewParentHier) ) #define IVsFireSolutionEvents2_FireOnAfterChangeProjectParent(This,pHierarchy) \ ( (This)->lpVtbl -> FireOnAfterChangeProjectParent(This,pHierarchy) ) #define IVsFireSolutionEvents2_FireOnAfterAsynchOpenProject(This,pHierarchy,fAdded) \ ( (This)->lpVtbl -> FireOnAfterAsynchOpenProject(This,pHierarchy,fAdded) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsFireSolutionEvents2_INTERFACE_DEFINED__ */ #ifndef __IVsPrioritizedSolutionEvents_INTERFACE_DEFINED__ #define __IVsPrioritizedSolutionEvents_INTERFACE_DEFINED__ /* interface IVsPrioritizedSolutionEvents */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsPrioritizedSolutionEvents; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("925E8559-17DF-494c-87DA-BBEE251702DE") IVsPrioritizedSolutionEvents : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE PrioritizedOnAfterOpenProject( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [in] */ BOOL fAdded) = 0; virtual HRESULT STDMETHODCALLTYPE PrioritizedOnBeforeCloseProject( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [in] */ BOOL fRemoved) = 0; virtual HRESULT STDMETHODCALLTYPE PrioritizedOnAfterLoadProject( /* [in] */ __RPC__in_opt IVsHierarchy *pStubHierarchy, /* [in] */ __RPC__in_opt IVsHierarchy *pRealHierarchy) = 0; virtual HRESULT STDMETHODCALLTYPE PrioritizedOnBeforeUnloadProject( /* [in] */ __RPC__in_opt IVsHierarchy *pRealHierarchy, /* [in] */ __RPC__in_opt IVsHierarchy *pStubHierarchy) = 0; virtual HRESULT STDMETHODCALLTYPE PrioritizedOnAfterOpenSolution( /* [in] */ __RPC__in_opt IUnknown *pUnkReserved, /* [in] */ BOOL fNewSolution) = 0; virtual HRESULT STDMETHODCALLTYPE PrioritizedOnBeforeCloseSolution( /* [in] */ __RPC__in_opt IUnknown *pUnkReserved) = 0; virtual HRESULT STDMETHODCALLTYPE PrioritizedOnAfterCloseSolution( /* [in] */ __RPC__in_opt IUnknown *pUnkReserved) = 0; virtual HRESULT STDMETHODCALLTYPE PrioritizedOnAfterMergeSolution( /* [in] */ __RPC__in_opt IUnknown *pUnkReserved) = 0; virtual HRESULT STDMETHODCALLTYPE PrioritizedOnBeforeOpeningChildren( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy) = 0; virtual HRESULT STDMETHODCALLTYPE PrioritizedOnAfterOpeningChildren( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy) = 0; virtual HRESULT STDMETHODCALLTYPE PrioritizedOnBeforeClosingChildren( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy) = 0; virtual HRESULT STDMETHODCALLTYPE PrioritizedOnAfterClosingChildren( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy) = 0; virtual HRESULT STDMETHODCALLTYPE PrioritizedOnAfterRenameProject( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy) = 0; virtual HRESULT STDMETHODCALLTYPE PrioritizedOnAfterChangeProjectParent( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy) = 0; virtual HRESULT STDMETHODCALLTYPE PrioritizedOnAfterAsynchOpenProject( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [in] */ BOOL fAdded) = 0; }; #else /* C style interface */ typedef struct IVsPrioritizedSolutionEventsVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsPrioritizedSolutionEvents * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsPrioritizedSolutionEvents * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsPrioritizedSolutionEvents * This); HRESULT ( STDMETHODCALLTYPE *PrioritizedOnAfterOpenProject )( __RPC__in IVsPrioritizedSolutionEvents * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [in] */ BOOL fAdded); HRESULT ( STDMETHODCALLTYPE *PrioritizedOnBeforeCloseProject )( __RPC__in IVsPrioritizedSolutionEvents * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [in] */ BOOL fRemoved); HRESULT ( STDMETHODCALLTYPE *PrioritizedOnAfterLoadProject )( __RPC__in IVsPrioritizedSolutionEvents * This, /* [in] */ __RPC__in_opt IVsHierarchy *pStubHierarchy, /* [in] */ __RPC__in_opt IVsHierarchy *pRealHierarchy); HRESULT ( STDMETHODCALLTYPE *PrioritizedOnBeforeUnloadProject )( __RPC__in IVsPrioritizedSolutionEvents * This, /* [in] */ __RPC__in_opt IVsHierarchy *pRealHierarchy, /* [in] */ __RPC__in_opt IVsHierarchy *pStubHierarchy); HRESULT ( STDMETHODCALLTYPE *PrioritizedOnAfterOpenSolution )( __RPC__in IVsPrioritizedSolutionEvents * This, /* [in] */ __RPC__in_opt IUnknown *pUnkReserved, /* [in] */ BOOL fNewSolution); HRESULT ( STDMETHODCALLTYPE *PrioritizedOnBeforeCloseSolution )( __RPC__in IVsPrioritizedSolutionEvents * This, /* [in] */ __RPC__in_opt IUnknown *pUnkReserved); HRESULT ( STDMETHODCALLTYPE *PrioritizedOnAfterCloseSolution )( __RPC__in IVsPrioritizedSolutionEvents * This, /* [in] */ __RPC__in_opt IUnknown *pUnkReserved); HRESULT ( STDMETHODCALLTYPE *PrioritizedOnAfterMergeSolution )( __RPC__in IVsPrioritizedSolutionEvents * This, /* [in] */ __RPC__in_opt IUnknown *pUnkReserved); HRESULT ( STDMETHODCALLTYPE *PrioritizedOnBeforeOpeningChildren )( __RPC__in IVsPrioritizedSolutionEvents * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy); HRESULT ( STDMETHODCALLTYPE *PrioritizedOnAfterOpeningChildren )( __RPC__in IVsPrioritizedSolutionEvents * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy); HRESULT ( STDMETHODCALLTYPE *PrioritizedOnBeforeClosingChildren )( __RPC__in IVsPrioritizedSolutionEvents * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy); HRESULT ( STDMETHODCALLTYPE *PrioritizedOnAfterClosingChildren )( __RPC__in IVsPrioritizedSolutionEvents * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy); HRESULT ( STDMETHODCALLTYPE *PrioritizedOnAfterRenameProject )( __RPC__in IVsPrioritizedSolutionEvents * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy); HRESULT ( STDMETHODCALLTYPE *PrioritizedOnAfterChangeProjectParent )( __RPC__in IVsPrioritizedSolutionEvents * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy); HRESULT ( STDMETHODCALLTYPE *PrioritizedOnAfterAsynchOpenProject )( __RPC__in IVsPrioritizedSolutionEvents * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [in] */ BOOL fAdded); END_INTERFACE } IVsPrioritizedSolutionEventsVtbl; interface IVsPrioritizedSolutionEvents { CONST_VTBL struct IVsPrioritizedSolutionEventsVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsPrioritizedSolutionEvents_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsPrioritizedSolutionEvents_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsPrioritizedSolutionEvents_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsPrioritizedSolutionEvents_PrioritizedOnAfterOpenProject(This,pHierarchy,fAdded) \ ( (This)->lpVtbl -> PrioritizedOnAfterOpenProject(This,pHierarchy,fAdded) ) #define IVsPrioritizedSolutionEvents_PrioritizedOnBeforeCloseProject(This,pHierarchy,fRemoved) \ ( (This)->lpVtbl -> PrioritizedOnBeforeCloseProject(This,pHierarchy,fRemoved) ) #define IVsPrioritizedSolutionEvents_PrioritizedOnAfterLoadProject(This,pStubHierarchy,pRealHierarchy) \ ( (This)->lpVtbl -> PrioritizedOnAfterLoadProject(This,pStubHierarchy,pRealHierarchy) ) #define IVsPrioritizedSolutionEvents_PrioritizedOnBeforeUnloadProject(This,pRealHierarchy,pStubHierarchy) \ ( (This)->lpVtbl -> PrioritizedOnBeforeUnloadProject(This,pRealHierarchy,pStubHierarchy) ) #define IVsPrioritizedSolutionEvents_PrioritizedOnAfterOpenSolution(This,pUnkReserved,fNewSolution) \ ( (This)->lpVtbl -> PrioritizedOnAfterOpenSolution(This,pUnkReserved,fNewSolution) ) #define IVsPrioritizedSolutionEvents_PrioritizedOnBeforeCloseSolution(This,pUnkReserved) \ ( (This)->lpVtbl -> PrioritizedOnBeforeCloseSolution(This,pUnkReserved) ) #define IVsPrioritizedSolutionEvents_PrioritizedOnAfterCloseSolution(This,pUnkReserved) \ ( (This)->lpVtbl -> PrioritizedOnAfterCloseSolution(This,pUnkReserved) ) #define IVsPrioritizedSolutionEvents_PrioritizedOnAfterMergeSolution(This,pUnkReserved) \ ( (This)->lpVtbl -> PrioritizedOnAfterMergeSolution(This,pUnkReserved) ) #define IVsPrioritizedSolutionEvents_PrioritizedOnBeforeOpeningChildren(This,pHierarchy) \ ( (This)->lpVtbl -> PrioritizedOnBeforeOpeningChildren(This,pHierarchy) ) #define IVsPrioritizedSolutionEvents_PrioritizedOnAfterOpeningChildren(This,pHierarchy) \ ( (This)->lpVtbl -> PrioritizedOnAfterOpeningChildren(This,pHierarchy) ) #define IVsPrioritizedSolutionEvents_PrioritizedOnBeforeClosingChildren(This,pHierarchy) \ ( (This)->lpVtbl -> PrioritizedOnBeforeClosingChildren(This,pHierarchy) ) #define IVsPrioritizedSolutionEvents_PrioritizedOnAfterClosingChildren(This,pHierarchy) \ ( (This)->lpVtbl -> PrioritizedOnAfterClosingChildren(This,pHierarchy) ) #define IVsPrioritizedSolutionEvents_PrioritizedOnAfterRenameProject(This,pHierarchy) \ ( (This)->lpVtbl -> PrioritizedOnAfterRenameProject(This,pHierarchy) ) #define IVsPrioritizedSolutionEvents_PrioritizedOnAfterChangeProjectParent(This,pHierarchy) \ ( (This)->lpVtbl -> PrioritizedOnAfterChangeProjectParent(This,pHierarchy) ) #define IVsPrioritizedSolutionEvents_PrioritizedOnAfterAsynchOpenProject(This,pHierarchy,fAdded) \ ( (This)->lpVtbl -> PrioritizedOnAfterAsynchOpenProject(This,pHierarchy,fAdded) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsPrioritizedSolutionEvents_INTERFACE_DEFINED__ */ #ifndef __IVsPersistSolutionProps2_INTERFACE_DEFINED__ #define __IVsPersistSolutionProps2_INTERFACE_DEFINED__ /* interface IVsPersistSolutionProps2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsPersistSolutionProps2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("8D2EC486-8098-4afa-AB94-D270A5EF08CE") IVsPersistSolutionProps2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE OnSolutionLoadFailure( /* [in] */ __RPC__in LPCOLESTR pszKey) = 0; }; #else /* C style interface */ typedef struct IVsPersistSolutionProps2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsPersistSolutionProps2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsPersistSolutionProps2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsPersistSolutionProps2 * This); HRESULT ( STDMETHODCALLTYPE *OnSolutionLoadFailure )( __RPC__in IVsPersistSolutionProps2 * This, /* [in] */ __RPC__in LPCOLESTR pszKey); END_INTERFACE } IVsPersistSolutionProps2Vtbl; interface IVsPersistSolutionProps2 { CONST_VTBL struct IVsPersistSolutionProps2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsPersistSolutionProps2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsPersistSolutionProps2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsPersistSolutionProps2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsPersistSolutionProps2_OnSolutionLoadFailure(This,pszKey) \ ( (This)->lpVtbl -> OnSolutionLoadFailure(This,pszKey) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsPersistSolutionProps2_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0011 */ /* [local] */ enum __VSDIRFLAGS2 { VSDIRFLAG_RequiresNewFolder = 0x10, VSDIRFLAG_SolutionTemplate = 0x40, VSDIRFLAG_DeferredSaveProject = 0x80, VSDIRFLAG_DontShowNameLocInfo = 0x100, VSDIRFLAG_EnableMasterPage = 0x200, VSDIRFLAG_EnableCodeSeparation = 0x400, VSDIRFLAG_EnableLangDropdown = 0x800 } ; typedef DWORD VSDIRFLAGS2; typedef enum __VSFRAMEMODE2 { VSFM_AutoHide = 4 } VSFRAMEMODE2; enum __VSFPROPID2 { VSFPROPID_OverrideDirtyState = -4014, VSFPROPID_OLEDocObjectDocument = -4015, VSFPROPID_ParentHwnd = -4016, VSFPROPID_ParentFrame = -4017, VSFPROPID_ToolWindowDocCookie = -4018 } ; typedef LONG VSFPROPID2; extern const __declspec(selectany) GUID GUID_ImmediateWindow = { 0xecb7191a, 0x597b, 0x41f5, { 0x98, 0x43, 0x03, 0xa4, 0xcf, 0x27, 0x5d, 0xde } }; enum __VSSPROPID2 { VSSPROPID_SccProviderChanged = -9032, VSSPROPID_MainWindowSize = -9033, VSSPROPID_MainWindowPos = -9034, VSSPROPID_IsAcademic = -9035, VSSPROPID_IsAppThemed = -9036, VSSPROPID_VisualStudioDir = -9037, VSSPROPID_VsTemplateUserZipProjectFolder = -9038, VSSPROPID_VsTemplateUserZipItemFolder = -9039, VSSPROPID_InstallRootDir = -9041, VSSPROPID_SolutionExplorerSortingEnabled = -9042, VSSPROPID_BuildOutOfDateProjects = -9043, VSSPROPID_RunAfterBuildErrors = -9044, VSSPROPID_MainWindowVisibility = -9045, VSSPROPID_SKUEdition = -9046, VSSPROPID_SubSKUEdition = -9047, VSSPROPID_WaitingForSecondKeyChord = -9048, VSSPROPID_SqmRegistryRoot = -9049, VSSPROPID_AutohideToolFrame = -9050, VSFPROPID_ToolWindowUsesDocSelection = -9051, VSSPROPID_FIRST2 = -9051 } ; typedef LONG VSSPROPID2; enum __BUILDOUTOFDATEPROJECTS { BUILDOUTOFDATEPROJECTS_YES = 0, BUILDOUTOFDATEPROJECTS_NO = 1, BUILDOUTOFDATEPROJECTS_PROMPT = 2, BUILDOUTOFDATEPROJECTS_MAX = 2 } ; enum __RUNAFTERBUILDERRORS { RUNAFTERBUILDERRORS_YES = 0, RUNAFTERBUILDERRORS_NO = 1, RUNAFTERBUILDERRORS_PROMPT = 2, RUNAFTERBUILDERRORS_MAX = 2 } ; enum __VSDBGLAUNCHFLAGS2 { DBGLAUNCH_MergeEnv = 0x80, DBGLAUNCH_DesignTimeExprEval = 0x100, DBGLAUNCH_StopAtEntryPoint = 0x200, DBGLAUNCH_CannotDebugAlone = 0x400 } ; typedef DWORD VSDBGLAUNCHFLAGS2; enum _DEBUG_LAUNCH_OPERATION2 { DLO_AttachToHostingProcess = 4, DLO_StartDebuggingHostingProcess = 5 } ; typedef DWORD DEBUG_LAUNCH_OPERATION2; enum __PSFFILEID2 { PSFFILEID_WebSettings = -1002, PSFFILEID_AppManifest = -1003, PSFFILEID_AppDesigner = -1004, PSFFILEID_AppSettings = -1005, PSFFILEID_AssemblyResource = -1006, PSFFILEID_AssemblyInfo = -1007, PSFFILEID_FIRST2 = -1007 } ; typedef LONG PSFFILEID2; enum __PSFFLAGS2 { PSFF_CheckoutIfExists = 0x4 } ; typedef DWORD PSFFLAGS2; enum __VSEDT_STYLE { VSEDT_Reserved1 = 0x1 } ; typedef DWORD VSEDT_STYLE; enum __STOP_DEBUGGING_PROCESS_REASON { SDPR_DETACH = 0, SDPR_TERMINATE = 1 } ; typedef DWORD STOP_DEBUGGING_PROCESS_REASON; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0011_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0011_v0_0_s_ifspec; #ifndef __IVsEnhancedDataTip_INTERFACE_DEFINED__ #define __IVsEnhancedDataTip_INTERFACE_DEFINED__ /* interface IVsEnhancedDataTip */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsEnhancedDataTip; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("B8092238-A091-42f1-A945-080B381FBCFC") IVsEnhancedDataTip : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE Show( /* [in] */ __RPC__in HWND hwndOwner, /* [in] */ __RPC__in POINT *pptTopLeft, /* [in] */ __RPC__in RECT *pHotRect) = 0; virtual HRESULT STDMETHODCALLTYPE SetExpression( /* [in] */ __RPC__in BSTR bstrExpression) = 0; virtual HRESULT STDMETHODCALLTYPE GetBaseWindowHandle( /* [out] */ __RPC__deref_out_opt HWND *phwnd) = 0; virtual HRESULT STDMETHODCALLTYPE IsErrorTip( /* [out] */ __RPC__out BOOL *pbIsError) = 0; virtual HRESULT STDMETHODCALLTYPE IsOpen( /* [out] */ __RPC__out BOOL *pbIsOpen) = 0; }; #else /* C style interface */ typedef struct IVsEnhancedDataTipVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsEnhancedDataTip * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsEnhancedDataTip * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsEnhancedDataTip * This); HRESULT ( STDMETHODCALLTYPE *Show )( __RPC__in IVsEnhancedDataTip * This, /* [in] */ __RPC__in HWND hwndOwner, /* [in] */ __RPC__in POINT *pptTopLeft, /* [in] */ __RPC__in RECT *pHotRect); HRESULT ( STDMETHODCALLTYPE *SetExpression )( __RPC__in IVsEnhancedDataTip * This, /* [in] */ __RPC__in BSTR bstrExpression); HRESULT ( STDMETHODCALLTYPE *GetBaseWindowHandle )( __RPC__in IVsEnhancedDataTip * This, /* [out] */ __RPC__deref_out_opt HWND *phwnd); HRESULT ( STDMETHODCALLTYPE *IsErrorTip )( __RPC__in IVsEnhancedDataTip * This, /* [out] */ __RPC__out BOOL *pbIsError); HRESULT ( STDMETHODCALLTYPE *IsOpen )( __RPC__in IVsEnhancedDataTip * This, /* [out] */ __RPC__out BOOL *pbIsOpen); END_INTERFACE } IVsEnhancedDataTipVtbl; interface IVsEnhancedDataTip { CONST_VTBL struct IVsEnhancedDataTipVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsEnhancedDataTip_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsEnhancedDataTip_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsEnhancedDataTip_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsEnhancedDataTip_Show(This,hwndOwner,pptTopLeft,pHotRect) \ ( (This)->lpVtbl -> Show(This,hwndOwner,pptTopLeft,pHotRect) ) #define IVsEnhancedDataTip_SetExpression(This,bstrExpression) \ ( (This)->lpVtbl -> SetExpression(This,bstrExpression) ) #define IVsEnhancedDataTip_GetBaseWindowHandle(This,phwnd) \ ( (This)->lpVtbl -> GetBaseWindowHandle(This,phwnd) ) #define IVsEnhancedDataTip_IsErrorTip(This,pbIsError) \ ( (This)->lpVtbl -> IsErrorTip(This,pbIsError) ) #define IVsEnhancedDataTip_IsOpen(This,pbIsOpen) \ ( (This)->lpVtbl -> IsOpen(This,pbIsOpen) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsEnhancedDataTip_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0012 */ /* [local] */ typedef struct _VsDebugTargetInfo2 { DWORD cbSize; DEBUG_LAUNCH_OPERATION2 dlo; VSDBGLAUNCHFLAGS2 LaunchFlags; BSTR bstrRemoteMachine; BSTR bstrExe; BSTR bstrArg; BSTR bstrCurDir; BSTR bstrEnv; GUID guidLaunchDebugEngine; DWORD dwDebugEngineCount; /* [size_is] */ GUID *pDebugEngines; GUID guidPortSupplier; BSTR bstrPortName; BSTR bstrOptions; DWORD_PTR hStdInput; DWORD_PTR hStdOutput; DWORD_PTR hStdError; BOOL fSendToOutputWindow; DWORD dwProcessId; IUnknown *pUnknown; GUID guidProcessLanguage; DWORD dwReserved; } VsDebugTargetInfo2; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0012_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0012_v0_0_s_ifspec; #ifndef __IVsDebugger2_INTERFACE_DEFINED__ #define __IVsDebugger2_INTERFACE_DEFINED__ /* interface IVsDebugger2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsDebugger2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("B33300FB-FEFE-4E00-A74A-17A5EED1B1ED") IVsDebugger2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE LaunchDebugTargets2( /* [in] */ ULONG DebugTargetCount, /* [size_is][out][in] */ __RPC__inout_ecount_full(DebugTargetCount) VsDebugTargetInfo2 *pDebugTargets) = 0; virtual HRESULT STDMETHODCALLTYPE ConfirmStopDebugging( /* [in] */ __RPC__in LPCOLESTR pszMessage) = 0; virtual HRESULT STDMETHODCALLTYPE EnumDebugEngines( /* [out] */ __RPC__deref_out_opt IVsEnumGUID **ppEnum) = 0; virtual HRESULT STDMETHODCALLTYPE GetEngineName( /* [in] */ __RPC__in REFGUID guidEngine, /* [out] */ __RPC__deref_out_opt BSTR *pbstrName) = 0; virtual HRESULT STDMETHODCALLTYPE IsEngineCompatible( /* [in] */ __RPC__in REFGUID guidEngine, /* [in] */ ULONG EngineCount, /* [size_is][in] */ __RPC__in_ecount_full(EngineCount) GUID *pEngineGUIDs) = 0; virtual HRESULT STDMETHODCALLTYPE GetConsoleHandlesForProcess( /* [in] */ DWORD dwPid, /* [out] */ __RPC__out ULONG64 *pdwStdInput, /* [out] */ __RPC__out ULONG64 *pdwStdOutput, /* [out] */ __RPC__out ULONG64 *pdwStdError) = 0; virtual HRESULT STDMETHODCALLTYPE ShowSource( /* [in] */ __RPC__in_opt IUnknown *pUnkDebugDocContext, /* [in] */ BOOL fMakeActive, /* [in] */ BOOL fAlwaysMoveCaret, /* [in] */ BOOL fPromptToFindSource, /* [in] */ BOOL fIgnoreIfNotFound, /* [out] */ __RPC__deref_out_opt IVsTextView **ppTextView) = 0; virtual HRESULT STDMETHODCALLTYPE CreateDataTip( /* [in] */ __RPC__in BSTR bstrExpression, /* [in] */ VSEDT_STYLE dwStyle, /* [out] */ __RPC__deref_out_opt IVsEnhancedDataTip **ppDataTip) = 0; virtual HRESULT STDMETHODCALLTYPE GetSymbolPath( /* [out] */ __RPC__deref_out_opt BSTR *pbstrSymbolPath, /* [out] */ __RPC__deref_out_opt BSTR *pbstrSymbolCachePath) = 0; virtual HRESULT STDMETHODCALLTYPE GetOutputHandleForProcess( /* [in] */ DWORD dwPid, /* [out] */ __RPC__out ULONG64 *pOutputHandle) = 0; virtual HRESULT STDMETHODCALLTYPE InsertBreakpointByName( /* [in] */ __RPC__in REFGUID guidLanguage, /* [in] */ __RPC__in LPCOLESTR pszCodeLocationText, /* [in] */ BOOL bUseIntellisense) = 0; virtual HRESULT STDMETHODCALLTYPE ToggleUseQuickConsoleOption( /* [in] */ BOOL fOnOff) = 0; virtual HRESULT STDMETHODCALLTYPE GetUseQuickConsoleOptionSetting( /* [out] */ __RPC__out BOOL *pfValue) = 0; virtual HRESULT STDMETHODCALLTYPE GetInternalDebugMode( /* [out] */ __RPC__out DBGMODE *pdbgmode) = 0; }; #else /* C style interface */ typedef struct IVsDebugger2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsDebugger2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsDebugger2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsDebugger2 * This); HRESULT ( STDMETHODCALLTYPE *LaunchDebugTargets2 )( __RPC__in IVsDebugger2 * This, /* [in] */ ULONG DebugTargetCount, /* [size_is][out][in] */ __RPC__inout_ecount_full(DebugTargetCount) VsDebugTargetInfo2 *pDebugTargets); HRESULT ( STDMETHODCALLTYPE *ConfirmStopDebugging )( __RPC__in IVsDebugger2 * This, /* [in] */ __RPC__in LPCOLESTR pszMessage); HRESULT ( STDMETHODCALLTYPE *EnumDebugEngines )( __RPC__in IVsDebugger2 * This, /* [out] */ __RPC__deref_out_opt IVsEnumGUID **ppEnum); HRESULT ( STDMETHODCALLTYPE *GetEngineName )( __RPC__in IVsDebugger2 * This, /* [in] */ __RPC__in REFGUID guidEngine, /* [out] */ __RPC__deref_out_opt BSTR *pbstrName); HRESULT ( STDMETHODCALLTYPE *IsEngineCompatible )( __RPC__in IVsDebugger2 * This, /* [in] */ __RPC__in REFGUID guidEngine, /* [in] */ ULONG EngineCount, /* [size_is][in] */ __RPC__in_ecount_full(EngineCount) GUID *pEngineGUIDs); HRESULT ( STDMETHODCALLTYPE *GetConsoleHandlesForProcess )( __RPC__in IVsDebugger2 * This, /* [in] */ DWORD dwPid, /* [out] */ __RPC__out ULONG64 *pdwStdInput, /* [out] */ __RPC__out ULONG64 *pdwStdOutput, /* [out] */ __RPC__out ULONG64 *pdwStdError); HRESULT ( STDMETHODCALLTYPE *ShowSource )( __RPC__in IVsDebugger2 * This, /* [in] */ __RPC__in_opt IUnknown *pUnkDebugDocContext, /* [in] */ BOOL fMakeActive, /* [in] */ BOOL fAlwaysMoveCaret, /* [in] */ BOOL fPromptToFindSource, /* [in] */ BOOL fIgnoreIfNotFound, /* [out] */ __RPC__deref_out_opt IVsTextView **ppTextView); HRESULT ( STDMETHODCALLTYPE *CreateDataTip )( __RPC__in IVsDebugger2 * This, /* [in] */ __RPC__in BSTR bstrExpression, /* [in] */ VSEDT_STYLE dwStyle, /* [out] */ __RPC__deref_out_opt IVsEnhancedDataTip **ppDataTip); HRESULT ( STDMETHODCALLTYPE *GetSymbolPath )( __RPC__in IVsDebugger2 * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrSymbolPath, /* [out] */ __RPC__deref_out_opt BSTR *pbstrSymbolCachePath); HRESULT ( STDMETHODCALLTYPE *GetOutputHandleForProcess )( __RPC__in IVsDebugger2 * This, /* [in] */ DWORD dwPid, /* [out] */ __RPC__out ULONG64 *pOutputHandle); HRESULT ( STDMETHODCALLTYPE *InsertBreakpointByName )( __RPC__in IVsDebugger2 * This, /* [in] */ __RPC__in REFGUID guidLanguage, /* [in] */ __RPC__in LPCOLESTR pszCodeLocationText, /* [in] */ BOOL bUseIntellisense); HRESULT ( STDMETHODCALLTYPE *ToggleUseQuickConsoleOption )( __RPC__in IVsDebugger2 * This, /* [in] */ BOOL fOnOff); HRESULT ( STDMETHODCALLTYPE *GetUseQuickConsoleOptionSetting )( __RPC__in IVsDebugger2 * This, /* [out] */ __RPC__out BOOL *pfValue); HRESULT ( STDMETHODCALLTYPE *GetInternalDebugMode )( __RPC__in IVsDebugger2 * This, /* [out] */ __RPC__out DBGMODE *pdbgmode); END_INTERFACE } IVsDebugger2Vtbl; interface IVsDebugger2 { CONST_VTBL struct IVsDebugger2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsDebugger2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsDebugger2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsDebugger2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsDebugger2_LaunchDebugTargets2(This,DebugTargetCount,pDebugTargets) \ ( (This)->lpVtbl -> LaunchDebugTargets2(This,DebugTargetCount,pDebugTargets) ) #define IVsDebugger2_ConfirmStopDebugging(This,pszMessage) \ ( (This)->lpVtbl -> ConfirmStopDebugging(This,pszMessage) ) #define IVsDebugger2_EnumDebugEngines(This,ppEnum) \ ( (This)->lpVtbl -> EnumDebugEngines(This,ppEnum) ) #define IVsDebugger2_GetEngineName(This,guidEngine,pbstrName) \ ( (This)->lpVtbl -> GetEngineName(This,guidEngine,pbstrName) ) #define IVsDebugger2_IsEngineCompatible(This,guidEngine,EngineCount,pEngineGUIDs) \ ( (This)->lpVtbl -> IsEngineCompatible(This,guidEngine,EngineCount,pEngineGUIDs) ) #define IVsDebugger2_GetConsoleHandlesForProcess(This,dwPid,pdwStdInput,pdwStdOutput,pdwStdError) \ ( (This)->lpVtbl -> GetConsoleHandlesForProcess(This,dwPid,pdwStdInput,pdwStdOutput,pdwStdError) ) #define IVsDebugger2_ShowSource(This,pUnkDebugDocContext,fMakeActive,fAlwaysMoveCaret,fPromptToFindSource,fIgnoreIfNotFound,ppTextView) \ ( (This)->lpVtbl -> ShowSource(This,pUnkDebugDocContext,fMakeActive,fAlwaysMoveCaret,fPromptToFindSource,fIgnoreIfNotFound,ppTextView) ) #define IVsDebugger2_CreateDataTip(This,bstrExpression,dwStyle,ppDataTip) \ ( (This)->lpVtbl -> CreateDataTip(This,bstrExpression,dwStyle,ppDataTip) ) #define IVsDebugger2_GetSymbolPath(This,pbstrSymbolPath,pbstrSymbolCachePath) \ ( (This)->lpVtbl -> GetSymbolPath(This,pbstrSymbolPath,pbstrSymbolCachePath) ) #define IVsDebugger2_GetOutputHandleForProcess(This,dwPid,pOutputHandle) \ ( (This)->lpVtbl -> GetOutputHandleForProcess(This,dwPid,pOutputHandle) ) #define IVsDebugger2_InsertBreakpointByName(This,guidLanguage,pszCodeLocationText,bUseIntellisense) \ ( (This)->lpVtbl -> InsertBreakpointByName(This,guidLanguage,pszCodeLocationText,bUseIntellisense) ) #define IVsDebugger2_ToggleUseQuickConsoleOption(This,fOnOff) \ ( (This)->lpVtbl -> ToggleUseQuickConsoleOption(This,fOnOff) ) #define IVsDebugger2_GetUseQuickConsoleOptionSetting(This,pfValue) \ ( (This)->lpVtbl -> GetUseQuickConsoleOptionSetting(This,pfValue) ) #define IVsDebugger2_GetInternalDebugMode(This,pdbgmode) \ ( (This)->lpVtbl -> GetInternalDebugMode(This,pdbgmode) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsDebugger2_INTERFACE_DEFINED__ */ #ifndef __IVsDebugProcessNotify_INTERFACE_DEFINED__ #define __IVsDebugProcessNotify_INTERFACE_DEFINED__ /* interface IVsDebugProcessNotify */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsDebugProcessNotify; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("23320EFC-7C7A-4C3D-AD85-93A4E620FDD0") IVsDebugProcessNotify : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE BeforeStopDebuggingProcess( /* [in] */ STOP_DEBUGGING_PROCESS_REASON Reason) = 0; }; #else /* C style interface */ typedef struct IVsDebugProcessNotifyVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsDebugProcessNotify * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsDebugProcessNotify * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsDebugProcessNotify * This); HRESULT ( STDMETHODCALLTYPE *BeforeStopDebuggingProcess )( __RPC__in IVsDebugProcessNotify * This, /* [in] */ STOP_DEBUGGING_PROCESS_REASON Reason); END_INTERFACE } IVsDebugProcessNotifyVtbl; interface IVsDebugProcessNotify { CONST_VTBL struct IVsDebugProcessNotifyVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsDebugProcessNotify_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsDebugProcessNotify_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsDebugProcessNotify_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsDebugProcessNotify_BeforeStopDebuggingProcess(This,Reason) \ ( (This)->lpVtbl -> BeforeStopDebuggingProcess(This,Reason) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsDebugProcessNotify_INTERFACE_DEFINED__ */ #ifndef __IVsQueryDebuggableProjectCfg_INTERFACE_DEFINED__ #define __IVsQueryDebuggableProjectCfg_INTERFACE_DEFINED__ /* interface IVsQueryDebuggableProjectCfg */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsQueryDebuggableProjectCfg; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("CE25FCEE-9E4D-4ec8-856E-38E2BDB2E13B") IVsQueryDebuggableProjectCfg : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE QueryDebugTargets( /* [in] */ VSDBGLAUNCHFLAGS grfLaunch, /* [in] */ ULONG cTargets, /* [size_is][out][in] */ __RPC__inout_ecount_full(cTargets) VsDebugTargetInfo2 rgDebugTargetInfo[ ], /* [optional][out] */ __RPC__out ULONG *pcActual) = 0; }; #else /* C style interface */ typedef struct IVsQueryDebuggableProjectCfgVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsQueryDebuggableProjectCfg * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsQueryDebuggableProjectCfg * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsQueryDebuggableProjectCfg * This); HRESULT ( STDMETHODCALLTYPE *QueryDebugTargets )( __RPC__in IVsQueryDebuggableProjectCfg * This, /* [in] */ VSDBGLAUNCHFLAGS grfLaunch, /* [in] */ ULONG cTargets, /* [size_is][out][in] */ __RPC__inout_ecount_full(cTargets) VsDebugTargetInfo2 rgDebugTargetInfo[ ], /* [optional][out] */ __RPC__out ULONG *pcActual); END_INTERFACE } IVsQueryDebuggableProjectCfgVtbl; interface IVsQueryDebuggableProjectCfg { CONST_VTBL struct IVsQueryDebuggableProjectCfgVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsQueryDebuggableProjectCfg_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsQueryDebuggableProjectCfg_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsQueryDebuggableProjectCfg_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsQueryDebuggableProjectCfg_QueryDebugTargets(This,grfLaunch,cTargets,rgDebugTargetInfo,pcActual) \ ( (This)->lpVtbl -> QueryDebugTargets(This,grfLaunch,cTargets,rgDebugTargetInfo,pcActual) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsQueryDebuggableProjectCfg_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0015 */ /* [local] */ enum __VSOVERLAYICON2 { OVERLAYICON_EXCLUDED = 5, OVERLAYICON_NOTONDISK = 6, OVERLAYICON_MAXINDEX2 = 6 } ; typedef DWORD VSOVERLAYICON2; enum __VSMEPROPID2 { VSMEPROPID_ICON = -1012, VSMEPROPID_LAST2 = -1012 } ; typedef LONG VSMEPROPID2; enum __COMMANDWINDOWMODE2 { CWM_DEFAULT = -1 } ; typedef DWORD COMMANDWINDOWMODE2; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0015_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0015_v0_0_s_ifspec; #ifndef __IVsCommandWindow2_INTERFACE_DEFINED__ #define __IVsCommandWindow2_INTERFACE_DEFINED__ /* interface IVsCommandWindow2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsCommandWindow2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("E22363B8-E7D3-49b5-B094-7395BB35CE13") IVsCommandWindow2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE SetMode( /* [in] */ COMMANDWINDOWMODE2 mode) = 0; }; #else /* C style interface */ typedef struct IVsCommandWindow2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsCommandWindow2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsCommandWindow2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsCommandWindow2 * This); HRESULT ( STDMETHODCALLTYPE *SetMode )( __RPC__in IVsCommandWindow2 * This, /* [in] */ COMMANDWINDOWMODE2 mode); END_INTERFACE } IVsCommandWindow2Vtbl; interface IVsCommandWindow2 { CONST_VTBL struct IVsCommandWindow2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsCommandWindow2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsCommandWindow2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsCommandWindow2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsCommandWindow2_SetMode(This,mode) \ ( (This)->lpVtbl -> SetMode(This,mode) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsCommandWindow2_INTERFACE_DEFINED__ */ #ifndef __IVsDeferredDocView_INTERFACE_DEFINED__ #define __IVsDeferredDocView_INTERFACE_DEFINED__ /* interface IVsDeferredDocView */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsDeferredDocView; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("F22A0AD5-8F51-4f66-A644-EA64770CF8B7") IVsDeferredDocView : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE get_DocView( /* [out] */ __RPC__deref_out_opt IUnknown **ppUnkDocView) = 0; virtual HRESULT STDMETHODCALLTYPE get_CmdUIGuid( /* [out] */ __RPC__out GUID *pGuidCmdId) = 0; }; #else /* C style interface */ typedef struct IVsDeferredDocViewVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsDeferredDocView * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsDeferredDocView * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsDeferredDocView * This); HRESULT ( STDMETHODCALLTYPE *get_DocView )( __RPC__in IVsDeferredDocView * This, /* [out] */ __RPC__deref_out_opt IUnknown **ppUnkDocView); HRESULT ( STDMETHODCALLTYPE *get_CmdUIGuid )( __RPC__in IVsDeferredDocView * This, /* [out] */ __RPC__out GUID *pGuidCmdId); END_INTERFACE } IVsDeferredDocViewVtbl; interface IVsDeferredDocView { CONST_VTBL struct IVsDeferredDocViewVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsDeferredDocView_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsDeferredDocView_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsDeferredDocView_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsDeferredDocView_get_DocView(This,ppUnkDocView) \ ( (This)->lpVtbl -> get_DocView(This,ppUnkDocView) ) #define IVsDeferredDocView_get_CmdUIGuid(This,pGuidCmdId) \ ( (This)->lpVtbl -> get_CmdUIGuid(This,pGuidCmdId) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsDeferredDocView_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0017 */ /* [local] */ enum __VSBLDCFGPROPID { VSBLDCFGPROPID_LAST = -16000, VSBLDCFGPROPID_SupportsMTBuild = -16000, VSBLDCFGPROPID_FIRST = -16000 } ; typedef LONG VSBLDCFGPROPID; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0017_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0017_v0_0_s_ifspec; #ifndef __IVsBuildableProjectCfg2_INTERFACE_DEFINED__ #define __IVsBuildableProjectCfg2_INTERFACE_DEFINED__ /* interface IVsBuildableProjectCfg2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsBuildableProjectCfg2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("09857e8e-74cc-43a7-993d-3ec774dca298") IVsBuildableProjectCfg2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetBuildCfgProperty( /* [in] */ VSBLDCFGPROPID propid, /* [out] */ __RPC__out VARIANT *pvar) = 0; virtual HRESULT STDMETHODCALLTYPE StartBuildEx( /* [in] */ DWORD dwBuildId, /* [in] */ __RPC__in_opt IVsOutputWindowPane *pIVsOutputWindowPane, /* [in] */ DWORD dwOptions) = 0; }; #else /* C style interface */ typedef struct IVsBuildableProjectCfg2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsBuildableProjectCfg2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsBuildableProjectCfg2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsBuildableProjectCfg2 * This); HRESULT ( STDMETHODCALLTYPE *GetBuildCfgProperty )( __RPC__in IVsBuildableProjectCfg2 * This, /* [in] */ VSBLDCFGPROPID propid, /* [out] */ __RPC__out VARIANT *pvar); HRESULT ( STDMETHODCALLTYPE *StartBuildEx )( __RPC__in IVsBuildableProjectCfg2 * This, /* [in] */ DWORD dwBuildId, /* [in] */ __RPC__in_opt IVsOutputWindowPane *pIVsOutputWindowPane, /* [in] */ DWORD dwOptions); END_INTERFACE } IVsBuildableProjectCfg2Vtbl; interface IVsBuildableProjectCfg2 { CONST_VTBL struct IVsBuildableProjectCfg2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsBuildableProjectCfg2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsBuildableProjectCfg2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsBuildableProjectCfg2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsBuildableProjectCfg2_GetBuildCfgProperty(This,propid,pvar) \ ( (This)->lpVtbl -> GetBuildCfgProperty(This,propid,pvar) ) #define IVsBuildableProjectCfg2_StartBuildEx(This,dwBuildId,pIVsOutputWindowPane,dwOptions) \ ( (This)->lpVtbl -> StartBuildEx(This,dwBuildId,pIVsOutputWindowPane,dwOptions) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsBuildableProjectCfg2_INTERFACE_DEFINED__ */ #ifndef __IVsPublishableProjectStatusCallback_INTERFACE_DEFINED__ #define __IVsPublishableProjectStatusCallback_INTERFACE_DEFINED__ /* interface IVsPublishableProjectStatusCallback */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsPublishableProjectStatusCallback; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("279398E7-6FC1-40a2-9FB3-C321DB469E9B") IVsPublishableProjectStatusCallback : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE PublishBegin( /* [out][in] */ __RPC__inout BOOL *pfContinue) = 0; virtual HRESULT STDMETHODCALLTYPE PublishEnd( /* [in] */ BOOL fSuccess) = 0; virtual HRESULT STDMETHODCALLTYPE Tick( /* [out][in] */ __RPC__inout BOOL *pfContinue) = 0; }; #else /* C style interface */ typedef struct IVsPublishableProjectStatusCallbackVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsPublishableProjectStatusCallback * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsPublishableProjectStatusCallback * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsPublishableProjectStatusCallback * This); HRESULT ( STDMETHODCALLTYPE *PublishBegin )( __RPC__in IVsPublishableProjectStatusCallback * This, /* [out][in] */ __RPC__inout BOOL *pfContinue); HRESULT ( STDMETHODCALLTYPE *PublishEnd )( __RPC__in IVsPublishableProjectStatusCallback * This, /* [in] */ BOOL fSuccess); HRESULT ( STDMETHODCALLTYPE *Tick )( __RPC__in IVsPublishableProjectStatusCallback * This, /* [out][in] */ __RPC__inout BOOL *pfContinue); END_INTERFACE } IVsPublishableProjectStatusCallbackVtbl; interface IVsPublishableProjectStatusCallback { CONST_VTBL struct IVsPublishableProjectStatusCallbackVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsPublishableProjectStatusCallback_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsPublishableProjectStatusCallback_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsPublishableProjectStatusCallback_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsPublishableProjectStatusCallback_PublishBegin(This,pfContinue) \ ( (This)->lpVtbl -> PublishBegin(This,pfContinue) ) #define IVsPublishableProjectStatusCallback_PublishEnd(This,fSuccess) \ ( (This)->lpVtbl -> PublishEnd(This,fSuccess) ) #define IVsPublishableProjectStatusCallback_Tick(This,pfContinue) \ ( (This)->lpVtbl -> Tick(This,pfContinue) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsPublishableProjectStatusCallback_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0019 */ /* [local] */ enum __VSPUBLISHOPTS { PUBOPT_PUBLISHCONTEXT = 0x1 } ; typedef DWORD VSPUBLISHOPTS; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0019_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0019_v0_0_s_ifspec; #ifndef __IVsPublishableProjectCfg_INTERFACE_DEFINED__ #define __IVsPublishableProjectCfg_INTERFACE_DEFINED__ /* interface IVsPublishableProjectCfg */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsPublishableProjectCfg; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("816B2FBE-5C62-439e-8F67-8F0D5D82BC67") IVsPublishableProjectCfg : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE AdvisePublishStatusCallback( /* [in] */ __RPC__in_opt IVsPublishableProjectStatusCallback *pIVsPublishStatusCallback, /* [out] */ __RPC__out VSCOOKIE *pdwCookie) = 0; virtual HRESULT STDMETHODCALLTYPE UnadvisePublishStatusCallback( /* [in] */ VSCOOKIE dwCookie) = 0; virtual HRESULT STDMETHODCALLTYPE StartPublish( /* [in] */ __RPC__in_opt IVsOutputWindowPane *pIVsOutputWindowPane, /* [in] */ DWORD dwOptions) = 0; virtual HRESULT STDMETHODCALLTYPE QueryStatusPublish( /* [out] */ __RPC__out BOOL *pfPublishDone) = 0; virtual HRESULT STDMETHODCALLTYPE StopPublish( /* [in] */ BOOL fSync) = 0; virtual HRESULT STDMETHODCALLTYPE ShowPublishPrompt( /* [out] */ __RPC__out BOOL *pfContinue) = 0; virtual HRESULT STDMETHODCALLTYPE QueryStartPublish( /* [in] */ DWORD dwOptions, /* [optional][out] */ __RPC__out BOOL *pfSupported, /* [optional][out] */ __RPC__out BOOL *pfReady) = 0; virtual HRESULT STDMETHODCALLTYPE GetPublishProperty( /* [in] */ VSPUBLISHOPTS propid, /* [out] */ __RPC__out VARIANT *pvar) = 0; }; #else /* C style interface */ typedef struct IVsPublishableProjectCfgVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsPublishableProjectCfg * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsPublishableProjectCfg * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsPublishableProjectCfg * This); HRESULT ( STDMETHODCALLTYPE *AdvisePublishStatusCallback )( __RPC__in IVsPublishableProjectCfg * This, /* [in] */ __RPC__in_opt IVsPublishableProjectStatusCallback *pIVsPublishStatusCallback, /* [out] */ __RPC__out VSCOOKIE *pdwCookie); HRESULT ( STDMETHODCALLTYPE *UnadvisePublishStatusCallback )( __RPC__in IVsPublishableProjectCfg * This, /* [in] */ VSCOOKIE dwCookie); HRESULT ( STDMETHODCALLTYPE *StartPublish )( __RPC__in IVsPublishableProjectCfg * This, /* [in] */ __RPC__in_opt IVsOutputWindowPane *pIVsOutputWindowPane, /* [in] */ DWORD dwOptions); HRESULT ( STDMETHODCALLTYPE *QueryStatusPublish )( __RPC__in IVsPublishableProjectCfg * This, /* [out] */ __RPC__out BOOL *pfPublishDone); HRESULT ( STDMETHODCALLTYPE *StopPublish )( __RPC__in IVsPublishableProjectCfg * This, /* [in] */ BOOL fSync); HRESULT ( STDMETHODCALLTYPE *ShowPublishPrompt )( __RPC__in IVsPublishableProjectCfg * This, /* [out] */ __RPC__out BOOL *pfContinue); HRESULT ( STDMETHODCALLTYPE *QueryStartPublish )( __RPC__in IVsPublishableProjectCfg * This, /* [in] */ DWORD dwOptions, /* [optional][out] */ __RPC__out BOOL *pfSupported, /* [optional][out] */ __RPC__out BOOL *pfReady); HRESULT ( STDMETHODCALLTYPE *GetPublishProperty )( __RPC__in IVsPublishableProjectCfg * This, /* [in] */ VSPUBLISHOPTS propid, /* [out] */ __RPC__out VARIANT *pvar); END_INTERFACE } IVsPublishableProjectCfgVtbl; interface IVsPublishableProjectCfg { CONST_VTBL struct IVsPublishableProjectCfgVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsPublishableProjectCfg_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsPublishableProjectCfg_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsPublishableProjectCfg_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsPublishableProjectCfg_AdvisePublishStatusCallback(This,pIVsPublishStatusCallback,pdwCookie) \ ( (This)->lpVtbl -> AdvisePublishStatusCallback(This,pIVsPublishStatusCallback,pdwCookie) ) #define IVsPublishableProjectCfg_UnadvisePublishStatusCallback(This,dwCookie) \ ( (This)->lpVtbl -> UnadvisePublishStatusCallback(This,dwCookie) ) #define IVsPublishableProjectCfg_StartPublish(This,pIVsOutputWindowPane,dwOptions) \ ( (This)->lpVtbl -> StartPublish(This,pIVsOutputWindowPane,dwOptions) ) #define IVsPublishableProjectCfg_QueryStatusPublish(This,pfPublishDone) \ ( (This)->lpVtbl -> QueryStatusPublish(This,pfPublishDone) ) #define IVsPublishableProjectCfg_StopPublish(This,fSync) \ ( (This)->lpVtbl -> StopPublish(This,fSync) ) #define IVsPublishableProjectCfg_ShowPublishPrompt(This,pfContinue) \ ( (This)->lpVtbl -> ShowPublishPrompt(This,pfContinue) ) #define IVsPublishableProjectCfg_QueryStartPublish(This,dwOptions,pfSupported,pfReady) \ ( (This)->lpVtbl -> QueryStartPublish(This,dwOptions,pfSupported,pfReady) ) #define IVsPublishableProjectCfg_GetPublishProperty(This,propid,pvar) \ ( (This)->lpVtbl -> GetPublishProperty(This,propid,pvar) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsPublishableProjectCfg_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0020 */ /* [local] */ typedef enum __VSSOLNBUILDUPDATEFLAGS2 { SBF_OPERATION_PUBLISHUI = 0x800000, SBF_OPERATION_PUBLISH = 0x1000000 } VSSOLNBUILDUPDATEFLAGS2; #define PCL_AUTO_SWITCHES -2 #define PCL_AUTO_SWITCHVALUES -3 extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0020_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0020_v0_0_s_ifspec; #ifndef __IVsParseCommandLine2_INTERFACE_DEFINED__ #define __IVsParseCommandLine2_INTERFACE_DEFINED__ /* interface IVsParseCommandLine2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsParseCommandLine2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("7837DF15-0604-4ea1-8515-CD5A30972482") IVsParseCommandLine2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetACParamOrSwitch( /* [out] */ __RPC__out int *piACIndex, /* [out] */ __RPC__out int *piACStart, /* [out] */ __RPC__out int *pcchACLength, /* [out] */ __RPC__deref_out_opt BSTR *pbstrCurSwitch, /* [retval][out] */ __RPC__deref_out_opt BSTR *pbstrACParam) = 0; }; #else /* C style interface */ typedef struct IVsParseCommandLine2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsParseCommandLine2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsParseCommandLine2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsParseCommandLine2 * This); HRESULT ( STDMETHODCALLTYPE *GetACParamOrSwitch )( __RPC__in IVsParseCommandLine2 * This, /* [out] */ __RPC__out int *piACIndex, /* [out] */ __RPC__out int *piACStart, /* [out] */ __RPC__out int *pcchACLength, /* [out] */ __RPC__deref_out_opt BSTR *pbstrCurSwitch, /* [retval][out] */ __RPC__deref_out_opt BSTR *pbstrACParam); END_INTERFACE } IVsParseCommandLine2Vtbl; interface IVsParseCommandLine2 { CONST_VTBL struct IVsParseCommandLine2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsParseCommandLine2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsParseCommandLine2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsParseCommandLine2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsParseCommandLine2_GetACParamOrSwitch(This,piACIndex,piACStart,pcchACLength,pbstrCurSwitch,pbstrACParam) \ ( (This)->lpVtbl -> GetACParamOrSwitch(This,piACIndex,piACStart,pcchACLength,pbstrCurSwitch,pbstrACParam) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsParseCommandLine2_INTERFACE_DEFINED__ */ #ifndef __IVsCommandWindowsCollection_INTERFACE_DEFINED__ #define __IVsCommandWindowsCollection_INTERFACE_DEFINED__ /* interface IVsCommandWindowsCollection */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsCommandWindowsCollection; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("615FF029-FEFA-492c-8CD2-C3F66644C3F9") IVsCommandWindowsCollection : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE Create( /* [in] */ COMMANDWINDOWMODE2 mode, /* [in] */ DWORD dwToolWindowId, /* [in] */ BOOL fShow, /* [out] */ __RPC__out UINT *puCookie) = 0; virtual HRESULT STDMETHODCALLTYPE OpenExistingOrCreateNewCommandWindow( /* [in] */ COMMANDWINDOWMODE2 mode, /* [in] */ BOOL fShow, /* [out] */ __RPC__out UINT *puCookie) = 0; virtual HRESULT STDMETHODCALLTYPE GetCommandWindowFromCookie( /* [in] */ UINT uCookie, /* [out] */ __RPC__deref_out_opt IUnknown **ppunkCmdWindow) = 0; virtual HRESULT STDMETHODCALLTYPE GetCommandWindowFromMode( /* [in] */ COMMANDWINDOWMODE2 mode, /* [out] */ __RPC__deref_out_opt IUnknown **ppunkCmdWindow) = 0; virtual HRESULT STDMETHODCALLTYPE SetRunningCommandWindowCommand( /* [in] */ UINT uCookie, /* [in] */ BOOL fCmdWin) = 0; virtual HRESULT STDMETHODCALLTYPE IsOutputWaiting( /* [in] */ UINT uCookie) = 0; virtual HRESULT STDMETHODCALLTYPE Close( /* [in] */ UINT uCookie) = 0; virtual HRESULT STDMETHODCALLTYPE CloseAllCommandWindows( void) = 0; }; #else /* C style interface */ typedef struct IVsCommandWindowsCollectionVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsCommandWindowsCollection * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsCommandWindowsCollection * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsCommandWindowsCollection * This); HRESULT ( STDMETHODCALLTYPE *Create )( __RPC__in IVsCommandWindowsCollection * This, /* [in] */ COMMANDWINDOWMODE2 mode, /* [in] */ DWORD dwToolWindowId, /* [in] */ BOOL fShow, /* [out] */ __RPC__out UINT *puCookie); HRESULT ( STDMETHODCALLTYPE *OpenExistingOrCreateNewCommandWindow )( __RPC__in IVsCommandWindowsCollection * This, /* [in] */ COMMANDWINDOWMODE2 mode, /* [in] */ BOOL fShow, /* [out] */ __RPC__out UINT *puCookie); HRESULT ( STDMETHODCALLTYPE *GetCommandWindowFromCookie )( __RPC__in IVsCommandWindowsCollection * This, /* [in] */ UINT uCookie, /* [out] */ __RPC__deref_out_opt IUnknown **ppunkCmdWindow); HRESULT ( STDMETHODCALLTYPE *GetCommandWindowFromMode )( __RPC__in IVsCommandWindowsCollection * This, /* [in] */ COMMANDWINDOWMODE2 mode, /* [out] */ __RPC__deref_out_opt IUnknown **ppunkCmdWindow); HRESULT ( STDMETHODCALLTYPE *SetRunningCommandWindowCommand )( __RPC__in IVsCommandWindowsCollection * This, /* [in] */ UINT uCookie, /* [in] */ BOOL fCmdWin); HRESULT ( STDMETHODCALLTYPE *IsOutputWaiting )( __RPC__in IVsCommandWindowsCollection * This, /* [in] */ UINT uCookie); HRESULT ( STDMETHODCALLTYPE *Close )( __RPC__in IVsCommandWindowsCollection * This, /* [in] */ UINT uCookie); HRESULT ( STDMETHODCALLTYPE *CloseAllCommandWindows )( __RPC__in IVsCommandWindowsCollection * This); END_INTERFACE } IVsCommandWindowsCollectionVtbl; interface IVsCommandWindowsCollection { CONST_VTBL struct IVsCommandWindowsCollectionVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsCommandWindowsCollection_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsCommandWindowsCollection_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsCommandWindowsCollection_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsCommandWindowsCollection_Create(This,mode,dwToolWindowId,fShow,puCookie) \ ( (This)->lpVtbl -> Create(This,mode,dwToolWindowId,fShow,puCookie) ) #define IVsCommandWindowsCollection_OpenExistingOrCreateNewCommandWindow(This,mode,fShow,puCookie) \ ( (This)->lpVtbl -> OpenExistingOrCreateNewCommandWindow(This,mode,fShow,puCookie) ) #define IVsCommandWindowsCollection_GetCommandWindowFromCookie(This,uCookie,ppunkCmdWindow) \ ( (This)->lpVtbl -> GetCommandWindowFromCookie(This,uCookie,ppunkCmdWindow) ) #define IVsCommandWindowsCollection_GetCommandWindowFromMode(This,mode,ppunkCmdWindow) \ ( (This)->lpVtbl -> GetCommandWindowFromMode(This,mode,ppunkCmdWindow) ) #define IVsCommandWindowsCollection_SetRunningCommandWindowCommand(This,uCookie,fCmdWin) \ ( (This)->lpVtbl -> SetRunningCommandWindowCommand(This,uCookie,fCmdWin) ) #define IVsCommandWindowsCollection_IsOutputWaiting(This,uCookie) \ ( (This)->lpVtbl -> IsOutputWaiting(This,uCookie) ) #define IVsCommandWindowsCollection_Close(This,uCookie) \ ( (This)->lpVtbl -> Close(This,uCookie) ) #define IVsCommandWindowsCollection_CloseAllCommandWindows(This) \ ( (This)->lpVtbl -> CloseAllCommandWindows(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsCommandWindowsCollection_INTERFACE_DEFINED__ */ #ifndef __SVsCommandWindowsCollection_INTERFACE_DEFINED__ #define __SVsCommandWindowsCollection_INTERFACE_DEFINED__ /* interface SVsCommandWindowsCollection */ /* [object][uuid] */ EXTERN_C const IID IID_SVsCommandWindowsCollection; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("E337F382-3CAB-44a5-AF0E-3DACA541C89A") SVsCommandWindowsCollection : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsCommandWindowsCollectionVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsCommandWindowsCollection * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsCommandWindowsCollection * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsCommandWindowsCollection * This); END_INTERFACE } SVsCommandWindowsCollectionVtbl; interface SVsCommandWindowsCollection { CONST_VTBL struct SVsCommandWindowsCollectionVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsCommandWindowsCollection_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsCommandWindowsCollection_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsCommandWindowsCollection_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsCommandWindowsCollection_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0023 */ /* [local] */ #define SID_SVsCommandWindowsCollection IID_SVsCommandWindowsCollection typedef void (__cdecl * PVsBackgroundTask_Proc)(DWORD_PTR pvParam, HANDLE hThreadTerminationEvent); typedef PVsBackgroundTask_Proc PVsBackgroundTask_Function_Pointer; enum __VSBACKGROUNDTASKPRIORITY { VSBACKGROUNDTASKPRIORITY_STANDARD = 0, VSBACKGROUNDTASKPRIORITY_IMMEDIATE = 1, VSBACKGROUNDTASKPRIORITY_OTHER = 2 } ; typedef DWORD VSBACKGROUNDTASKPRIORITY; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0023_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0023_v0_0_s_ifspec; #ifndef __IVsThreadPool_INTERFACE_DEFINED__ #define __IVsThreadPool_INTERFACE_DEFINED__ /* interface IVsThreadPool */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsThreadPool; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("615FF0FB-A19B-4bc8-B9AF-372EA191BA46") IVsThreadPool : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE ScheduleTask( /* [in] */ DWORD_PTR pTaskProc, /* [in] */ DWORD_PTR pvParam, /* [in] */ VSBACKGROUNDTASKPRIORITY priority) = 0; virtual HRESULT STDMETHODCALLTYPE ScheduleWaitableTask( /* [in] */ DWORD_PTR hWait, /* [in] */ DWORD_PTR pTaskProc, /* [in] */ DWORD_PTR pvParam) = 0; virtual HRESULT STDMETHODCALLTYPE UnscheduleWaitableTask( /* [in] */ DWORD_PTR hWait) = 0; }; #else /* C style interface */ typedef struct IVsThreadPoolVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsThreadPool * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsThreadPool * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsThreadPool * This); HRESULT ( STDMETHODCALLTYPE *ScheduleTask )( __RPC__in IVsThreadPool * This, /* [in] */ DWORD_PTR pTaskProc, /* [in] */ DWORD_PTR pvParam, /* [in] */ VSBACKGROUNDTASKPRIORITY priority); HRESULT ( STDMETHODCALLTYPE *ScheduleWaitableTask )( __RPC__in IVsThreadPool * This, /* [in] */ DWORD_PTR hWait, /* [in] */ DWORD_PTR pTaskProc, /* [in] */ DWORD_PTR pvParam); HRESULT ( STDMETHODCALLTYPE *UnscheduleWaitableTask )( __RPC__in IVsThreadPool * This, /* [in] */ DWORD_PTR hWait); END_INTERFACE } IVsThreadPoolVtbl; interface IVsThreadPool { CONST_VTBL struct IVsThreadPoolVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsThreadPool_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsThreadPool_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsThreadPool_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsThreadPool_ScheduleTask(This,pTaskProc,pvParam,priority) \ ( (This)->lpVtbl -> ScheduleTask(This,pTaskProc,pvParam,priority) ) #define IVsThreadPool_ScheduleWaitableTask(This,hWait,pTaskProc,pvParam) \ ( (This)->lpVtbl -> ScheduleWaitableTask(This,hWait,pTaskProc,pvParam) ) #define IVsThreadPool_UnscheduleWaitableTask(This,hWait) \ ( (This)->lpVtbl -> UnscheduleWaitableTask(This,hWait) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsThreadPool_INTERFACE_DEFINED__ */ #ifndef __SVsThreadPool_INTERFACE_DEFINED__ #define __SVsThreadPool_INTERFACE_DEFINED__ /* interface SVsThreadPool */ /* [object][uuid] */ EXTERN_C const IID IID_SVsThreadPool; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("7482E83D-842A-447c-8DDB-687F7052F7C7") SVsThreadPool : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsThreadPoolVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsThreadPool * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsThreadPool * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsThreadPool * This); END_INTERFACE } SVsThreadPoolVtbl; interface SVsThreadPool { CONST_VTBL struct SVsThreadPoolVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsThreadPool_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsThreadPool_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsThreadPool_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsThreadPool_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0025 */ /* [local] */ #define SID_SVsThreadPool IID_SVsThreadPool typedef struct _VSNSEBROWSEINFOW { DWORD lStructSize; LPCOLESTR pszNamespaceGUID; LPCOLESTR pszTrayDisplayName; LPCOLESTR pszProtocolPrefix; BOOL fOnlyShowNSEInTray; } VSNSEBROWSEINFOW; typedef struct _VSSAVETREEITEM { VSRDTSAVEOPTIONS grfSave; VSCOOKIE docCookie; IVsHierarchy *pHier; VSITEMID itemid; } VSSAVETREEITEM; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0025_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0025_v0_0_s_ifspec; #ifndef __IVsShell2_INTERFACE_DEFINED__ #define __IVsShell2_INTERFACE_DEFINED__ /* interface IVsShell2 */ /* [object][version][uuid] */ EXTERN_C const IID IID_IVsShell2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("F3519E2D-D5D2-4455-B9F4-5F61F993BD66") IVsShell2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE LoadPackageStringWithLCID( /* [in] */ __RPC__in REFGUID guidPackage, /* [in] */ ULONG resid, /* [in] */ LCID lcid, /* [retval][out] */ __RPC__deref_out_opt BSTR *pbstrOut) = 0; }; #else /* C style interface */ typedef struct IVsShell2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsShell2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsShell2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsShell2 * This); HRESULT ( STDMETHODCALLTYPE *LoadPackageStringWithLCID )( __RPC__in IVsShell2 * This, /* [in] */ __RPC__in REFGUID guidPackage, /* [in] */ ULONG resid, /* [in] */ LCID lcid, /* [retval][out] */ __RPC__deref_out_opt BSTR *pbstrOut); END_INTERFACE } IVsShell2Vtbl; interface IVsShell2 { CONST_VTBL struct IVsShell2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsShell2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsShell2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsShell2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsShell2_LoadPackageStringWithLCID(This,guidPackage,resid,lcid,pbstrOut) \ ( (This)->lpVtbl -> LoadPackageStringWithLCID(This,guidPackage,resid,lcid,pbstrOut) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsShell2_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0026 */ /* [local] */ typedef enum __tagVSSYSCOLOREX { VSCOLOR_ACCENT_BORDER = -5, VSCOLOR_ACCENT_DARK = -6, VSCOLOR_ACCENT_LIGHT = -7, VSCOLOR_ACCENT_MEDIUM = -8, VSCOLOR_ACCENT_PALE = -9, VSCOLOR_COMMANDBAR_BORDER = -10, VSCOLOR_COMMANDBAR_DRAGHANDLE = -11, VSCOLOR_COMMANDBAR_DRAGHANDLE_SHADOW = -12, VSCOLOR_COMMANDBAR_GRADIENT_BEGIN = -13, VSCOLOR_COMMANDBAR_GRADIENT_END = -14, VSCOLOR_COMMANDBAR_GRADIENT_MIDDLE = -15, VSCOLOR_COMMANDBAR_HOVER = -16, VSCOLOR_COMMANDBAR_HOVEROVERSELECTED = -17, VSCOLOR_COMMANDBAR_HOVEROVERSELECTEDICON = -18, VSCOLOR_COMMANDBAR_HOVEROVERSELECTEDICON_BORDER = -19, VSCOLOR_COMMANDBAR_SELECTED = -20, VSCOLOR_COMMANDBAR_SHADOW = -21, VSCOLOR_COMMANDBAR_TEXT_ACTIVE = -22, VSCOLOR_COMMANDBAR_TEXT_HOVER = -23, VSCOLOR_COMMANDBAR_TEXT_INACTIVE = -24, VSCOLOR_COMMANDBAR_TEXT_SELECTED = -25, VSCOLOR_CONTROL_EDIT_HINTTEXT = -26, VSCOLOR_CONTROL_EDIT_REQUIRED_BACKGROUND = -27, VSCOLOR_CONTROL_EDIT_REQUIRED_HINTTEXT = -28, VSCOLOR_CONTROL_LINK_TEXT = -29, VSCOLOR_CONTROL_LINK_TEXT_HOVER = -30, VSCOLOR_CONTROL_LINK_TEXT_PRESSED = -31, VSCOLOR_CONTROL_OUTLINE = -32, VSCOLOR_DEBUGGER_DATATIP_ACTIVE_BACKGROUND = -33, VSCOLOR_DEBUGGER_DATATIP_ACTIVE_BORDER = -34, VSCOLOR_DEBUGGER_DATATIP_ACTIVE_HIGHLIGHT = -35, VSCOLOR_DEBUGGER_DATATIP_ACTIVE_HIGHLIGHTTEXT = -36, VSCOLOR_DEBUGGER_DATATIP_ACTIVE_SEPARATOR = -37, VSCOLOR_DEBUGGER_DATATIP_ACTIVE_TEXT = -38, VSCOLOR_DEBUGGER_DATATIP_INACTIVE_BACKGROUND = -39, VSCOLOR_DEBUGGER_DATATIP_INACTIVE_BORDER = -40, VSCOLOR_DEBUGGER_DATATIP_INACTIVE_HIGHLIGHT = -41, VSCOLOR_DEBUGGER_DATATIP_INACTIVE_HIGHLIGHTTEXT = -42, VSCOLOR_DEBUGGER_DATATIP_INACTIVE_SEPARATOR = -43, VSCOLOR_DEBUGGER_DATATIP_INACTIVE_TEXT = -44, VSCOLOR_DESIGNER_BACKGROUND = -45, VSCOLOR_DESIGNER_SELECTIONDOTS = -46, VSCOLOR_DESIGNER_TRAY = -47, VSCOLOR_DESIGNER_WATERMARK = -48, VSCOLOR_EDITOR_EXPANSION_BORDER = -49, VSCOLOR_EDITOR_EXPANSION_FILL = -50, VSCOLOR_EDITOR_EXPANSION_LINK = -51, VSCOLOR_EDITOR_EXPANSION_TEXT = -52, VSCOLOR_ENVIRONMENT_BACKGROUND = -53, VSCOLOR_ENVIRONMENT_BACKGROUND_GRADIENTBEGIN = -54, VSCOLOR_ENVIRONMENT_BACKGROUND_GRADIENTEND = -55, VSCOLOR_FILETAB_BORDER = -56, VSCOLOR_FILETAB_CHANNELBACKGROUND = -57, VSCOLOR_FILETAB_GRADIENTDARK = -58, VSCOLOR_FILETAB_GRADIENTLIGHT = -59, VSCOLOR_FILETAB_SELECTEDBACKGROUND = -60, VSCOLOR_FILETAB_SELECTEDBORDER = -61, VSCOLOR_FILETAB_SELECTEDTEXT = -62, VSCOLOR_FILETAB_TEXT = -63, VSCOLOR_FORMSMARTTAG_ACTIONTAG_BORDER = -64, VSCOLOR_FORMSMARTTAG_ACTIONTAG_FILL = -65, VSCOLOR_FORMSMARTTAG_OBJECTTAG_BORDER = -66, VSCOLOR_FORMSMARTTAG_OBJECTTAG_FILL = -67, VSCOLOR_GRID_HEADING_BACKGROUND = -68, VSCOLOR_GRID_HEADING_TEXT = -69, VSCOLOR_GRID_LINE = -70, VSCOLOR_HELP_HOWDOI_PANE_BACKGROUND = -71, VSCOLOR_HELP_HOWDOI_PANE_LINK = -72, VSCOLOR_HELP_HOWDOI_PANE_TEXT = -73, VSCOLOR_HELP_HOWDOI_TASK_BACKGROUND = -74, VSCOLOR_HELP_HOWDOI_TASK_LINK = -75, VSCOLOR_HELP_HOWDOI_TASK_TEXT = -76, VSCOLOR_HELP_SEARCH_FRAME_BACKGROUND = -77, VSCOLOR_HELP_SEARCH_FRAME_TEXT = -78, VSCOLOR_HELP_SEARCH_BORDER = -79, VSCOLOR_HELP_SEARCH_FITLER_TEXT = -80, VSCOLOR_HELP_SEARCH_FITLER_BACKGROUND = -81, VSCOLOR_HELP_SEARCH_FITLER_BORDER = -82, VSCOLOR_HELP_SEARCH_PROVIDER_UNSELECTED_BACKGROUND = -83, VSCOLOR_HELP_SEARCH_PROVIDER_UNSELECTED_TEXT = -84, VSCOLOR_HELP_SEARCH_PROVIDER_SELECTED_BACKGROUND = -85, VSCOLOR_HELP_SEARCH_PROVIDER_SELECTED_TEXT = -86, VSCOLOR_HELP_SEARCH_PROVIDER_ICON = -87, VSCOLOR_HELP_SEARCH_RESULT_LINK_SELECTED = -88, VSCOLOR_HELP_SEARCH_RESULT_LINK_UNSELECTED = -89, VSCOLOR_HELP_SEARCH_RESULT_SELECTED_BACKGROUND = -90, VSCOLOR_HELP_SEARCH_RESULT_SELECTED_TEXT = -91, VSCOLOR_HELP_SEARCH_BACKGROUND = -92, VSCOLOR_HELP_SEARCH_TEXT = -93, VSCOLOR_HELP_SEARCH_PANEL_RULES = -94, VSCOLOR_MDICLIENT_BORDER = -95, VSCOLOR_PANEL_BORDER = -96, VSCOLOR_PANEL_GRADIENTDARK = -97, VSCOLOR_PANEL_GRADIENTLIGHT = -98, VSCOLOR_PANEL_HOVEROVERCLOSE_BORDER = -99, VSCOLOR_PANEL_HOVEROVERCLOSE_FILL = -100, VSCOLOR_PANEL_HYPERLINK = -101, VSCOLOR_PANEL_HYPERLINK_HOVER = -102, VSCOLOR_PANEL_HYPERLINK_PRESSED = -103, VSCOLOR_PANEL_SEPARATOR = -104, VSCOLOR_PANEL_SUBGROUPSEPARATOR = -105, VSCOLOR_PANEL_TEXT = -106, VSCOLOR_PANEL_TITLEBAR = -107, VSCOLOR_PANEL_TITLEBAR_TEXT = -108, VSCOLOR_PANEL_TITLEBAR_UNSELECTED = -109, VSCOLOR_PROJECTDESIGNER_BACKGROUND_GRADIENTBEGIN = -110, VSCOLOR_PROJECTDESIGNER_BACKGROUND_GRADIENTEND = -111, VSCOLOR_PROJECTDESIGNER_BORDER_OUTSIDE = -112, VSCOLOR_PROJECTDESIGNER_BORDER_INSIDE = -113, VSCOLOR_PROJECTDESIGNER_CONTENTS_BACKGROUND = -114, VSCOLOR_PROJECTDESIGNER_TAB_BACKGROUND_GRADIENTBEGIN = -115, VSCOLOR_PROJECTDESIGNER_TAB_BACKGROUND_GRADIENTEND = -116, VSCOLOR_PROJECTDESIGNER_TAB_SELECTED_INSIDEBORDER = -117, VSCOLOR_PROJECTDESIGNER_TAB_SELECTED_BORDER = -118, VSCOLOR_PROJECTDESIGNER_TAB_SELECTED_HIGHLIGHT1 = -119, VSCOLOR_PROJECTDESIGNER_TAB_SELECTED_HIGHLIGHT2 = -120, VSCOLOR_PROJECTDESIGNER_TAB_SELECTED_BACKGROUND = -121, VSCOLOR_PROJECTDESIGNER_TAB_SEP_BOTTOM_GRADIENTBEGIN = -122, VSCOLOR_PROJECTDESIGNER_TAB_SEP_BOTTOM_GRADIENTEND = -123, VSCOLOR_PROJECTDESIGNER_TAB_SEP_TOP_GRADIENTBEGIN = -124, VSCOLOR_PROJECTDESIGNER_TAB_SEP_TOP_GRADIENTEND = -125, VSCOLOR_SCREENTIP_BORDER = -126, VSCOLOR_SCREENTIP_BACKGROUND = -127, VSCOLOR_SCREENTIP_TEXT = -128, VSCOLOR_SIDEBAR_BACKGROUND = -129, VSCOLOR_SIDEBAR_GRADIENTDARK = -130, VSCOLOR_SIDEBAR_GRADIENTLIGHT = -131, VSCOLOR_SIDEBAR_TEXT = -132, VSCOLOR_SMARTTAG_BORDER = -133, VSCOLOR_SMARTTAG_FILL = -134, VSCOLOR_SMARTTAG_HOVER_BORDER = -135, VSCOLOR_SMARTTAG_HOVER_FILL = -136, VSCOLOR_SMARTTAG_HOVER_TEXT = -137, VSCOLOR_SMARTTAG_TEXT = -138, VSCOLOR_SNAPLINES = -139, VSCOLOR_SNAPLINES_PADDING = -140, VSCOLOR_SNAPLINES_TEXTBASELINE = -141, VSCOLOR_SORT_BACKGROUND = -142, VSCOLOR_SORT_TEXT = -143, VSCOLOR_TASKLIST_GRIDLINES = -144, VSCOLOR_TITLEBAR_ACTIVE = -145, VSCOLOR_TITLEBAR_ACTIVE_GRADIENTBEGIN = -146, VSCOLOR_TITLEBAR_ACTIVE_GRADIENTEND = -147, VSCOLOR_TITLEBAR_ACTIVE_TEXT = -148, VSCOLOR_TITLEBAR_INACTIVE = -149, VSCOLOR_TITLEBAR_INACTIVE_GRADIENTBEGIN = -150, VSCOLOR_TITLEBAR_INACTIVE_GRADIENTEND = -151, VSCOLOR_TITLEBAR_INACTIVE_TEXT = -152, VSCOLOR_TOOLBOX_BACKGROUND = -153, VSCOLOR_TOOLBOX_DIVIDER = -154, VSCOLOR_TOOLBOX_GRADIENTDARK = -155, VSCOLOR_TOOLBOX_GRADIENTLIGHT = -156, VSCOLOR_TOOLBOX_HEADINGACCENT = -157, VSCOLOR_TOOLBOX_HEADINGBEGIN = -158, VSCOLOR_TOOLBOX_HEADINGEND = -159, VSCOLOR_TOOLBOX_ICON_HIGHLIGHT = -160, VSCOLOR_TOOLBOX_ICON_SHADOW = -161, VSCOLOR_TOOLWINDOW_BACKGROUND = -162, VSCOLOR_TOOLWINDOW_BORDER = -163, VSCOLOR_TOOLWINDOW_BUTTON_DOWN = -164, VSCOLOR_TOOLWINDOW_BUTTON_DOWN_BORDER = -165, VSCOLOR_TOOLWINDOW_BUTTON_HOVER_ACTIVE = -166, VSCOLOR_TOOLWINDOW_BUTTON_HOVER_ACTIVE_BORDER = -167, VSCOLOR_TOOLWINDOW_BUTTON_HOVER_INACTIVE = -168, VSCOLOR_TOOLWINDOW_BUTTON_HOVER_INACTIVE_BORDER = -169, VSCOLOR_TOOLWINDOW_TEXT = -170, VSCOLOR_TOOLWINDOW_TAB_SELECTEDTAB = -171, VSCOLOR_TOOLWINDOW_TAB_BORDER = -172, VSCOLOR_TOOLWINDOW_TAB_GRADIENTBEGIN = -173, VSCOLOR_TOOLWINDOW_TAB_GRADIENTEND = -174, VSCOLOR_TOOLWINDOW_TAB_TEXT = -175, VSCOLOR_TOOLWINDOW_TAB_SELECTEDTEXT = -176, VSCOLOR_WIZARD_ORIENTATIONPANEL_BACKGROUND = -177, VSCOLOR_WIZARD_ORIENTATIONPANEL_TEXT = -178, VSCOLOR_LASTEX = -178 } __VSSYSCOLOREX; typedef int VSSYSCOLOREX; typedef enum __tagGRADIENTTYPE { VSGRADIENT_FILETAB = 1, VSGRADIENT_PANEL_BACKGROUND = 2, VSGRADIENT_SHELLBACKGROUND = 3, VSGRADIENT_TOOLBOX_HEADING = 4, VSGRADIENT_TOOLTAB = 5, VSGRADIENT_TOOLWIN_ACTIVE_TITLE_BAR = 6, VSGRADIENT_TOOLWIN_INACTIVE_TITLE_BAR = 7, VSGRADIENT_TOOLWIN_BACKGROUND = 8 } __GRADIENTTYPE; typedef DWORD GRADIENTTYPE; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0026_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0026_v0_0_s_ifspec; #ifndef __IVsGradient_INTERFACE_DEFINED__ #define __IVsGradient_INTERFACE_DEFINED__ /* interface IVsGradient */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsGradient; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("fd3f680a-d5c1-437a-8a21-8084310bf037") IVsGradient : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE DrawGradient( /* [in] */ __RPC__in HWND hwnd, /* [in] */ __RPC__in HDC hdc, /* [in] */ __RPC__in RECT *gradientRect, /* [in] */ __RPC__in RECT *sliceRect) = 0; virtual HRESULT STDMETHODCALLTYPE GetGradientVector( /* [in] */ int cVector, /* [size_is][out][in] */ __RPC__inout_ecount_full(cVector) COLORREF *rgVector) = 0; }; #else /* C style interface */ typedef struct IVsGradientVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsGradient * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsGradient * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsGradient * This); HRESULT ( STDMETHODCALLTYPE *DrawGradient )( __RPC__in IVsGradient * This, /* [in] */ __RPC__in HWND hwnd, /* [in] */ __RPC__in HDC hdc, /* [in] */ __RPC__in RECT *gradientRect, /* [in] */ __RPC__in RECT *sliceRect); HRESULT ( STDMETHODCALLTYPE *GetGradientVector )( __RPC__in IVsGradient * This, /* [in] */ int cVector, /* [size_is][out][in] */ __RPC__inout_ecount_full(cVector) COLORREF *rgVector); END_INTERFACE } IVsGradientVtbl; interface IVsGradient { CONST_VTBL struct IVsGradientVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsGradient_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsGradient_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsGradient_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsGradient_DrawGradient(This,hwnd,hdc,gradientRect,sliceRect) \ ( (This)->lpVtbl -> DrawGradient(This,hwnd,hdc,gradientRect,sliceRect) ) #define IVsGradient_GetGradientVector(This,cVector,rgVector) \ ( (This)->lpVtbl -> GetGradientVector(This,cVector,rgVector) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsGradient_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0027 */ /* [local] */ enum __VSCURSORTYPE { VSCURSOR_APPSTARTING = 1, VSCURSOR_COLUMNSPLIT_EW = 2, VSCURSOR_COLUMNSPLIT_NS = 3, VSCURSOR_CONTROL_COPY = 4, VSCURSOR_CONTROL_DELETE = 5, VSCURSOR_CONTROL_MOVE = 6, VSCURSOR_CROSS = 7, VSCURSOR_DRAGDOCUMENT_MOVE = 8, VSCURSOR_DRAGDOCUMENT_NOEFFECT = 9, VSCURSOR_DRAGSCRAP_COPY = 10, VSCURSOR_DRAGSCRAP_MOVE = 11, VSCURSOR_DRAGSCRAP_SCROLL = 12, VSCURSOR_HAND = 13, VSCURSOR_IBEAM = 14, VSCURSOR_ISEARCH = 15, VSCURSOR_ISEARCH_UP = 16, VSCURSOR_MACRO_RECORD_NO = 17, VSCURSOR_NO = 18, VSCURSOR_NOMOVE_2D = 19, VSCURSOR_NOMOVE_HORIZ = 20, VSCURSOR_NOMOVE_VERT = 21, VSCURSOR_PAN_EAST = 22, VSCURSOR_PAN_NE = 23, VSCURSOR_PAN_NORTH = 24, VSCURSOR_PAN_NW = 25, VSCURSOR_PAN_SE = 26, VSCURSOR_PAN_SOUTH = 27, VSCURSOR_PAN_SW = 28, VSCURSOR_PAN_WEST = 29, VSCURSOR_POINTER = 30, VSCURSOR_POINTER_REVERSE = 31, VSCURSOR_SIZE_NS = 32, VSCURSOR_SIZE_EW = 33, VSCURSOR_SIZE_NWSE = 34, VSCURSOR_SIZE_NESW = 35, VSCURSOR_SIZE_ALL = 36, VSCURSOR_SPLIT_EW = 37, VSCURSOR_SPLIT_NS = 38, VSCURSOR_UPARROW = 39, VSCURSOR_WAIT = 40 } ; typedef DWORD VSCURSORTYPE; #define OFN_NOADDALLFILESFILTER 0x40000000 typedef enum tagBWIImagePos { BWI_IMAGE_POS_LEFT = 0, BWI_IMAGE_POS_RIGHT = 0x1, BWI_IMAGE_ONLY = 0x2 } __BWI_IMAGE_POS; typedef DWORD BWI_IMAGE_POS; typedef struct tagVSDRAWITEMSTRUCT { UINT CtlType; UINT CtlID; UINT itemID; UINT itemAction; UINT itemState; HWND hwndItem; HDC hDC; RECT rcItem; ULONG_PTR itemData; } VSDRAWITEMSTRUCT; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0027_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0027_v0_0_s_ifspec; #ifndef __IVsImageButton_INTERFACE_DEFINED__ #define __IVsImageButton_INTERFACE_DEFINED__ /* interface IVsImageButton */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsImageButton; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("61DF9CCE-E88E-4fe2-9976-77A4F478E24B") IVsImageButton : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE Draw( /* [in] */ __RPC__in VSDRAWITEMSTRUCT *pDrawItemStruct, /* [in] */ BOOL fHot) = 0; }; #else /* C style interface */ typedef struct IVsImageButtonVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsImageButton * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsImageButton * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsImageButton * This); HRESULT ( STDMETHODCALLTYPE *Draw )( __RPC__in IVsImageButton * This, /* [in] */ __RPC__in VSDRAWITEMSTRUCT *pDrawItemStruct, /* [in] */ BOOL fHot); END_INTERFACE } IVsImageButtonVtbl; interface IVsImageButton { CONST_VTBL struct IVsImageButtonVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsImageButton_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsImageButton_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsImageButton_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsImageButton_Draw(This,pDrawItemStruct,fHot) \ ( (This)->lpVtbl -> Draw(This,pDrawItemStruct,fHot) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsImageButton_INTERFACE_DEFINED__ */ #ifndef __IVsUIShell2_INTERFACE_DEFINED__ #define __IVsUIShell2_INTERFACE_DEFINED__ /* interface IVsUIShell2 */ /* [object][version][uuid] */ EXTERN_C const IID IID_IVsUIShell2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("4E6B6EF9-8E3D-4756-99E9-1192BAAD5496") IVsUIShell2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetOpenFileNameViaDlgEx( /* [out][in] */ __RPC__inout VSOPENFILENAMEW *pOpenFileName, /* [in] */ __RPC__in LPCOLESTR pszHelpTopic) = 0; virtual HRESULT STDMETHODCALLTYPE GetSaveFileNameViaDlgEx( /* [out][in] */ __RPC__inout VSSAVEFILENAMEW *pSaveFileName, /* [in] */ __RPC__in LPCOLESTR pszHelpTopic) = 0; virtual HRESULT STDMETHODCALLTYPE GetDirectoryViaBrowseDlgEx( /* [out][in] */ __RPC__inout VSBROWSEINFOW *pBrowse, /* [in] */ __RPC__in LPCOLESTR pszHelpTopic, /* [in] */ __RPC__in LPCOLESTR pszOpenButtonLabel, /* [in] */ __RPC__in LPCOLESTR pszCeilingDir, /* [in] */ __RPC__in VSNSEBROWSEINFOW *pNSEBrowseInfo) = 0; virtual HRESULT STDMETHODCALLTYPE SaveItemsViaDlg( /* [in] */ UINT cItems, /* [size_is][in] */ __RPC__in_ecount_full(cItems) VSSAVETREEITEM rgSaveItems[ ]) = 0; virtual HRESULT STDMETHODCALLTYPE GetVSSysColorEx( /* [in] */ VSSYSCOLOREX dwSysColIndex, /* [out] */ __RPC__out DWORD *pdwRGBval) = 0; virtual HRESULT STDMETHODCALLTYPE CreateGradient( /* [in] */ GRADIENTTYPE gradientType, /* [out] */ __RPC__deref_out_opt IVsGradient **pGradient) = 0; virtual HRESULT STDMETHODCALLTYPE GetVSCursor( /* [in] */ VSCURSORTYPE cursor, /* [out] */ __RPC__deref_out_opt HCURSOR *phIcon) = 0; virtual HRESULT STDMETHODCALLTYPE IsAutoRecoverSavingCheckpoints( /* [out] */ __RPC__out BOOL *pfARSaving) = 0; virtual HRESULT STDMETHODCALLTYPE VsDialogBoxParam( /* [in] */ HINSTANCE hinst, /* [in] */ DWORD dwId, /* [in] */ DLGPROC lpDialogFunc, /* [in] */ LPARAM lp) = 0; virtual HRESULT STDMETHODCALLTYPE CreateIconImageButton( /* [in] */ __RPC__in HWND hwnd, /* [in] */ __RPC__in HICON hicon, /* [in] */ BWI_IMAGE_POS bwiPos, /* [out] */ __RPC__deref_out_opt IVsImageButton **ppImageButton) = 0; virtual HRESULT STDMETHODCALLTYPE CreateGlyphImageButton( /* [in] */ __RPC__in HWND hwnd, /* [in] */ WCHAR chGlyph, /* [in] */ int xShift, /* [in] */ int yShift, /* [in] */ BWI_IMAGE_POS bwiPos, /* [out] */ __RPC__deref_out_opt IVsImageButton **ppImageButton) = 0; }; #else /* C style interface */ typedef struct IVsUIShell2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsUIShell2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsUIShell2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsUIShell2 * This); HRESULT ( STDMETHODCALLTYPE *GetOpenFileNameViaDlgEx )( __RPC__in IVsUIShell2 * This, /* [out][in] */ __RPC__inout VSOPENFILENAMEW *pOpenFileName, /* [in] */ __RPC__in LPCOLESTR pszHelpTopic); HRESULT ( STDMETHODCALLTYPE *GetSaveFileNameViaDlgEx )( __RPC__in IVsUIShell2 * This, /* [out][in] */ __RPC__inout VSSAVEFILENAMEW *pSaveFileName, /* [in] */ __RPC__in LPCOLESTR pszHelpTopic); HRESULT ( STDMETHODCALLTYPE *GetDirectoryViaBrowseDlgEx )( __RPC__in IVsUIShell2 * This, /* [out][in] */ __RPC__inout VSBROWSEINFOW *pBrowse, /* [in] */ __RPC__in LPCOLESTR pszHelpTopic, /* [in] */ __RPC__in LPCOLESTR pszOpenButtonLabel, /* [in] */ __RPC__in LPCOLESTR pszCeilingDir, /* [in] */ __RPC__in VSNSEBROWSEINFOW *pNSEBrowseInfo); HRESULT ( STDMETHODCALLTYPE *SaveItemsViaDlg )( __RPC__in IVsUIShell2 * This, /* [in] */ UINT cItems, /* [size_is][in] */ __RPC__in_ecount_full(cItems) VSSAVETREEITEM rgSaveItems[ ]); HRESULT ( STDMETHODCALLTYPE *GetVSSysColorEx )( __RPC__in IVsUIShell2 * This, /* [in] */ VSSYSCOLOREX dwSysColIndex, /* [out] */ __RPC__out DWORD *pdwRGBval); HRESULT ( STDMETHODCALLTYPE *CreateGradient )( __RPC__in IVsUIShell2 * This, /* [in] */ GRADIENTTYPE gradientType, /* [out] */ __RPC__deref_out_opt IVsGradient **pGradient); HRESULT ( STDMETHODCALLTYPE *GetVSCursor )( __RPC__in IVsUIShell2 * This, /* [in] */ VSCURSORTYPE cursor, /* [out] */ __RPC__deref_out_opt HCURSOR *phIcon); HRESULT ( STDMETHODCALLTYPE *IsAutoRecoverSavingCheckpoints )( __RPC__in IVsUIShell2 * This, /* [out] */ __RPC__out BOOL *pfARSaving); HRESULT ( STDMETHODCALLTYPE *VsDialogBoxParam )( __RPC__in IVsUIShell2 * This, /* [in] */ HINSTANCE hinst, /* [in] */ DWORD dwId, /* [in] */ DLGPROC lpDialogFunc, /* [in] */ LPARAM lp); HRESULT ( STDMETHODCALLTYPE *CreateIconImageButton )( __RPC__in IVsUIShell2 * This, /* [in] */ __RPC__in HWND hwnd, /* [in] */ __RPC__in HICON hicon, /* [in] */ BWI_IMAGE_POS bwiPos, /* [out] */ __RPC__deref_out_opt IVsImageButton **ppImageButton); HRESULT ( STDMETHODCALLTYPE *CreateGlyphImageButton )( __RPC__in IVsUIShell2 * This, /* [in] */ __RPC__in HWND hwnd, /* [in] */ WCHAR chGlyph, /* [in] */ int xShift, /* [in] */ int yShift, /* [in] */ BWI_IMAGE_POS bwiPos, /* [out] */ __RPC__deref_out_opt IVsImageButton **ppImageButton); END_INTERFACE } IVsUIShell2Vtbl; interface IVsUIShell2 { CONST_VTBL struct IVsUIShell2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsUIShell2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsUIShell2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsUIShell2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsUIShell2_GetOpenFileNameViaDlgEx(This,pOpenFileName,pszHelpTopic) \ ( (This)->lpVtbl -> GetOpenFileNameViaDlgEx(This,pOpenFileName,pszHelpTopic) ) #define IVsUIShell2_GetSaveFileNameViaDlgEx(This,pSaveFileName,pszHelpTopic) \ ( (This)->lpVtbl -> GetSaveFileNameViaDlgEx(This,pSaveFileName,pszHelpTopic) ) #define IVsUIShell2_GetDirectoryViaBrowseDlgEx(This,pBrowse,pszHelpTopic,pszOpenButtonLabel,pszCeilingDir,pNSEBrowseInfo) \ ( (This)->lpVtbl -> GetDirectoryViaBrowseDlgEx(This,pBrowse,pszHelpTopic,pszOpenButtonLabel,pszCeilingDir,pNSEBrowseInfo) ) #define IVsUIShell2_SaveItemsViaDlg(This,cItems,rgSaveItems) \ ( (This)->lpVtbl -> SaveItemsViaDlg(This,cItems,rgSaveItems) ) #define IVsUIShell2_GetVSSysColorEx(This,dwSysColIndex,pdwRGBval) \ ( (This)->lpVtbl -> GetVSSysColorEx(This,dwSysColIndex,pdwRGBval) ) #define IVsUIShell2_CreateGradient(This,gradientType,pGradient) \ ( (This)->lpVtbl -> CreateGradient(This,gradientType,pGradient) ) #define IVsUIShell2_GetVSCursor(This,cursor,phIcon) \ ( (This)->lpVtbl -> GetVSCursor(This,cursor,phIcon) ) #define IVsUIShell2_IsAutoRecoverSavingCheckpoints(This,pfARSaving) \ ( (This)->lpVtbl -> IsAutoRecoverSavingCheckpoints(This,pfARSaving) ) #define IVsUIShell2_VsDialogBoxParam(This,hinst,dwId,lpDialogFunc,lp) \ ( (This)->lpVtbl -> VsDialogBoxParam(This,hinst,dwId,lpDialogFunc,lp) ) #define IVsUIShell2_CreateIconImageButton(This,hwnd,hicon,bwiPos,ppImageButton) \ ( (This)->lpVtbl -> CreateIconImageButton(This,hwnd,hicon,bwiPos,ppImageButton) ) #define IVsUIShell2_CreateGlyphImageButton(This,hwnd,chGlyph,xShift,yShift,bwiPos,ppImageButton) \ ( (This)->lpVtbl -> CreateGlyphImageButton(This,hwnd,chGlyph,xShift,yShift,bwiPos,ppImageButton) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsUIShell2_INTERFACE_DEFINED__ */ #ifndef __SVsMainWindowDropTarget_INTERFACE_DEFINED__ #define __SVsMainWindowDropTarget_INTERFACE_DEFINED__ /* interface SVsMainWindowDropTarget */ /* [object][uuid] */ EXTERN_C const IID IID_SVsMainWindowDropTarget; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("8ABE01DB-4CB1-4be7-961F-D30B2EF6AEB1") SVsMainWindowDropTarget : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsMainWindowDropTargetVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsMainWindowDropTarget * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsMainWindowDropTarget * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsMainWindowDropTarget * This); END_INTERFACE } SVsMainWindowDropTargetVtbl; interface SVsMainWindowDropTarget { CONST_VTBL struct SVsMainWindowDropTargetVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsMainWindowDropTarget_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsMainWindowDropTarget_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsMainWindowDropTarget_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsMainWindowDropTarget_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0030 */ /* [local] */ #define SID_SVsMainWindowDropTarget IID_SVsMainWindowDropTarget extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0030_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0030_v0_0_s_ifspec; #ifndef __IVsSupportItemHandoff2_INTERFACE_DEFINED__ #define __IVsSupportItemHandoff2_INTERFACE_DEFINED__ /* interface IVsSupportItemHandoff2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsSupportItemHandoff2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("2AFA4F74-7A1A-4dee-8F99-46E74E5A3C0F") IVsSupportItemHandoff2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE OnBeforeHandoffItem( /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in_opt IVsProject3 *pProjDest) = 0; }; #else /* C style interface */ typedef struct IVsSupportItemHandoff2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsSupportItemHandoff2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsSupportItemHandoff2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsSupportItemHandoff2 * This); HRESULT ( STDMETHODCALLTYPE *OnBeforeHandoffItem )( __RPC__in IVsSupportItemHandoff2 * This, /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in_opt IVsProject3 *pProjDest); END_INTERFACE } IVsSupportItemHandoff2Vtbl; interface IVsSupportItemHandoff2 { CONST_VTBL struct IVsSupportItemHandoff2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsSupportItemHandoff2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsSupportItemHandoff2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsSupportItemHandoff2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsSupportItemHandoff2_OnBeforeHandoffItem(This,itemid,pProjDest) \ ( (This)->lpVtbl -> OnBeforeHandoffItem(This,itemid,pProjDest) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsSupportItemHandoff2_INTERFACE_DEFINED__ */ #ifndef __IVsLaunchPadOutputParser_INTERFACE_DEFINED__ #define __IVsLaunchPadOutputParser_INTERFACE_DEFINED__ /* interface IVsLaunchPadOutputParser */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsLaunchPadOutputParser; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("A9832932-5F3B-487d-A80D-95115EADDAC3") IVsLaunchPadOutputParser : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE ParseOutputStringForInfo( /* [in] */ __RPC__in LPCOLESTR pszOutputString, /* [optional][out] */ __RPC__deref_out_opt BSTR *pbstrFilename, /* [optional][out] */ __RPC__out ULONG *pnLineNum, /* [optional][out] */ __RPC__out ULONG *pnPriority, /* [optional][out] */ __RPC__deref_out_opt BSTR *pbstrTaskItemText, /* [optional][out] */ __RPC__deref_out_opt BSTR *pbstrHelpKeyword) = 0; }; #else /* C style interface */ typedef struct IVsLaunchPadOutputParserVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsLaunchPadOutputParser * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsLaunchPadOutputParser * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsLaunchPadOutputParser * This); HRESULT ( STDMETHODCALLTYPE *ParseOutputStringForInfo )( __RPC__in IVsLaunchPadOutputParser * This, /* [in] */ __RPC__in LPCOLESTR pszOutputString, /* [optional][out] */ __RPC__deref_out_opt BSTR *pbstrFilename, /* [optional][out] */ __RPC__out ULONG *pnLineNum, /* [optional][out] */ __RPC__out ULONG *pnPriority, /* [optional][out] */ __RPC__deref_out_opt BSTR *pbstrTaskItemText, /* [optional][out] */ __RPC__deref_out_opt BSTR *pbstrHelpKeyword); END_INTERFACE } IVsLaunchPadOutputParserVtbl; interface IVsLaunchPadOutputParser { CONST_VTBL struct IVsLaunchPadOutputParserVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsLaunchPadOutputParser_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsLaunchPadOutputParser_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsLaunchPadOutputParser_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsLaunchPadOutputParser_ParseOutputStringForInfo(This,pszOutputString,pbstrFilename,pnLineNum,pnPriority,pbstrTaskItemText,pbstrHelpKeyword) \ ( (This)->lpVtbl -> ParseOutputStringForInfo(This,pszOutputString,pbstrFilename,pnLineNum,pnPriority,pbstrTaskItemText,pbstrHelpKeyword) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsLaunchPadOutputParser_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0032 */ /* [local] */ typedef /* [public] */ enum __MIDL___MIDL_itf_vsshell80_0000_0032_0001 { LPF_TreatOutputAsUnicode = 0x10 } _LAUNCHPAD_FLAGS2; typedef DWORD LAUNCHPAD_FLAGS2; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0032_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0032_v0_0_s_ifspec; #ifndef __IVsLaunchPad2_INTERFACE_DEFINED__ #define __IVsLaunchPad2_INTERFACE_DEFINED__ /* interface IVsLaunchPad2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsLaunchPad2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("0DBD685A-0A10-4e25-B88E-02E58E60785E") IVsLaunchPad2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE ExecCommandEx( /* [in] */ __RPC__in LPCOLESTR pszApplicationName, /* [in] */ __RPC__in LPCOLESTR pszCommandLine, /* [in] */ __RPC__in LPCOLESTR pszWorkingDir, /* [in] */ LAUNCHPAD_FLAGS2 lpf, /* [in] */ __RPC__in_opt IVsOutputWindowPane *pOutputWindowPane, /* [in] */ ULONG nTaskItemCategory, /* [in] */ ULONG nTaskItemBitmap, /* [in] */ __RPC__in LPCOLESTR pszTaskListSubcategory, /* [in] */ __RPC__in_opt IVsLaunchPadEvents *pVsLaunchPadEvents, /* [in] */ __RPC__in_opt IVsLaunchPadOutputParser *pOutputParser, /* [optional][out] */ __RPC__out DWORD *pdwProcessExitCode, /* [optional][out] */ __RPC__deref_out_opt BSTR *pbstrOutput) = 0; }; #else /* C style interface */ typedef struct IVsLaunchPad2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsLaunchPad2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsLaunchPad2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsLaunchPad2 * This); HRESULT ( STDMETHODCALLTYPE *ExecCommandEx )( __RPC__in IVsLaunchPad2 * This, /* [in] */ __RPC__in LPCOLESTR pszApplicationName, /* [in] */ __RPC__in LPCOLESTR pszCommandLine, /* [in] */ __RPC__in LPCOLESTR pszWorkingDir, /* [in] */ LAUNCHPAD_FLAGS2 lpf, /* [in] */ __RPC__in_opt IVsOutputWindowPane *pOutputWindowPane, /* [in] */ ULONG nTaskItemCategory, /* [in] */ ULONG nTaskItemBitmap, /* [in] */ __RPC__in LPCOLESTR pszTaskListSubcategory, /* [in] */ __RPC__in_opt IVsLaunchPadEvents *pVsLaunchPadEvents, /* [in] */ __RPC__in_opt IVsLaunchPadOutputParser *pOutputParser, /* [optional][out] */ __RPC__out DWORD *pdwProcessExitCode, /* [optional][out] */ __RPC__deref_out_opt BSTR *pbstrOutput); END_INTERFACE } IVsLaunchPad2Vtbl; interface IVsLaunchPad2 { CONST_VTBL struct IVsLaunchPad2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsLaunchPad2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsLaunchPad2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsLaunchPad2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsLaunchPad2_ExecCommandEx(This,pszApplicationName,pszCommandLine,pszWorkingDir,lpf,pOutputWindowPane,nTaskItemCategory,nTaskItemBitmap,pszTaskListSubcategory,pVsLaunchPadEvents,pOutputParser,pdwProcessExitCode,pbstrOutput) \ ( (This)->lpVtbl -> ExecCommandEx(This,pszApplicationName,pszCommandLine,pszWorkingDir,lpf,pOutputWindowPane,nTaskItemCategory,nTaskItemBitmap,pszTaskListSubcategory,pVsLaunchPadEvents,pOutputParser,pdwProcessExitCode,pbstrOutput) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsLaunchPad2_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0033 */ /* [local] */ enum __VSPROJSLNDLGFLAGS { PSDF_OpenSolutionDialog = 0x1, PSDF_OpenProjectDialog = 0x2, PSDF_AddExistingProjectDialog = 0x4, PSDF_DefaultToAllProjectsFilter = 0x8, PSDF_DirectoryPicker = 0x10 } ; typedef DWORD VSPROJSLNDLGFLAGS; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0033_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0033_v0_0_s_ifspec; #ifndef __IVsOpenProjectOrSolutionDlg_INTERFACE_DEFINED__ #define __IVsOpenProjectOrSolutionDlg_INTERFACE_DEFINED__ /* interface IVsOpenProjectOrSolutionDlg */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsOpenProjectOrSolutionDlg; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("09b17094-f50c-40e0-8ab5-57c22a786596") IVsOpenProjectOrSolutionDlg : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE OpenProjectOrSolutionViaDlg( /* [in] */ VSPROJSLNDLGFLAGS grfProjSlnDlgFlags, /* [in] */ __RPC__in LPCOLESTR pwzStartDirectory, /* [in] */ __RPC__in LPCOLESTR pwzDialogTitle, /* [in] */ __RPC__in REFGUID rguidProjectType) = 0; }; #else /* C style interface */ typedef struct IVsOpenProjectOrSolutionDlgVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsOpenProjectOrSolutionDlg * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsOpenProjectOrSolutionDlg * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsOpenProjectOrSolutionDlg * This); HRESULT ( STDMETHODCALLTYPE *OpenProjectOrSolutionViaDlg )( __RPC__in IVsOpenProjectOrSolutionDlg * This, /* [in] */ VSPROJSLNDLGFLAGS grfProjSlnDlgFlags, /* [in] */ __RPC__in LPCOLESTR pwzStartDirectory, /* [in] */ __RPC__in LPCOLESTR pwzDialogTitle, /* [in] */ __RPC__in REFGUID rguidProjectType); END_INTERFACE } IVsOpenProjectOrSolutionDlgVtbl; interface IVsOpenProjectOrSolutionDlg { CONST_VTBL struct IVsOpenProjectOrSolutionDlgVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsOpenProjectOrSolutionDlg_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsOpenProjectOrSolutionDlg_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsOpenProjectOrSolutionDlg_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsOpenProjectOrSolutionDlg_OpenProjectOrSolutionViaDlg(This,grfProjSlnDlgFlags,pwzStartDirectory,pwzDialogTitle,rguidProjectType) \ ( (This)->lpVtbl -> OpenProjectOrSolutionViaDlg(This,grfProjSlnDlgFlags,pwzStartDirectory,pwzDialogTitle,rguidProjectType) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsOpenProjectOrSolutionDlg_INTERFACE_DEFINED__ */ #ifndef __SVsOpenProjectOrSolutionDlg_INTERFACE_DEFINED__ #define __SVsOpenProjectOrSolutionDlg_INTERFACE_DEFINED__ /* interface SVsOpenProjectOrSolutionDlg */ /* [object][uuid] */ EXTERN_C const IID IID_SVsOpenProjectOrSolutionDlg; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("A3761D3F-7C1E-4526-A8D5-1575631F09FC") SVsOpenProjectOrSolutionDlg : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsOpenProjectOrSolutionDlgVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsOpenProjectOrSolutionDlg * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsOpenProjectOrSolutionDlg * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsOpenProjectOrSolutionDlg * This); END_INTERFACE } SVsOpenProjectOrSolutionDlgVtbl; interface SVsOpenProjectOrSolutionDlg { CONST_VTBL struct SVsOpenProjectOrSolutionDlgVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsOpenProjectOrSolutionDlg_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsOpenProjectOrSolutionDlg_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsOpenProjectOrSolutionDlg_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsOpenProjectOrSolutionDlg_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0035 */ /* [local] */ #define SID_SVsOpenProjectOrSolutionDlg IID_SVsOpenProjectOrSolutionDlg extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0035_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0035_v0_0_s_ifspec; #ifndef __IVsCreateAggregateProject_INTERFACE_DEFINED__ #define __IVsCreateAggregateProject_INTERFACE_DEFINED__ /* interface IVsCreateAggregateProject */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsCreateAggregateProject; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("84f41718-d169-4567-a0cd-b3cbcf58ff71") IVsCreateAggregateProject : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE CreateAggregateProject( /* [in] */ __RPC__in LPCOLESTR pszProjectTypeGuids, /* [in] */ __RPC__in LPCOLESTR pszFilename, /* [in] */ __RPC__in LPCOLESTR pszLocation, /* [in] */ __RPC__in LPCOLESTR pszName, /* [in] */ VSCREATEPROJFLAGS grfCreateFlags, /* [in] */ __RPC__in REFIID iidProject, /* [iid_is][out] */ __RPC__deref_out_opt void **ppvProject) = 0; }; #else /* C style interface */ typedef struct IVsCreateAggregateProjectVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsCreateAggregateProject * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsCreateAggregateProject * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsCreateAggregateProject * This); HRESULT ( STDMETHODCALLTYPE *CreateAggregateProject )( __RPC__in IVsCreateAggregateProject * This, /* [in] */ __RPC__in LPCOLESTR pszProjectTypeGuids, /* [in] */ __RPC__in LPCOLESTR pszFilename, /* [in] */ __RPC__in LPCOLESTR pszLocation, /* [in] */ __RPC__in LPCOLESTR pszName, /* [in] */ VSCREATEPROJFLAGS grfCreateFlags, /* [in] */ __RPC__in REFIID iidProject, /* [iid_is][out] */ __RPC__deref_out_opt void **ppvProject); END_INTERFACE } IVsCreateAggregateProjectVtbl; interface IVsCreateAggregateProject { CONST_VTBL struct IVsCreateAggregateProjectVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsCreateAggregateProject_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsCreateAggregateProject_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsCreateAggregateProject_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsCreateAggregateProject_CreateAggregateProject(This,pszProjectTypeGuids,pszFilename,pszLocation,pszName,grfCreateFlags,iidProject,ppvProject) \ ( (This)->lpVtbl -> CreateAggregateProject(This,pszProjectTypeGuids,pszFilename,pszLocation,pszName,grfCreateFlags,iidProject,ppvProject) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsCreateAggregateProject_INTERFACE_DEFINED__ */ #ifndef __SVsCreateAggregateProject_INTERFACE_DEFINED__ #define __SVsCreateAggregateProject_INTERFACE_DEFINED__ /* interface SVsCreateAggregateProject */ /* [object][uuid] */ EXTERN_C const IID IID_SVsCreateAggregateProject; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("50B729AD-AC3B-451f-BE03-9EA167F5D637") SVsCreateAggregateProject : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsCreateAggregateProjectVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsCreateAggregateProject * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsCreateAggregateProject * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsCreateAggregateProject * This); END_INTERFACE } SVsCreateAggregateProjectVtbl; interface SVsCreateAggregateProject { CONST_VTBL struct SVsCreateAggregateProjectVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsCreateAggregateProject_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsCreateAggregateProject_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsCreateAggregateProject_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsCreateAggregateProject_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0037 */ /* [local] */ #define SID_SVsCreateAggregateProject IID_SVsCreateAggregateProject extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0037_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0037_v0_0_s_ifspec; #ifndef __IVsAggregatableProject_INTERFACE_DEFINED__ #define __IVsAggregatableProject_INTERFACE_DEFINED__ /* interface IVsAggregatableProject */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsAggregatableProject; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("ffb2e715-7312-4b93-83d7-d37bcc561c90") IVsAggregatableProject : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE SetInnerProject( /* [in] */ __RPC__in_opt IUnknown *punkInner) = 0; virtual HRESULT STDMETHODCALLTYPE InitializeForOuter( /* [in] */ __RPC__in LPCOLESTR pszFilename, /* [in] */ __RPC__in LPCOLESTR pszLocation, /* [in] */ __RPC__in LPCOLESTR pszName, /* [in] */ VSCREATEPROJFLAGS grfCreateFlags, /* [in] */ __RPC__in REFIID iidProject, /* [iid_is][out] */ __RPC__deref_out_opt void **ppvProject, /* [out] */ __RPC__out BOOL *pfCanceled) = 0; virtual HRESULT STDMETHODCALLTYPE OnAggregationComplete( void) = 0; virtual HRESULT STDMETHODCALLTYPE GetAggregateProjectTypeGuids( /* [out] */ __RPC__deref_out_opt BSTR *pbstrProjTypeGuids) = 0; virtual HRESULT STDMETHODCALLTYPE SetAggregateProjectTypeGuids( /* [in] */ __RPC__in LPCOLESTR lpstrProjTypeGuids) = 0; }; #else /* C style interface */ typedef struct IVsAggregatableProjectVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsAggregatableProject * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsAggregatableProject * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsAggregatableProject * This); HRESULT ( STDMETHODCALLTYPE *SetInnerProject )( __RPC__in IVsAggregatableProject * This, /* [in] */ __RPC__in_opt IUnknown *punkInner); HRESULT ( STDMETHODCALLTYPE *InitializeForOuter )( __RPC__in IVsAggregatableProject * This, /* [in] */ __RPC__in LPCOLESTR pszFilename, /* [in] */ __RPC__in LPCOLESTR pszLocation, /* [in] */ __RPC__in LPCOLESTR pszName, /* [in] */ VSCREATEPROJFLAGS grfCreateFlags, /* [in] */ __RPC__in REFIID iidProject, /* [iid_is][out] */ __RPC__deref_out_opt void **ppvProject, /* [out] */ __RPC__out BOOL *pfCanceled); HRESULT ( STDMETHODCALLTYPE *OnAggregationComplete )( __RPC__in IVsAggregatableProject * This); HRESULT ( STDMETHODCALLTYPE *GetAggregateProjectTypeGuids )( __RPC__in IVsAggregatableProject * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrProjTypeGuids); HRESULT ( STDMETHODCALLTYPE *SetAggregateProjectTypeGuids )( __RPC__in IVsAggregatableProject * This, /* [in] */ __RPC__in LPCOLESTR lpstrProjTypeGuids); END_INTERFACE } IVsAggregatableProjectVtbl; interface IVsAggregatableProject { CONST_VTBL struct IVsAggregatableProjectVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsAggregatableProject_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsAggregatableProject_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsAggregatableProject_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsAggregatableProject_SetInnerProject(This,punkInner) \ ( (This)->lpVtbl -> SetInnerProject(This,punkInner) ) #define IVsAggregatableProject_InitializeForOuter(This,pszFilename,pszLocation,pszName,grfCreateFlags,iidProject,ppvProject,pfCanceled) \ ( (This)->lpVtbl -> InitializeForOuter(This,pszFilename,pszLocation,pszName,grfCreateFlags,iidProject,ppvProject,pfCanceled) ) #define IVsAggregatableProject_OnAggregationComplete(This) \ ( (This)->lpVtbl -> OnAggregationComplete(This) ) #define IVsAggregatableProject_GetAggregateProjectTypeGuids(This,pbstrProjTypeGuids) \ ( (This)->lpVtbl -> GetAggregateProjectTypeGuids(This,pbstrProjTypeGuids) ) #define IVsAggregatableProject_SetAggregateProjectTypeGuids(This,lpstrProjTypeGuids) \ ( (This)->lpVtbl -> SetAggregateProjectTypeGuids(This,lpstrProjTypeGuids) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsAggregatableProject_INTERFACE_DEFINED__ */ #ifndef __IVsAggregatableProjectFactory_INTERFACE_DEFINED__ #define __IVsAggregatableProjectFactory_INTERFACE_DEFINED__ /* interface IVsAggregatableProjectFactory */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsAggregatableProjectFactory; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("44569501-2ad0-4966-9bac-12b799a1ced6") IVsAggregatableProjectFactory : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetAggregateProjectType( /* [in] */ __RPC__in LPCOLESTR pszFilename, /* [out] */ __RPC__deref_out_opt BSTR *pbstrProjTypeGuid) = 0; virtual HRESULT STDMETHODCALLTYPE PreCreateForOuter( /* [in] */ __RPC__in_opt IUnknown *punkOuter, /* [out] */ __RPC__deref_out_opt IUnknown **ppunkProject) = 0; }; #else /* C style interface */ typedef struct IVsAggregatableProjectFactoryVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsAggregatableProjectFactory * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsAggregatableProjectFactory * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsAggregatableProjectFactory * This); HRESULT ( STDMETHODCALLTYPE *GetAggregateProjectType )( __RPC__in IVsAggregatableProjectFactory * This, /* [in] */ __RPC__in LPCOLESTR pszFilename, /* [out] */ __RPC__deref_out_opt BSTR *pbstrProjTypeGuid); HRESULT ( STDMETHODCALLTYPE *PreCreateForOuter )( __RPC__in IVsAggregatableProjectFactory * This, /* [in] */ __RPC__in_opt IUnknown *punkOuter, /* [out] */ __RPC__deref_out_opt IUnknown **ppunkProject); END_INTERFACE } IVsAggregatableProjectFactoryVtbl; interface IVsAggregatableProjectFactory { CONST_VTBL struct IVsAggregatableProjectFactoryVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsAggregatableProjectFactory_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsAggregatableProjectFactory_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsAggregatableProjectFactory_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsAggregatableProjectFactory_GetAggregateProjectType(This,pszFilename,pbstrProjTypeGuid) \ ( (This)->lpVtbl -> GetAggregateProjectType(This,pszFilename,pbstrProjTypeGuid) ) #define IVsAggregatableProjectFactory_PreCreateForOuter(This,punkOuter,ppunkProject) \ ( (This)->lpVtbl -> PreCreateForOuter(This,punkOuter,ppunkProject) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsAggregatableProjectFactory_INTERFACE_DEFINED__ */ #ifndef __IVsParentProject2_INTERFACE_DEFINED__ #define __IVsParentProject2_INTERFACE_DEFINED__ /* interface IVsParentProject2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsParentProject2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("D63BB7D7-D7A0-4c02-AA85-7E9233797CDB") IVsParentProject2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE CreateNestedProject( /* [in] */ VSITEMID itemidLoc, /* [in] */ __RPC__in REFGUID rguidProjectType, /* [in] */ __RPC__in LPCOLESTR lpszMoniker, /* [in] */ __RPC__in LPCOLESTR lpszLocation, /* [in] */ __RPC__in LPCOLESTR lpszName, /* [in] */ VSCREATEPROJFLAGS grfCreateFlags, /* [in] */ __RPC__in REFGUID rguidProjectID, /* [in] */ __RPC__in REFIID iidProject, /* [iid_is][out] */ __RPC__deref_out_opt void **ppProject) = 0; virtual HRESULT STDMETHODCALLTYPE AddNestedSolution( /* [in] */ VSITEMID itemidLoc, /* [in] */ VSSLNOPENOPTIONS grfOpenOpts, /* [in] */ __RPC__in LPCOLESTR pszFilename) = 0; }; #else /* C style interface */ typedef struct IVsParentProject2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsParentProject2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsParentProject2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsParentProject2 * This); HRESULT ( STDMETHODCALLTYPE *CreateNestedProject )( __RPC__in IVsParentProject2 * This, /* [in] */ VSITEMID itemidLoc, /* [in] */ __RPC__in REFGUID rguidProjectType, /* [in] */ __RPC__in LPCOLESTR lpszMoniker, /* [in] */ __RPC__in LPCOLESTR lpszLocation, /* [in] */ __RPC__in LPCOLESTR lpszName, /* [in] */ VSCREATEPROJFLAGS grfCreateFlags, /* [in] */ __RPC__in REFGUID rguidProjectID, /* [in] */ __RPC__in REFIID iidProject, /* [iid_is][out] */ __RPC__deref_out_opt void **ppProject); HRESULT ( STDMETHODCALLTYPE *AddNestedSolution )( __RPC__in IVsParentProject2 * This, /* [in] */ VSITEMID itemidLoc, /* [in] */ VSSLNOPENOPTIONS grfOpenOpts, /* [in] */ __RPC__in LPCOLESTR pszFilename); END_INTERFACE } IVsParentProject2Vtbl; interface IVsParentProject2 { CONST_VTBL struct IVsParentProject2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsParentProject2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsParentProject2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsParentProject2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsParentProject2_CreateNestedProject(This,itemidLoc,rguidProjectType,lpszMoniker,lpszLocation,lpszName,grfCreateFlags,rguidProjectID,iidProject,ppProject) \ ( (This)->lpVtbl -> CreateNestedProject(This,itemidLoc,rguidProjectType,lpszMoniker,lpszLocation,lpszName,grfCreateFlags,rguidProjectID,iidProject,ppProject) ) #define IVsParentProject2_AddNestedSolution(This,itemidLoc,grfOpenOpts,pszFilename) \ ( (This)->lpVtbl -> AddNestedSolution(This,itemidLoc,grfOpenOpts,pszFilename) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsParentProject2_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0040 */ /* [local] */ enum _PersistStorageType { PST_PROJECT_FILE = 1, PST_USER_FILE = 2 } ; typedef DWORD PersistStorageType; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0040_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0040_v0_0_s_ifspec; #ifndef __IVsBuildPropertyStorage_INTERFACE_DEFINED__ #define __IVsBuildPropertyStorage_INTERFACE_DEFINED__ /* interface IVsBuildPropertyStorage */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsBuildPropertyStorage; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("E7355FDF-A118-48f5-9655-7EFD9D2DC352") IVsBuildPropertyStorage : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetPropertyValue( /* [in] */ __RPC__in LPCOLESTR pszPropName, /* [unique][in] */ __RPC__in_opt LPCOLESTR pszConfigName, /* [in] */ PersistStorageType storage, /* [retval][out] */ __RPC__deref_out_opt BSTR *pbstrPropValue) = 0; virtual HRESULT STDMETHODCALLTYPE SetPropertyValue( /* [in] */ __RPC__in LPCOLESTR pszPropName, /* [unique][in] */ __RPC__in_opt LPCOLESTR pszConfigName, /* [in] */ PersistStorageType storage, /* [in] */ __RPC__in LPCOLESTR pszPropValue) = 0; virtual HRESULT STDMETHODCALLTYPE RemoveProperty( /* [in] */ __RPC__in LPCOLESTR pszPropName, /* [unique][in] */ __RPC__in_opt LPCOLESTR pszConfigName, /* [in] */ PersistStorageType storage) = 0; virtual HRESULT STDMETHODCALLTYPE GetItemAttribute( /* [in] */ VSITEMID item, /* [in] */ __RPC__in LPCOLESTR pszAttributeName, /* [out] */ __RPC__deref_out_opt BSTR *pbstrAttributeValue) = 0; virtual HRESULT STDMETHODCALLTYPE SetItemAttribute( /* [in] */ VSITEMID item, /* [in] */ __RPC__in LPCOLESTR pszAttributeName, /* [in] */ __RPC__in LPCOLESTR pszAttributeValue) = 0; }; #else /* C style interface */ typedef struct IVsBuildPropertyStorageVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsBuildPropertyStorage * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsBuildPropertyStorage * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsBuildPropertyStorage * This); HRESULT ( STDMETHODCALLTYPE *GetPropertyValue )( __RPC__in IVsBuildPropertyStorage * This, /* [in] */ __RPC__in LPCOLESTR pszPropName, /* [unique][in] */ __RPC__in_opt LPCOLESTR pszConfigName, /* [in] */ PersistStorageType storage, /* [retval][out] */ __RPC__deref_out_opt BSTR *pbstrPropValue); HRESULT ( STDMETHODCALLTYPE *SetPropertyValue )( __RPC__in IVsBuildPropertyStorage * This, /* [in] */ __RPC__in LPCOLESTR pszPropName, /* [unique][in] */ __RPC__in_opt LPCOLESTR pszConfigName, /* [in] */ PersistStorageType storage, /* [in] */ __RPC__in LPCOLESTR pszPropValue); HRESULT ( STDMETHODCALLTYPE *RemoveProperty )( __RPC__in IVsBuildPropertyStorage * This, /* [in] */ __RPC__in LPCOLESTR pszPropName, /* [unique][in] */ __RPC__in_opt LPCOLESTR pszConfigName, /* [in] */ PersistStorageType storage); HRESULT ( STDMETHODCALLTYPE *GetItemAttribute )( __RPC__in IVsBuildPropertyStorage * This, /* [in] */ VSITEMID item, /* [in] */ __RPC__in LPCOLESTR pszAttributeName, /* [out] */ __RPC__deref_out_opt BSTR *pbstrAttributeValue); HRESULT ( STDMETHODCALLTYPE *SetItemAttribute )( __RPC__in IVsBuildPropertyStorage * This, /* [in] */ VSITEMID item, /* [in] */ __RPC__in LPCOLESTR pszAttributeName, /* [in] */ __RPC__in LPCOLESTR pszAttributeValue); END_INTERFACE } IVsBuildPropertyStorageVtbl; interface IVsBuildPropertyStorage { CONST_VTBL struct IVsBuildPropertyStorageVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsBuildPropertyStorage_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsBuildPropertyStorage_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsBuildPropertyStorage_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsBuildPropertyStorage_GetPropertyValue(This,pszPropName,pszConfigName,storage,pbstrPropValue) \ ( (This)->lpVtbl -> GetPropertyValue(This,pszPropName,pszConfigName,storage,pbstrPropValue) ) #define IVsBuildPropertyStorage_SetPropertyValue(This,pszPropName,pszConfigName,storage,pszPropValue) \ ( (This)->lpVtbl -> SetPropertyValue(This,pszPropName,pszConfigName,storage,pszPropValue) ) #define IVsBuildPropertyStorage_RemoveProperty(This,pszPropName,pszConfigName,storage) \ ( (This)->lpVtbl -> RemoveProperty(This,pszPropName,pszConfigName,storage) ) #define IVsBuildPropertyStorage_GetItemAttribute(This,item,pszAttributeName,pbstrAttributeValue) \ ( (This)->lpVtbl -> GetItemAttribute(This,item,pszAttributeName,pbstrAttributeValue) ) #define IVsBuildPropertyStorage_SetItemAttribute(This,item,pszAttributeName,pszAttributeValue) \ ( (This)->lpVtbl -> SetItemAttribute(This,item,pszAttributeName,pszAttributeValue) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsBuildPropertyStorage_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0041 */ /* [local] */ enum _BuildSystemKindFlags { BSK_MSBUILD = 1 } ; typedef DWORD BuildSystemKindFlags; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0041_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0041_v0_0_s_ifspec; #ifndef __IVsProjectBuildSystem_INTERFACE_DEFINED__ #define __IVsProjectBuildSystem_INTERFACE_DEFINED__ /* interface IVsProjectBuildSystem */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsProjectBuildSystem; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("eb0718c0-e050-4657-872b-e845cd4f617b") IVsProjectBuildSystem : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE SetHostObject( /* [in] */ __RPC__in LPCOLESTR pszTargetName, /* [in] */ __RPC__in LPCOLESTR pszTaskName, /* [in] */ __RPC__in_opt IUnknown *punkHostObject) = 0; virtual HRESULT STDMETHODCALLTYPE StartBatchEdit( void) = 0; virtual HRESULT STDMETHODCALLTYPE EndBatchEdit( void) = 0; virtual HRESULT STDMETHODCALLTYPE CancelBatchEdit( void) = 0; virtual HRESULT STDMETHODCALLTYPE BuildTarget( /* [in] */ __RPC__in LPCOLESTR pszTargetName, /* [retval][out] */ __RPC__out VARIANT_BOOL *pbSuccess) = 0; virtual HRESULT STDMETHODCALLTYPE GetBuildSystemKind( /* [retval][out] */ __RPC__out BuildSystemKindFlags *pBuildSystemKind) = 0; }; #else /* C style interface */ typedef struct IVsProjectBuildSystemVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsProjectBuildSystem * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsProjectBuildSystem * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsProjectBuildSystem * This); HRESULT ( STDMETHODCALLTYPE *SetHostObject )( __RPC__in IVsProjectBuildSystem * This, /* [in] */ __RPC__in LPCOLESTR pszTargetName, /* [in] */ __RPC__in LPCOLESTR pszTaskName, /* [in] */ __RPC__in_opt IUnknown *punkHostObject); HRESULT ( STDMETHODCALLTYPE *StartBatchEdit )( __RPC__in IVsProjectBuildSystem * This); HRESULT ( STDMETHODCALLTYPE *EndBatchEdit )( __RPC__in IVsProjectBuildSystem * This); HRESULT ( STDMETHODCALLTYPE *CancelBatchEdit )( __RPC__in IVsProjectBuildSystem * This); HRESULT ( STDMETHODCALLTYPE *BuildTarget )( __RPC__in IVsProjectBuildSystem * This, /* [in] */ __RPC__in LPCOLESTR pszTargetName, /* [retval][out] */ __RPC__out VARIANT_BOOL *pbSuccess); HRESULT ( STDMETHODCALLTYPE *GetBuildSystemKind )( __RPC__in IVsProjectBuildSystem * This, /* [retval][out] */ __RPC__out BuildSystemKindFlags *pBuildSystemKind); END_INTERFACE } IVsProjectBuildSystemVtbl; interface IVsProjectBuildSystem { CONST_VTBL struct IVsProjectBuildSystemVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsProjectBuildSystem_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsProjectBuildSystem_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsProjectBuildSystem_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsProjectBuildSystem_SetHostObject(This,pszTargetName,pszTaskName,punkHostObject) \ ( (This)->lpVtbl -> SetHostObject(This,pszTargetName,pszTaskName,punkHostObject) ) #define IVsProjectBuildSystem_StartBatchEdit(This) \ ( (This)->lpVtbl -> StartBatchEdit(This) ) #define IVsProjectBuildSystem_EndBatchEdit(This) \ ( (This)->lpVtbl -> EndBatchEdit(This) ) #define IVsProjectBuildSystem_CancelBatchEdit(This) \ ( (This)->lpVtbl -> CancelBatchEdit(This) ) #define IVsProjectBuildSystem_BuildTarget(This,pszTargetName,pbSuccess) \ ( (This)->lpVtbl -> BuildTarget(This,pszTargetName,pbSuccess) ) #define IVsProjectBuildSystem_GetBuildSystemKind(This,pBuildSystemKind) \ ( (This)->lpVtbl -> GetBuildSystemKind(This,pBuildSystemKind) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsProjectBuildSystem_INTERFACE_DEFINED__ */ #ifndef __IPersistXMLFragment_INTERFACE_DEFINED__ #define __IPersistXMLFragment_INTERFACE_DEFINED__ /* interface IPersistXMLFragment */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IPersistXMLFragment; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("6B0C8632-6F01-4e54-9645-FFE82A2F4FE9") IPersistXMLFragment : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE InitNew( /* [in] */ __RPC__in REFGUID guidFlavor, /* [in] */ PersistStorageType storage) = 0; virtual HRESULT STDMETHODCALLTYPE IsFragmentDirty( /* [in] */ PersistStorageType storage, /* [out] */ __RPC__out BOOL *pfDirty) = 0; virtual HRESULT STDMETHODCALLTYPE Load( /* [in] */ __RPC__in REFGUID guidFlavor, /* [in] */ PersistStorageType storage, /* [in] */ __RPC__in LPCOLESTR pszXMLFragment) = 0; virtual HRESULT STDMETHODCALLTYPE Save( /* [in] */ __RPC__in REFGUID guidFlavor, /* [in] */ PersistStorageType storage, /* [out] */ __RPC__deref_out_opt BSTR *pbstrXMLFragment, /* [in] */ BOOL fClearDirty) = 0; }; #else /* C style interface */ typedef struct IPersistXMLFragmentVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IPersistXMLFragment * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IPersistXMLFragment * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IPersistXMLFragment * This); HRESULT ( STDMETHODCALLTYPE *InitNew )( __RPC__in IPersistXMLFragment * This, /* [in] */ __RPC__in REFGUID guidFlavor, /* [in] */ PersistStorageType storage); HRESULT ( STDMETHODCALLTYPE *IsFragmentDirty )( __RPC__in IPersistXMLFragment * This, /* [in] */ PersistStorageType storage, /* [out] */ __RPC__out BOOL *pfDirty); HRESULT ( STDMETHODCALLTYPE *Load )( __RPC__in IPersistXMLFragment * This, /* [in] */ __RPC__in REFGUID guidFlavor, /* [in] */ PersistStorageType storage, /* [in] */ __RPC__in LPCOLESTR pszXMLFragment); HRESULT ( STDMETHODCALLTYPE *Save )( __RPC__in IPersistXMLFragment * This, /* [in] */ __RPC__in REFGUID guidFlavor, /* [in] */ PersistStorageType storage, /* [out] */ __RPC__deref_out_opt BSTR *pbstrXMLFragment, /* [in] */ BOOL fClearDirty); END_INTERFACE } IPersistXMLFragmentVtbl; interface IPersistXMLFragment { CONST_VTBL struct IPersistXMLFragmentVtbl *lpVtbl; }; #ifdef COBJMACROS #define IPersistXMLFragment_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IPersistXMLFragment_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IPersistXMLFragment_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IPersistXMLFragment_InitNew(This,guidFlavor,storage) \ ( (This)->lpVtbl -> InitNew(This,guidFlavor,storage) ) #define IPersistXMLFragment_IsFragmentDirty(This,storage,pfDirty) \ ( (This)->lpVtbl -> IsFragmentDirty(This,storage,pfDirty) ) #define IPersistXMLFragment_Load(This,guidFlavor,storage,pszXMLFragment) \ ( (This)->lpVtbl -> Load(This,guidFlavor,storage,pszXMLFragment) ) #define IPersistXMLFragment_Save(This,guidFlavor,storage,pbstrXMLFragment,fClearDirty) \ ( (This)->lpVtbl -> Save(This,guidFlavor,storage,pbstrXMLFragment,fClearDirty) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IPersistXMLFragment_INTERFACE_DEFINED__ */ #ifndef __IVsProjectFlavorCfg_INTERFACE_DEFINED__ #define __IVsProjectFlavorCfg_INTERFACE_DEFINED__ /* interface IVsProjectFlavorCfg */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsProjectFlavorCfg; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("3bffc423-6c82-46c0-af2a-79a3ed3eda93") IVsProjectFlavorCfg : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE get_CfgType( /* [in] */ __RPC__in REFIID iidCfg, /* [iid_is][out] */ __RPC__deref_out_opt void **ppCfg) = 0; virtual HRESULT STDMETHODCALLTYPE Close( void) = 0; }; #else /* C style interface */ typedef struct IVsProjectFlavorCfgVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsProjectFlavorCfg * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsProjectFlavorCfg * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsProjectFlavorCfg * This); HRESULT ( STDMETHODCALLTYPE *get_CfgType )( __RPC__in IVsProjectFlavorCfg * This, /* [in] */ __RPC__in REFIID iidCfg, /* [iid_is][out] */ __RPC__deref_out_opt void **ppCfg); HRESULT ( STDMETHODCALLTYPE *Close )( __RPC__in IVsProjectFlavorCfg * This); END_INTERFACE } IVsProjectFlavorCfgVtbl; interface IVsProjectFlavorCfg { CONST_VTBL struct IVsProjectFlavorCfgVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsProjectFlavorCfg_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsProjectFlavorCfg_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsProjectFlavorCfg_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsProjectFlavorCfg_get_CfgType(This,iidCfg,ppCfg) \ ( (This)->lpVtbl -> get_CfgType(This,iidCfg,ppCfg) ) #define IVsProjectFlavorCfg_Close(This) \ ( (This)->lpVtbl -> Close(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsProjectFlavorCfg_INTERFACE_DEFINED__ */ #ifndef __IVsProjectFlavorCfgOutputGroups_INTERFACE_DEFINED__ #define __IVsProjectFlavorCfgOutputGroups_INTERFACE_DEFINED__ /* interface IVsProjectFlavorCfgOutputGroups */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsProjectFlavorCfgOutputGroups; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("52F50FAC-B245-4a81-9A02-DBF8F115389B") IVsProjectFlavorCfgOutputGroups : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE CustomizeOutputGroup( /* [in] */ __RPC__in_opt IVsOutputGroup *pIn, /* [out] */ __RPC__deref_out_opt IVsOutputGroup **pOut) = 0; }; #else /* C style interface */ typedef struct IVsProjectFlavorCfgOutputGroupsVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsProjectFlavorCfgOutputGroups * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsProjectFlavorCfgOutputGroups * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsProjectFlavorCfgOutputGroups * This); HRESULT ( STDMETHODCALLTYPE *CustomizeOutputGroup )( __RPC__in IVsProjectFlavorCfgOutputGroups * This, /* [in] */ __RPC__in_opt IVsOutputGroup *pIn, /* [out] */ __RPC__deref_out_opt IVsOutputGroup **pOut); END_INTERFACE } IVsProjectFlavorCfgOutputGroupsVtbl; interface IVsProjectFlavorCfgOutputGroups { CONST_VTBL struct IVsProjectFlavorCfgOutputGroupsVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsProjectFlavorCfgOutputGroups_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsProjectFlavorCfgOutputGroups_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsProjectFlavorCfgOutputGroups_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsProjectFlavorCfgOutputGroups_CustomizeOutputGroup(This,pIn,pOut) \ ( (This)->lpVtbl -> CustomizeOutputGroup(This,pIn,pOut) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsProjectFlavorCfgOutputGroups_INTERFACE_DEFINED__ */ #ifndef __IVsProjectFlavorCfgProvider_INTERFACE_DEFINED__ #define __IVsProjectFlavorCfgProvider_INTERFACE_DEFINED__ /* interface IVsProjectFlavorCfgProvider */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsProjectFlavorCfgProvider; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("2b81d5f8-f8bd-4a65-8f51-f3bfcd51a924") IVsProjectFlavorCfgProvider : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE CreateProjectFlavorCfg( /* [in] */ __RPC__in_opt IVsCfg *pBaseProjectCfg, /* [out] */ __RPC__deref_out_opt IVsProjectFlavorCfg **ppFlavorCfg) = 0; }; #else /* C style interface */ typedef struct IVsProjectFlavorCfgProviderVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsProjectFlavorCfgProvider * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsProjectFlavorCfgProvider * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsProjectFlavorCfgProvider * This); HRESULT ( STDMETHODCALLTYPE *CreateProjectFlavorCfg )( __RPC__in IVsProjectFlavorCfgProvider * This, /* [in] */ __RPC__in_opt IVsCfg *pBaseProjectCfg, /* [out] */ __RPC__deref_out_opt IVsProjectFlavorCfg **ppFlavorCfg); END_INTERFACE } IVsProjectFlavorCfgProviderVtbl; interface IVsProjectFlavorCfgProvider { CONST_VTBL struct IVsProjectFlavorCfgProviderVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsProjectFlavorCfgProvider_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsProjectFlavorCfgProvider_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsProjectFlavorCfgProvider_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsProjectFlavorCfgProvider_CreateProjectFlavorCfg(This,pBaseProjectCfg,ppFlavorCfg) \ ( (This)->lpVtbl -> CreateProjectFlavorCfg(This,pBaseProjectCfg,ppFlavorCfg) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsProjectFlavorCfgProvider_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0046 */ /* [local] */ enum __UPDATE_REFERENCE_REASON { URR_PROJECT_OPEN = 0, URR_BUILD = ( URR_PROJECT_OPEN + 1 ) , URR_START_DEBUG = ( URR_BUILD + 1 ) , URR_REFERENCEPATH_CHANGED = ( URR_START_DEBUG + 1 ) , URR_REFERENCE_ADDED = ( URR_REFERENCEPATH_CHANGED + 1 ) , URR_REFERENCE_REMOVED = ( URR_REFERENCE_ADDED + 1 ) , URR_EXPLICIT_USER_ACTION = ( URR_REFERENCE_REMOVED + 1 ) } ; typedef DWORD UPDATE_REFERENCE_REASON; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0046_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0046_v0_0_s_ifspec; #ifndef __IVsProjectFlavorReferences_INTERFACE_DEFINED__ #define __IVsProjectFlavorReferences_INTERFACE_DEFINED__ /* interface IVsProjectFlavorReferences */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsProjectFlavorReferences; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("66DB9803-1019-48ca-99F2-DAD69E49532C") IVsProjectFlavorReferences : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE QueryAddProjectReference( /* [in] */ __RPC__in_opt IUnknown *pReferencedProject, /* [retval][out] */ __RPC__out BOOL *pbCanAdd) = 0; virtual HRESULT STDMETHODCALLTYPE QueryCanBeReferenced( /* [in] */ __RPC__in_opt IUnknown *pReferencingProject, /* [retval][out] */ __RPC__out BOOL *pbAllowReferenced) = 0; virtual HRESULT STDMETHODCALLTYPE QueryRefreshReferences( /* [in] */ UPDATE_REFERENCE_REASON reason, /* [retval][out] */ __RPC__out BOOL *pbUpdate) = 0; }; #else /* C style interface */ typedef struct IVsProjectFlavorReferencesVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsProjectFlavorReferences * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsProjectFlavorReferences * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsProjectFlavorReferences * This); HRESULT ( STDMETHODCALLTYPE *QueryAddProjectReference )( __RPC__in IVsProjectFlavorReferences * This, /* [in] */ __RPC__in_opt IUnknown *pReferencedProject, /* [retval][out] */ __RPC__out BOOL *pbCanAdd); HRESULT ( STDMETHODCALLTYPE *QueryCanBeReferenced )( __RPC__in IVsProjectFlavorReferences * This, /* [in] */ __RPC__in_opt IUnknown *pReferencingProject, /* [retval][out] */ __RPC__out BOOL *pbAllowReferenced); HRESULT ( STDMETHODCALLTYPE *QueryRefreshReferences )( __RPC__in IVsProjectFlavorReferences * This, /* [in] */ UPDATE_REFERENCE_REASON reason, /* [retval][out] */ __RPC__out BOOL *pbUpdate); END_INTERFACE } IVsProjectFlavorReferencesVtbl; interface IVsProjectFlavorReferences { CONST_VTBL struct IVsProjectFlavorReferencesVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsProjectFlavorReferences_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsProjectFlavorReferences_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsProjectFlavorReferences_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsProjectFlavorReferences_QueryAddProjectReference(This,pReferencedProject,pbCanAdd) \ ( (This)->lpVtbl -> QueryAddProjectReference(This,pReferencedProject,pbCanAdd) ) #define IVsProjectFlavorReferences_QueryCanBeReferenced(This,pReferencingProject,pbAllowReferenced) \ ( (This)->lpVtbl -> QueryCanBeReferenced(This,pReferencingProject,pbAllowReferenced) ) #define IVsProjectFlavorReferences_QueryRefreshReferences(This,reason,pbUpdate) \ ( (This)->lpVtbl -> QueryRefreshReferences(This,reason,pbUpdate) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsProjectFlavorReferences_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0047 */ /* [local] */ enum __VSTRANSACCELEXFLAGS { VSTAEXF_Default = 0, VSTAEXF_NoFireCommand = 0x1, VSTAEXF_IgnoreActiveKBScopes = 0x2, VSTAEXF_UseTextEditorKBScope = 0x4, VSTAEXF_UseGlobalKBScope = 0x8, VSTAEXF_AllowModalState = 0x10 } ; typedef DWORD VSTRANSACCELEXFLAGS; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0047_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0047_v0_0_s_ifspec; #ifndef __IVsFilterKeys2_INTERFACE_DEFINED__ #define __IVsFilterKeys2_INTERFACE_DEFINED__ /* interface IVsFilterKeys2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsFilterKeys2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("A1FF0D7C-1F51-4a95-B107-EC6FFE2C5794") IVsFilterKeys2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE TranslateAcceleratorEx( /* [in] */ __RPC__in LPMSG pMsg, /* [in] */ VSTRANSACCELEXFLAGS dwFlags, /* [in] */ DWORD cKeyBindingScopes, /* [size_is][in] */ __RPC__in_ecount_full(cKeyBindingScopes) const GUID rgguidKeyBindingScopes[ ], /* [out] */ __RPC__out GUID *pguidCmd, /* [out] */ __RPC__out DWORD *pdwCmd, /* [out] */ __RPC__out BOOL *fCmdTranslated, /* [out] */ __RPC__out BOOL *pfKeyComboStartsChord) = 0; }; #else /* C style interface */ typedef struct IVsFilterKeys2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsFilterKeys2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsFilterKeys2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsFilterKeys2 * This); HRESULT ( STDMETHODCALLTYPE *TranslateAcceleratorEx )( __RPC__in IVsFilterKeys2 * This, /* [in] */ __RPC__in LPMSG pMsg, /* [in] */ VSTRANSACCELEXFLAGS dwFlags, /* [in] */ DWORD cKeyBindingScopes, /* [size_is][in] */ __RPC__in_ecount_full(cKeyBindingScopes) const GUID rgguidKeyBindingScopes[ ], /* [out] */ __RPC__out GUID *pguidCmd, /* [out] */ __RPC__out DWORD *pdwCmd, /* [out] */ __RPC__out BOOL *fCmdTranslated, /* [out] */ __RPC__out BOOL *pfKeyComboStartsChord); END_INTERFACE } IVsFilterKeys2Vtbl; interface IVsFilterKeys2 { CONST_VTBL struct IVsFilterKeys2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsFilterKeys2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsFilterKeys2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsFilterKeys2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsFilterKeys2_TranslateAcceleratorEx(This,pMsg,dwFlags,cKeyBindingScopes,rgguidKeyBindingScopes,pguidCmd,pdwCmd,fCmdTranslated,pfKeyComboStartsChord) \ ( (This)->lpVtbl -> TranslateAcceleratorEx(This,pMsg,dwFlags,cKeyBindingScopes,rgguidKeyBindingScopes,pguidCmd,pdwCmd,fCmdTranslated,pfKeyComboStartsChord) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsFilterKeys2_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0048 */ /* [local] */ enum __UserSettingsFlags { USF_None = 0, USF_ResetOnImport = 0x1, USF_DisableOptimizations = 0x2 } ; typedef DWORD UserSettingsFlags; enum __VSSETTINGSERRORTYPES { vsSettingsErrorTypeSuccess = 0, vsSettingsErrorTypeError = 0x1, vsSettingsErrorTypeWarning = 0x2, vsSettingsErrorTypeRestart = 0x4, vsSettingsErrorTypeNotInstalled = 0x8, vsSettingsErrorTypeMask = 0xf } ; typedef DWORD VSSETTINGSERRORTYPES; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0048_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0048_v0_0_s_ifspec; #ifndef __IVsSettingsReader_INTERFACE_DEFINED__ #define __IVsSettingsReader_INTERFACE_DEFINED__ /* interface IVsSettingsReader */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsSettingsReader; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("38C38501-1428-4abb-8B27-2F0E1E6DD757") IVsSettingsReader : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE ReadSettingString( /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [retval][out] */ __RPC__deref_out_opt BSTR *pbstrSettingValue) = 0; virtual HRESULT STDMETHODCALLTYPE ReadSettingLong( /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [retval][out] */ __RPC__out long *plSettingValue) = 0; virtual HRESULT STDMETHODCALLTYPE ReadSettingBoolean( /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [retval][out] */ __RPC__out BOOL *pfSettingValue) = 0; virtual HRESULT STDMETHODCALLTYPE ReadSettingBytes( /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [out][in] */ __RPC__inout BYTE *pSettingValue, /* [out] */ __RPC__out long *plDataLength, /* [in] */ long lDataMax) = 0; virtual HRESULT STDMETHODCALLTYPE ReadSettingAttribute( /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [in] */ __RPC__in LPCOLESTR pszAttributeName, /* [retval][out] */ __RPC__deref_out_opt BSTR *pbstrSettingValue) = 0; virtual HRESULT STDMETHODCALLTYPE ReadSettingXml( /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [retval][out] */ __RPC__deref_out_opt IUnknown **ppIXMLDOMNode) = 0; virtual HRESULT STDMETHODCALLTYPE ReadSettingXmlAsString( /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [retval][out] */ __RPC__deref_out_opt BSTR *pbstrXML) = 0; virtual HRESULT STDMETHODCALLTYPE ReadCategoryVersion( /* [out] */ __RPC__out int *pnMajor, /* [out] */ __RPC__out int *pnMinor, /* [out] */ __RPC__out int *pnBuild, /* [out] */ __RPC__out int *pnRevision) = 0; virtual HRESULT STDMETHODCALLTYPE ReadFileVersion( /* [out] */ __RPC__out int *pnMajor, /* [out] */ __RPC__out int *pnMinor, /* [out] */ __RPC__out int *pnBuild, /* [out] */ __RPC__out int *pnRevision) = 0; virtual HRESULT STDMETHODCALLTYPE ReportError( /* [in] */ __RPC__in LPCOLESTR pszError, VSSETTINGSERRORTYPES dwErrorType) = 0; }; #else /* C style interface */ typedef struct IVsSettingsReaderVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsSettingsReader * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsSettingsReader * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsSettingsReader * This); HRESULT ( STDMETHODCALLTYPE *ReadSettingString )( __RPC__in IVsSettingsReader * This, /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [retval][out] */ __RPC__deref_out_opt BSTR *pbstrSettingValue); HRESULT ( STDMETHODCALLTYPE *ReadSettingLong )( __RPC__in IVsSettingsReader * This, /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [retval][out] */ __RPC__out long *plSettingValue); HRESULT ( STDMETHODCALLTYPE *ReadSettingBoolean )( __RPC__in IVsSettingsReader * This, /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [retval][out] */ __RPC__out BOOL *pfSettingValue); HRESULT ( STDMETHODCALLTYPE *ReadSettingBytes )( __RPC__in IVsSettingsReader * This, /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [out][in] */ __RPC__inout BYTE *pSettingValue, /* [out] */ __RPC__out long *plDataLength, /* [in] */ long lDataMax); HRESULT ( STDMETHODCALLTYPE *ReadSettingAttribute )( __RPC__in IVsSettingsReader * This, /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [in] */ __RPC__in LPCOLESTR pszAttributeName, /* [retval][out] */ __RPC__deref_out_opt BSTR *pbstrSettingValue); HRESULT ( STDMETHODCALLTYPE *ReadSettingXml )( __RPC__in IVsSettingsReader * This, /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [retval][out] */ __RPC__deref_out_opt IUnknown **ppIXMLDOMNode); HRESULT ( STDMETHODCALLTYPE *ReadSettingXmlAsString )( __RPC__in IVsSettingsReader * This, /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [retval][out] */ __RPC__deref_out_opt BSTR *pbstrXML); HRESULT ( STDMETHODCALLTYPE *ReadCategoryVersion )( __RPC__in IVsSettingsReader * This, /* [out] */ __RPC__out int *pnMajor, /* [out] */ __RPC__out int *pnMinor, /* [out] */ __RPC__out int *pnBuild, /* [out] */ __RPC__out int *pnRevision); HRESULT ( STDMETHODCALLTYPE *ReadFileVersion )( __RPC__in IVsSettingsReader * This, /* [out] */ __RPC__out int *pnMajor, /* [out] */ __RPC__out int *pnMinor, /* [out] */ __RPC__out int *pnBuild, /* [out] */ __RPC__out int *pnRevision); HRESULT ( STDMETHODCALLTYPE *ReportError )( __RPC__in IVsSettingsReader * This, /* [in] */ __RPC__in LPCOLESTR pszError, VSSETTINGSERRORTYPES dwErrorType); END_INTERFACE } IVsSettingsReaderVtbl; interface IVsSettingsReader { CONST_VTBL struct IVsSettingsReaderVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsSettingsReader_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsSettingsReader_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsSettingsReader_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsSettingsReader_ReadSettingString(This,pszSettingName,pbstrSettingValue) \ ( (This)->lpVtbl -> ReadSettingString(This,pszSettingName,pbstrSettingValue) ) #define IVsSettingsReader_ReadSettingLong(This,pszSettingName,plSettingValue) \ ( (This)->lpVtbl -> ReadSettingLong(This,pszSettingName,plSettingValue) ) #define IVsSettingsReader_ReadSettingBoolean(This,pszSettingName,pfSettingValue) \ ( (This)->lpVtbl -> ReadSettingBoolean(This,pszSettingName,pfSettingValue) ) #define IVsSettingsReader_ReadSettingBytes(This,pszSettingName,pSettingValue,plDataLength,lDataMax) \ ( (This)->lpVtbl -> ReadSettingBytes(This,pszSettingName,pSettingValue,plDataLength,lDataMax) ) #define IVsSettingsReader_ReadSettingAttribute(This,pszSettingName,pszAttributeName,pbstrSettingValue) \ ( (This)->lpVtbl -> ReadSettingAttribute(This,pszSettingName,pszAttributeName,pbstrSettingValue) ) #define IVsSettingsReader_ReadSettingXml(This,pszSettingName,ppIXMLDOMNode) \ ( (This)->lpVtbl -> ReadSettingXml(This,pszSettingName,ppIXMLDOMNode) ) #define IVsSettingsReader_ReadSettingXmlAsString(This,pszSettingName,pbstrXML) \ ( (This)->lpVtbl -> ReadSettingXmlAsString(This,pszSettingName,pbstrXML) ) #define IVsSettingsReader_ReadCategoryVersion(This,pnMajor,pnMinor,pnBuild,pnRevision) \ ( (This)->lpVtbl -> ReadCategoryVersion(This,pnMajor,pnMinor,pnBuild,pnRevision) ) #define IVsSettingsReader_ReadFileVersion(This,pnMajor,pnMinor,pnBuild,pnRevision) \ ( (This)->lpVtbl -> ReadFileVersion(This,pnMajor,pnMinor,pnBuild,pnRevision) ) #define IVsSettingsReader_ReportError(This,pszError,dwErrorType) \ ( (This)->lpVtbl -> ReportError(This,pszError,dwErrorType) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsSettingsReader_INTERFACE_DEFINED__ */ #ifndef __IVsSettingsWriter_INTERFACE_DEFINED__ #define __IVsSettingsWriter_INTERFACE_DEFINED__ /* interface IVsSettingsWriter */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsSettingsWriter; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("0F1CF980-AFC6-406e-958D-7F24287E3916") IVsSettingsWriter : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE WriteSettingString( /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [in] */ __RPC__in LPCOLESTR pszSettingValue) = 0; virtual HRESULT STDMETHODCALLTYPE WriteSettingLong( /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [in] */ long lSettingValue) = 0; virtual HRESULT STDMETHODCALLTYPE WriteSettingBoolean( /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [in] */ BOOL fSettingValue) = 0; virtual HRESULT STDMETHODCALLTYPE WriteSettingBytes( /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [size_is][in] */ __RPC__in_ecount_full(lDataLength) BYTE *pSettingValue, long lDataLength) = 0; virtual HRESULT STDMETHODCALLTYPE WriteSettingAttribute( /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [in] */ __RPC__in LPCOLESTR pszAttributeName, /* [in] */ __RPC__in LPCOLESTR pszSettingValue) = 0; virtual HRESULT STDMETHODCALLTYPE WriteSettingXml( /* [in] */ __RPC__in_opt IUnknown *pIXMLDOMNode) = 0; virtual HRESULT STDMETHODCALLTYPE WriteSettingXmlFromString( /* [in] */ __RPC__in LPCOLESTR szXML) = 0; virtual HRESULT STDMETHODCALLTYPE WriteCategoryVersion( /* [in] */ int nMajor, /* [in] */ int nMinor, /* [in] */ int nBuild, /* [in] */ int nRevision) = 0; virtual HRESULT STDMETHODCALLTYPE ReportError( /* [in] */ __RPC__in LPCOLESTR pszError, /* [in] */ VSSETTINGSERRORTYPES dwErrorType) = 0; }; #else /* C style interface */ typedef struct IVsSettingsWriterVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsSettingsWriter * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsSettingsWriter * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsSettingsWriter * This); HRESULT ( STDMETHODCALLTYPE *WriteSettingString )( __RPC__in IVsSettingsWriter * This, /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [in] */ __RPC__in LPCOLESTR pszSettingValue); HRESULT ( STDMETHODCALLTYPE *WriteSettingLong )( __RPC__in IVsSettingsWriter * This, /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [in] */ long lSettingValue); HRESULT ( STDMETHODCALLTYPE *WriteSettingBoolean )( __RPC__in IVsSettingsWriter * This, /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [in] */ BOOL fSettingValue); HRESULT ( STDMETHODCALLTYPE *WriteSettingBytes )( __RPC__in IVsSettingsWriter * This, /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [size_is][in] */ __RPC__in_ecount_full(lDataLength) BYTE *pSettingValue, long lDataLength); HRESULT ( STDMETHODCALLTYPE *WriteSettingAttribute )( __RPC__in IVsSettingsWriter * This, /* [in] */ __RPC__in LPCOLESTR pszSettingName, /* [in] */ __RPC__in LPCOLESTR pszAttributeName, /* [in] */ __RPC__in LPCOLESTR pszSettingValue); HRESULT ( STDMETHODCALLTYPE *WriteSettingXml )( __RPC__in IVsSettingsWriter * This, /* [in] */ __RPC__in_opt IUnknown *pIXMLDOMNode); HRESULT ( STDMETHODCALLTYPE *WriteSettingXmlFromString )( __RPC__in IVsSettingsWriter * This, /* [in] */ __RPC__in LPCOLESTR szXML); HRESULT ( STDMETHODCALLTYPE *WriteCategoryVersion )( __RPC__in IVsSettingsWriter * This, /* [in] */ int nMajor, /* [in] */ int nMinor, /* [in] */ int nBuild, /* [in] */ int nRevision); HRESULT ( STDMETHODCALLTYPE *ReportError )( __RPC__in IVsSettingsWriter * This, /* [in] */ __RPC__in LPCOLESTR pszError, /* [in] */ VSSETTINGSERRORTYPES dwErrorType); END_INTERFACE } IVsSettingsWriterVtbl; interface IVsSettingsWriter { CONST_VTBL struct IVsSettingsWriterVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsSettingsWriter_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsSettingsWriter_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsSettingsWriter_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsSettingsWriter_WriteSettingString(This,pszSettingName,pszSettingValue) \ ( (This)->lpVtbl -> WriteSettingString(This,pszSettingName,pszSettingValue) ) #define IVsSettingsWriter_WriteSettingLong(This,pszSettingName,lSettingValue) \ ( (This)->lpVtbl -> WriteSettingLong(This,pszSettingName,lSettingValue) ) #define IVsSettingsWriter_WriteSettingBoolean(This,pszSettingName,fSettingValue) \ ( (This)->lpVtbl -> WriteSettingBoolean(This,pszSettingName,fSettingValue) ) #define IVsSettingsWriter_WriteSettingBytes(This,pszSettingName,pSettingValue,lDataLength) \ ( (This)->lpVtbl -> WriteSettingBytes(This,pszSettingName,pSettingValue,lDataLength) ) #define IVsSettingsWriter_WriteSettingAttribute(This,pszSettingName,pszAttributeName,pszSettingValue) \ ( (This)->lpVtbl -> WriteSettingAttribute(This,pszSettingName,pszAttributeName,pszSettingValue) ) #define IVsSettingsWriter_WriteSettingXml(This,pIXMLDOMNode) \ ( (This)->lpVtbl -> WriteSettingXml(This,pIXMLDOMNode) ) #define IVsSettingsWriter_WriteSettingXmlFromString(This,szXML) \ ( (This)->lpVtbl -> WriteSettingXmlFromString(This,szXML) ) #define IVsSettingsWriter_WriteCategoryVersion(This,nMajor,nMinor,nBuild,nRevision) \ ( (This)->lpVtbl -> WriteCategoryVersion(This,nMajor,nMinor,nBuild,nRevision) ) #define IVsSettingsWriter_ReportError(This,pszError,dwErrorType) \ ( (This)->lpVtbl -> ReportError(This,pszError,dwErrorType) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsSettingsWriter_INTERFACE_DEFINED__ */ #ifndef __IVsUserSettings_INTERFACE_DEFINED__ #define __IVsUserSettings_INTERFACE_DEFINED__ /* interface IVsUserSettings */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsUserSettings; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("770E285D-3B7D-4342-B3C4-42BD9F53A300") IVsUserSettings : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE ExportSettings( /* [in] */ __RPC__in LPCOLESTR pszCategoryGUID, /* [in] */ __RPC__in_opt IVsSettingsWriter *pSettings) = 0; virtual HRESULT STDMETHODCALLTYPE ImportSettings( /* [in] */ __RPC__in LPCOLESTR pszCategoryGUID, /* [in] */ __RPC__in_opt IVsSettingsReader *pSettings, /* [in] */ UserSettingsFlags flags, /* [out][in] */ __RPC__inout BOOL *pfRestartRequired) = 0; }; #else /* C style interface */ typedef struct IVsUserSettingsVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsUserSettings * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsUserSettings * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsUserSettings * This); HRESULT ( STDMETHODCALLTYPE *ExportSettings )( __RPC__in IVsUserSettings * This, /* [in] */ __RPC__in LPCOLESTR pszCategoryGUID, /* [in] */ __RPC__in_opt IVsSettingsWriter *pSettings); HRESULT ( STDMETHODCALLTYPE *ImportSettings )( __RPC__in IVsUserSettings * This, /* [in] */ __RPC__in LPCOLESTR pszCategoryGUID, /* [in] */ __RPC__in_opt IVsSettingsReader *pSettings, /* [in] */ UserSettingsFlags flags, /* [out][in] */ __RPC__inout BOOL *pfRestartRequired); END_INTERFACE } IVsUserSettingsVtbl; interface IVsUserSettings { CONST_VTBL struct IVsUserSettingsVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsUserSettings_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsUserSettings_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsUserSettings_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsUserSettings_ExportSettings(This,pszCategoryGUID,pSettings) \ ( (This)->lpVtbl -> ExportSettings(This,pszCategoryGUID,pSettings) ) #define IVsUserSettings_ImportSettings(This,pszCategoryGUID,pSettings,flags,pfRestartRequired) \ ( (This)->lpVtbl -> ImportSettings(This,pszCategoryGUID,pSettings,flags,pfRestartRequired) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsUserSettings_INTERFACE_DEFINED__ */ #ifndef __SVsSettingsReader_INTERFACE_DEFINED__ #define __SVsSettingsReader_INTERFACE_DEFINED__ /* interface SVsSettingsReader */ /* [object][uuid] */ EXTERN_C const IID IID_SVsSettingsReader; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("7C1BD0D6-2086-46ab-8F07-B9335D0FE7D8") SVsSettingsReader : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsSettingsReaderVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsSettingsReader * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsSettingsReader * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsSettingsReader * This); END_INTERFACE } SVsSettingsReaderVtbl; interface SVsSettingsReader { CONST_VTBL struct SVsSettingsReaderVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsSettingsReader_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsSettingsReader_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsSettingsReader_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsSettingsReader_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0052 */ /* [local] */ #define SID_SVsSettingsReader IID_SVsSettingsReader extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0052_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0052_v0_0_s_ifspec; #ifndef __IVsUserSettingsQuery_INTERFACE_DEFINED__ #define __IVsUserSettingsQuery_INTERFACE_DEFINED__ /* interface IVsUserSettingsQuery */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsUserSettingsQuery; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("334E1F15-7D97-4231-81B0-998E4A960E69") IVsUserSettingsQuery : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE NeedExport( /* [in] */ __RPC__in LPCOLESTR szCategoryGUID, /* [out] */ __RPC__out BOOL *pfNeedExport) = 0; }; #else /* C style interface */ typedef struct IVsUserSettingsQueryVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsUserSettingsQuery * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsUserSettingsQuery * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsUserSettingsQuery * This); HRESULT ( STDMETHODCALLTYPE *NeedExport )( __RPC__in IVsUserSettingsQuery * This, /* [in] */ __RPC__in LPCOLESTR szCategoryGUID, /* [out] */ __RPC__out BOOL *pfNeedExport); END_INTERFACE } IVsUserSettingsQueryVtbl; interface IVsUserSettingsQuery { CONST_VTBL struct IVsUserSettingsQueryVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsUserSettingsQuery_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsUserSettingsQuery_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsUserSettingsQuery_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsUserSettingsQuery_NeedExport(This,szCategoryGUID,pfNeedExport) \ ( (This)->lpVtbl -> NeedExport(This,szCategoryGUID,pfNeedExport) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsUserSettingsQuery_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0053 */ /* [local] */ enum __VSPROFILELOCATIONS { PFL_LocationNone = 0, PFL_InstallDir = 0x1, PFL_SettingsDir = 0x2, PFL_Other = 0x4, PFL_AutoSave = 0x8, PFL_All = 0xffffffff } ; typedef DWORD VSPROFILELOCATIONS; enum __VSPROFILETEAMSETTINGSFLAGS { PTSF_CHECKFORUPDATE = 0, PTSF_UPDATEALWAYS = 0x1 } ; typedef DWORD VSPROFILETEAMSETTINGSFLAGS; enum __VSPROFILETEAMSETTINGSCHANGEDFLAGS { PTSCF_TEAMFILE_NOCHANGE = 0, PTSCF_TEAMFILE_CHANGED = 0x1, PTSCF_TEAMFILE_SAME = 0x2 } ; typedef DWORD VSPROFILETEAMSETTINGSCHANGEDFLAGS; enum __VSPROFILECATEGORYSECURITY { PCSEC_SAFE = 0, PCSEC_THREAT_VS = 0x1, PCSEC_THREAT_MACHINE = 0x2 } ; typedef DWORD VSPROFILECATEGORYSECURITY; enum __VSPROFILECATEGORYSENSITIVITY { PCSEN_SAFE = 0, PCSEN_PRIVACY = 0x1 } ; typedef DWORD VSPROFILECATEGORYSENSITIVITY; enum __VSPROFILEGETFILENAME { PGFN_EXPORT = 0x1, PGFN_SAVECURRENT = 0x2, PGFN_AUTOSAVE = 0x4 } ; typedef DWORD VSPROFILEGETFILENAME; enum __VSSETTINGSCOMPLETIONSTATUS { vsSettingsCompletionStatusNotStarted = 0, vsSettingsCompletionStatusIncomplete = 0x1, vsSettingsCompletionStatusComplete = 0x2, vsSettingsCompletionStatusStateMask = 0xf, vsSettingsCompletionStatusSuccess = 0, vsSettingsCompletionStatusWarnings = 0x10, vsSettingsCompletionStatusErrors = 0x20, vsSettingsCompletionStatusSuccessMask = 0xf0 } ; typedef DWORD VSSETTINGSCOMPLETIONSTATUS; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0053_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0053_v0_0_s_ifspec; #ifndef __IVsProfileSettingsFileInfo_INTERFACE_DEFINED__ #define __IVsProfileSettingsFileInfo_INTERFACE_DEFINED__ /* interface IVsProfileSettingsFileInfo */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsProfileSettingsFileInfo; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("8E8E55A9-4111-4808-A0D0-7F067FB3A62F") IVsProfileSettingsFileInfo : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetFilePath( /* [out] */ __RPC__deref_out_opt BSTR *pbstrFilePath) = 0; virtual HRESULT STDMETHODCALLTYPE GetFileLocation( /* [out] */ __RPC__out VSPROFILELOCATIONS *pfileLocation) = 0; virtual HRESULT STDMETHODCALLTYPE GetFriendlyName( /* [out] */ __RPC__deref_out_opt BSTR *pbstrFriendlyName) = 0; virtual HRESULT STDMETHODCALLTYPE GetDescription( /* [out] */ __RPC__deref_out_opt BSTR *pbstrDescription) = 0; virtual HRESULT STDMETHODCALLTYPE GetSettingsForImport( /* [out] */ __RPC__deref_out_opt IVsProfileSettingsTree **ppSettingsTree) = 0; }; #else /* C style interface */ typedef struct IVsProfileSettingsFileInfoVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsProfileSettingsFileInfo * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsProfileSettingsFileInfo * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsProfileSettingsFileInfo * This); HRESULT ( STDMETHODCALLTYPE *GetFilePath )( __RPC__in IVsProfileSettingsFileInfo * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrFilePath); HRESULT ( STDMETHODCALLTYPE *GetFileLocation )( __RPC__in IVsProfileSettingsFileInfo * This, /* [out] */ __RPC__out VSPROFILELOCATIONS *pfileLocation); HRESULT ( STDMETHODCALLTYPE *GetFriendlyName )( __RPC__in IVsProfileSettingsFileInfo * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrFriendlyName); HRESULT ( STDMETHODCALLTYPE *GetDescription )( __RPC__in IVsProfileSettingsFileInfo * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrDescription); HRESULT ( STDMETHODCALLTYPE *GetSettingsForImport )( __RPC__in IVsProfileSettingsFileInfo * This, /* [out] */ __RPC__deref_out_opt IVsProfileSettingsTree **ppSettingsTree); END_INTERFACE } IVsProfileSettingsFileInfoVtbl; interface IVsProfileSettingsFileInfo { CONST_VTBL struct IVsProfileSettingsFileInfoVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsProfileSettingsFileInfo_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsProfileSettingsFileInfo_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsProfileSettingsFileInfo_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsProfileSettingsFileInfo_GetFilePath(This,pbstrFilePath) \ ( (This)->lpVtbl -> GetFilePath(This,pbstrFilePath) ) #define IVsProfileSettingsFileInfo_GetFileLocation(This,pfileLocation) \ ( (This)->lpVtbl -> GetFileLocation(This,pfileLocation) ) #define IVsProfileSettingsFileInfo_GetFriendlyName(This,pbstrFriendlyName) \ ( (This)->lpVtbl -> GetFriendlyName(This,pbstrFriendlyName) ) #define IVsProfileSettingsFileInfo_GetDescription(This,pbstrDescription) \ ( (This)->lpVtbl -> GetDescription(This,pbstrDescription) ) #define IVsProfileSettingsFileInfo_GetSettingsForImport(This,ppSettingsTree) \ ( (This)->lpVtbl -> GetSettingsForImport(This,ppSettingsTree) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsProfileSettingsFileInfo_INTERFACE_DEFINED__ */ #ifndef __IVsProfileSettingsFileCollection_INTERFACE_DEFINED__ #define __IVsProfileSettingsFileCollection_INTERFACE_DEFINED__ /* interface IVsProfileSettingsFileCollection */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsProfileSettingsFileCollection; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("0FAF274A-3898-445a-822F-7D42927EFEF9") IVsProfileSettingsFileCollection : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetCount( /* [out] */ __RPC__out int *pCount) = 0; virtual HRESULT STDMETHODCALLTYPE GetSettingsFile( /* [in] */ int index, /* [out] */ __RPC__deref_out_opt IVsProfileSettingsFileInfo **ppFileInfo) = 0; virtual HRESULT STDMETHODCALLTYPE AddBrowseFile( /* [in] */ __RPC__in BSTR bstrFilePath, /* [out] */ __RPC__deref_out_opt IVsProfileSettingsFileInfo **ppFileInfo) = 0; }; #else /* C style interface */ typedef struct IVsProfileSettingsFileCollectionVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsProfileSettingsFileCollection * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsProfileSettingsFileCollection * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsProfileSettingsFileCollection * This); HRESULT ( STDMETHODCALLTYPE *GetCount )( __RPC__in IVsProfileSettingsFileCollection * This, /* [out] */ __RPC__out int *pCount); HRESULT ( STDMETHODCALLTYPE *GetSettingsFile )( __RPC__in IVsProfileSettingsFileCollection * This, /* [in] */ int index, /* [out] */ __RPC__deref_out_opt IVsProfileSettingsFileInfo **ppFileInfo); HRESULT ( STDMETHODCALLTYPE *AddBrowseFile )( __RPC__in IVsProfileSettingsFileCollection * This, /* [in] */ __RPC__in BSTR bstrFilePath, /* [out] */ __RPC__deref_out_opt IVsProfileSettingsFileInfo **ppFileInfo); END_INTERFACE } IVsProfileSettingsFileCollectionVtbl; interface IVsProfileSettingsFileCollection { CONST_VTBL struct IVsProfileSettingsFileCollectionVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsProfileSettingsFileCollection_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsProfileSettingsFileCollection_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsProfileSettingsFileCollection_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsProfileSettingsFileCollection_GetCount(This,pCount) \ ( (This)->lpVtbl -> GetCount(This,pCount) ) #define IVsProfileSettingsFileCollection_GetSettingsFile(This,index,ppFileInfo) \ ( (This)->lpVtbl -> GetSettingsFile(This,index,ppFileInfo) ) #define IVsProfileSettingsFileCollection_AddBrowseFile(This,bstrFilePath,ppFileInfo) \ ( (This)->lpVtbl -> AddBrowseFile(This,bstrFilePath,ppFileInfo) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsProfileSettingsFileCollection_INTERFACE_DEFINED__ */ #ifndef __IVsProfileSettingsTree_INTERFACE_DEFINED__ #define __IVsProfileSettingsTree_INTERFACE_DEFINED__ /* interface IVsProfileSettingsTree */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsProfileSettingsTree; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("23B6FED1-C3CB-4006-BAD0-64A7EB61DF39") IVsProfileSettingsTree : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetChildCount( /* [out] */ __RPC__out int *pCount) = 0; virtual HRESULT STDMETHODCALLTYPE GetChild( /* [in] */ int index, /* [out] */ __RPC__deref_out_opt IVsProfileSettingsTree **ppChildTree) = 0; virtual HRESULT STDMETHODCALLTYPE GetEnabledChildCount( /* [out] */ __RPC__out int *pCount) = 0; virtual HRESULT STDMETHODCALLTYPE GetDisplayName( /* [out] */ __RPC__deref_out_opt BSTR *pbstrName) = 0; virtual HRESULT STDMETHODCALLTYPE GetDescription( /* [out] */ __RPC__deref_out_opt BSTR *pbstrDescription) = 0; virtual HRESULT STDMETHODCALLTYPE GetCategory( /* [out] */ __RPC__deref_out_opt BSTR *pbstrCategory) = 0; virtual HRESULT STDMETHODCALLTYPE GetRegisteredName( /* [out] */ __RPC__deref_out_opt BSTR *pbstrRegisteredName) = 0; virtual HRESULT STDMETHODCALLTYPE GetNameForID( /* [out] */ __RPC__deref_out_opt BSTR *pbstrNameForID) = 0; virtual HRESULT STDMETHODCALLTYPE GetFullPath( /* [out] */ __RPC__deref_out_opt BSTR *pbstrFullPath) = 0; virtual HRESULT STDMETHODCALLTYPE GetPackage( /* [out] */ __RPC__deref_out_opt BSTR *pbstrPackage) = 0; virtual HRESULT STDMETHODCALLTYPE GetIsAutomationPropBased( /* [out] */ __RPC__out BOOL *pfAutoProp) = 0; virtual HRESULT STDMETHODCALLTYPE GetEnabled( /* [out] */ __RPC__out BOOL *pfEnabled) = 0; virtual HRESULT STDMETHODCALLTYPE SetEnabled( /* [in] */ BOOL fEnabled, /* [in] */ BOOL fIncludeChildren) = 0; virtual HRESULT STDMETHODCALLTYPE GetVisible( /* [out] */ __RPC__out BOOL *pfVisible) = 0; virtual HRESULT STDMETHODCALLTYPE GetAlternatePath( /* [out] */ __RPC__deref_out_opt BSTR *pbstrAlternatePath) = 0; virtual HRESULT STDMETHODCALLTYPE GetIsPlaceholder( /* [out] */ __RPC__out BOOL *pfPlaceholder) = 0; virtual HRESULT STDMETHODCALLTYPE GetRepresentedNode( /* [out] */ __RPC__deref_out_opt IVsProfileSettingsTree **ppRepresentedNode) = 0; virtual HRESULT STDMETHODCALLTYPE GetSecurityLevel( /* [out] */ __RPC__out VSPROFILECATEGORYSECURITY *pSecurityLevel) = 0; virtual HRESULT STDMETHODCALLTYPE GetSensitivityLevel( /* [out] */ __RPC__out VSPROFILECATEGORYSENSITIVITY *pSensitivityLevel) = 0; virtual HRESULT STDMETHODCALLTYPE FindChildTree( /* [in] */ __RPC__in BSTR bstrNameSearch, /* [out] */ __RPC__deref_out_opt IVsProfileSettingsTree **ppChildTree) = 0; virtual HRESULT STDMETHODCALLTYPE AddChildTree( /* [in] */ __RPC__in_opt IVsProfileSettingsTree *pChildTree) = 0; virtual HRESULT STDMETHODCALLTYPE RevisePlacements( /* [in] */ __RPC__in_opt IVsProfileSettingsTree *pTreeRoot, /* [in] */ __RPC__in_opt IVsProfileSettingsTree *pTreeRootBasis, /* [in] */ __RPC__in BSTR bstrCurrentParent) = 0; }; #else /* C style interface */ typedef struct IVsProfileSettingsTreeVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsProfileSettingsTree * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsProfileSettingsTree * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsProfileSettingsTree * This); HRESULT ( STDMETHODCALLTYPE *GetChildCount )( __RPC__in IVsProfileSettingsTree * This, /* [out] */ __RPC__out int *pCount); HRESULT ( STDMETHODCALLTYPE *GetChild )( __RPC__in IVsProfileSettingsTree * This, /* [in] */ int index, /* [out] */ __RPC__deref_out_opt IVsProfileSettingsTree **ppChildTree); HRESULT ( STDMETHODCALLTYPE *GetEnabledChildCount )( __RPC__in IVsProfileSettingsTree * This, /* [out] */ __RPC__out int *pCount); HRESULT ( STDMETHODCALLTYPE *GetDisplayName )( __RPC__in IVsProfileSettingsTree * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrName); HRESULT ( STDMETHODCALLTYPE *GetDescription )( __RPC__in IVsProfileSettingsTree * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrDescription); HRESULT ( STDMETHODCALLTYPE *GetCategory )( __RPC__in IVsProfileSettingsTree * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrCategory); HRESULT ( STDMETHODCALLTYPE *GetRegisteredName )( __RPC__in IVsProfileSettingsTree * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrRegisteredName); HRESULT ( STDMETHODCALLTYPE *GetNameForID )( __RPC__in IVsProfileSettingsTree * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrNameForID); HRESULT ( STDMETHODCALLTYPE *GetFullPath )( __RPC__in IVsProfileSettingsTree * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrFullPath); HRESULT ( STDMETHODCALLTYPE *GetPackage )( __RPC__in IVsProfileSettingsTree * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrPackage); HRESULT ( STDMETHODCALLTYPE *GetIsAutomationPropBased )( __RPC__in IVsProfileSettingsTree * This, /* [out] */ __RPC__out BOOL *pfAutoProp); HRESULT ( STDMETHODCALLTYPE *GetEnabled )( __RPC__in IVsProfileSettingsTree * This, /* [out] */ __RPC__out BOOL *pfEnabled); HRESULT ( STDMETHODCALLTYPE *SetEnabled )( __RPC__in IVsProfileSettingsTree * This, /* [in] */ BOOL fEnabled, /* [in] */ BOOL fIncludeChildren); HRESULT ( STDMETHODCALLTYPE *GetVisible )( __RPC__in IVsProfileSettingsTree * This, /* [out] */ __RPC__out BOOL *pfVisible); HRESULT ( STDMETHODCALLTYPE *GetAlternatePath )( __RPC__in IVsProfileSettingsTree * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrAlternatePath); HRESULT ( STDMETHODCALLTYPE *GetIsPlaceholder )( __RPC__in IVsProfileSettingsTree * This, /* [out] */ __RPC__out BOOL *pfPlaceholder); HRESULT ( STDMETHODCALLTYPE *GetRepresentedNode )( __RPC__in IVsProfileSettingsTree * This, /* [out] */ __RPC__deref_out_opt IVsProfileSettingsTree **ppRepresentedNode); HRESULT ( STDMETHODCALLTYPE *GetSecurityLevel )( __RPC__in IVsProfileSettingsTree * This, /* [out] */ __RPC__out VSPROFILECATEGORYSECURITY *pSecurityLevel); HRESULT ( STDMETHODCALLTYPE *GetSensitivityLevel )( __RPC__in IVsProfileSettingsTree * This, /* [out] */ __RPC__out VSPROFILECATEGORYSENSITIVITY *pSensitivityLevel); HRESULT ( STDMETHODCALLTYPE *FindChildTree )( __RPC__in IVsProfileSettingsTree * This, /* [in] */ __RPC__in BSTR bstrNameSearch, /* [out] */ __RPC__deref_out_opt IVsProfileSettingsTree **ppChildTree); HRESULT ( STDMETHODCALLTYPE *AddChildTree )( __RPC__in IVsProfileSettingsTree * This, /* [in] */ __RPC__in_opt IVsProfileSettingsTree *pChildTree); HRESULT ( STDMETHODCALLTYPE *RevisePlacements )( __RPC__in IVsProfileSettingsTree * This, /* [in] */ __RPC__in_opt IVsProfileSettingsTree *pTreeRoot, /* [in] */ __RPC__in_opt IVsProfileSettingsTree *pTreeRootBasis, /* [in] */ __RPC__in BSTR bstrCurrentParent); END_INTERFACE } IVsProfileSettingsTreeVtbl; interface IVsProfileSettingsTree { CONST_VTBL struct IVsProfileSettingsTreeVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsProfileSettingsTree_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsProfileSettingsTree_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsProfileSettingsTree_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsProfileSettingsTree_GetChildCount(This,pCount) \ ( (This)->lpVtbl -> GetChildCount(This,pCount) ) #define IVsProfileSettingsTree_GetChild(This,index,ppChildTree) \ ( (This)->lpVtbl -> GetChild(This,index,ppChildTree) ) #define IVsProfileSettingsTree_GetEnabledChildCount(This,pCount) \ ( (This)->lpVtbl -> GetEnabledChildCount(This,pCount) ) #define IVsProfileSettingsTree_GetDisplayName(This,pbstrName) \ ( (This)->lpVtbl -> GetDisplayName(This,pbstrName) ) #define IVsProfileSettingsTree_GetDescription(This,pbstrDescription) \ ( (This)->lpVtbl -> GetDescription(This,pbstrDescription) ) #define IVsProfileSettingsTree_GetCategory(This,pbstrCategory) \ ( (This)->lpVtbl -> GetCategory(This,pbstrCategory) ) #define IVsProfileSettingsTree_GetRegisteredName(This,pbstrRegisteredName) \ ( (This)->lpVtbl -> GetRegisteredName(This,pbstrRegisteredName) ) #define IVsProfileSettingsTree_GetNameForID(This,pbstrNameForID) \ ( (This)->lpVtbl -> GetNameForID(This,pbstrNameForID) ) #define IVsProfileSettingsTree_GetFullPath(This,pbstrFullPath) \ ( (This)->lpVtbl -> GetFullPath(This,pbstrFullPath) ) #define IVsProfileSettingsTree_GetPackage(This,pbstrPackage) \ ( (This)->lpVtbl -> GetPackage(This,pbstrPackage) ) #define IVsProfileSettingsTree_GetIsAutomationPropBased(This,pfAutoProp) \ ( (This)->lpVtbl -> GetIsAutomationPropBased(This,pfAutoProp) ) #define IVsProfileSettingsTree_GetEnabled(This,pfEnabled) \ ( (This)->lpVtbl -> GetEnabled(This,pfEnabled) ) #define IVsProfileSettingsTree_SetEnabled(This,fEnabled,fIncludeChildren) \ ( (This)->lpVtbl -> SetEnabled(This,fEnabled,fIncludeChildren) ) #define IVsProfileSettingsTree_GetVisible(This,pfVisible) \ ( (This)->lpVtbl -> GetVisible(This,pfVisible) ) #define IVsProfileSettingsTree_GetAlternatePath(This,pbstrAlternatePath) \ ( (This)->lpVtbl -> GetAlternatePath(This,pbstrAlternatePath) ) #define IVsProfileSettingsTree_GetIsPlaceholder(This,pfPlaceholder) \ ( (This)->lpVtbl -> GetIsPlaceholder(This,pfPlaceholder) ) #define IVsProfileSettingsTree_GetRepresentedNode(This,ppRepresentedNode) \ ( (This)->lpVtbl -> GetRepresentedNode(This,ppRepresentedNode) ) #define IVsProfileSettingsTree_GetSecurityLevel(This,pSecurityLevel) \ ( (This)->lpVtbl -> GetSecurityLevel(This,pSecurityLevel) ) #define IVsProfileSettingsTree_GetSensitivityLevel(This,pSensitivityLevel) \ ( (This)->lpVtbl -> GetSensitivityLevel(This,pSensitivityLevel) ) #define IVsProfileSettingsTree_FindChildTree(This,bstrNameSearch,ppChildTree) \ ( (This)->lpVtbl -> FindChildTree(This,bstrNameSearch,ppChildTree) ) #define IVsProfileSettingsTree_AddChildTree(This,pChildTree) \ ( (This)->lpVtbl -> AddChildTree(This,pChildTree) ) #define IVsProfileSettingsTree_RevisePlacements(This,pTreeRoot,pTreeRootBasis,bstrCurrentParent) \ ( (This)->lpVtbl -> RevisePlacements(This,pTreeRoot,pTreeRootBasis,bstrCurrentParent) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsProfileSettingsTree_INTERFACE_DEFINED__ */ #ifndef __IVsSettingsErrorInformation_INTERFACE_DEFINED__ #define __IVsSettingsErrorInformation_INTERFACE_DEFINED__ /* interface IVsSettingsErrorInformation */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsSettingsErrorInformation; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("33D90D1C-2665-4eec-9194-A79AFD63275F") IVsSettingsErrorInformation : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetCompletionStatus( /* [retval][out] */ __RPC__out VSSETTINGSCOMPLETIONSTATUS *pdwCompletionStatus) = 0; virtual HRESULT STDMETHODCALLTYPE GetErrorCount( /* [retval][out] */ __RPC__out int *pnErrors) = 0; virtual HRESULT STDMETHODCALLTYPE GetErrorInfo( /* [in] */ int nErrorIndex, /* [out] */ __RPC__out VSSETTINGSERRORTYPES *pdwErrorType, /* [out] */ __RPC__deref_out_opt BSTR *pbstrError) = 0; }; #else /* C style interface */ typedef struct IVsSettingsErrorInformationVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsSettingsErrorInformation * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsSettingsErrorInformation * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsSettingsErrorInformation * This); HRESULT ( STDMETHODCALLTYPE *GetCompletionStatus )( __RPC__in IVsSettingsErrorInformation * This, /* [retval][out] */ __RPC__out VSSETTINGSCOMPLETIONSTATUS *pdwCompletionStatus); HRESULT ( STDMETHODCALLTYPE *GetErrorCount )( __RPC__in IVsSettingsErrorInformation * This, /* [retval][out] */ __RPC__out int *pnErrors); HRESULT ( STDMETHODCALLTYPE *GetErrorInfo )( __RPC__in IVsSettingsErrorInformation * This, /* [in] */ int nErrorIndex, /* [out] */ __RPC__out VSSETTINGSERRORTYPES *pdwErrorType, /* [out] */ __RPC__deref_out_opt BSTR *pbstrError); END_INTERFACE } IVsSettingsErrorInformationVtbl; interface IVsSettingsErrorInformation { CONST_VTBL struct IVsSettingsErrorInformationVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsSettingsErrorInformation_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsSettingsErrorInformation_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsSettingsErrorInformation_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsSettingsErrorInformation_GetCompletionStatus(This,pdwCompletionStatus) \ ( (This)->lpVtbl -> GetCompletionStatus(This,pdwCompletionStatus) ) #define IVsSettingsErrorInformation_GetErrorCount(This,pnErrors) \ ( (This)->lpVtbl -> GetErrorCount(This,pnErrors) ) #define IVsSettingsErrorInformation_GetErrorInfo(This,nErrorIndex,pdwErrorType,pbstrError) \ ( (This)->lpVtbl -> GetErrorInfo(This,nErrorIndex,pdwErrorType,pbstrError) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsSettingsErrorInformation_INTERFACE_DEFINED__ */ #ifndef __IVsProfileDataManager_INTERFACE_DEFINED__ #define __IVsProfileDataManager_INTERFACE_DEFINED__ /* interface IVsProfileDataManager */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsProfileDataManager; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("466EFAF6-F832-4079-83CD-4BBB02719C1D") IVsProfileDataManager : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE LastResetPoint( /* [out] */ __RPC__deref_out_opt BSTR *pbstrResetFilename) = 0; virtual HRESULT STDMETHODCALLTYPE GetSettingsFiles( /* [in] */ VSPROFILELOCATIONS fileLocations, /* [out] */ __RPC__deref_out_opt IVsProfileSettingsFileCollection **ppCollection) = 0; virtual HRESULT STDMETHODCALLTYPE GetDefaultSettingsLocation( /* [out] */ __RPC__deref_out_opt BSTR *pbstrSettingsLocation) = 0; virtual HRESULT STDMETHODCALLTYPE GetUniqueExportFileName( /* [in] */ VSPROFILEGETFILENAME flags, /* [out] */ __RPC__deref_out_opt BSTR *pbstrExportFile) = 0; virtual HRESULT STDMETHODCALLTYPE GetSettingsFileExtension( /* [out] */ __RPC__deref_out_opt BSTR *pbstrSettingsFileExtension) = 0; virtual HRESULT STDMETHODCALLTYPE GetSettingsForExport( /* [out] */ __RPC__deref_out_opt IVsProfileSettingsTree **ppSettingsTree) = 0; virtual HRESULT STDMETHODCALLTYPE ExportSettings( /* [in] */ __RPC__in BSTR bstrFilePath, /* [in] */ __RPC__in_opt IVsProfileSettingsTree *pSettingsTree, /* [out] */ __RPC__deref_out_opt IVsSettingsErrorInformation **ppsettingsErrorInformation) = 0; virtual HRESULT STDMETHODCALLTYPE ImportSettings( /* [in] */ __RPC__in_opt IVsProfileSettingsTree *pSettingsTree, /* [out] */ __RPC__deref_out_opt IVsSettingsErrorInformation **ppsettingsErrorInformation) = 0; virtual HRESULT STDMETHODCALLTYPE ResetSettings( /* [in] */ __RPC__in_opt IVsProfileSettingsFileInfo *pFileInfo, /* [out] */ __RPC__deref_out_opt IVsSettingsErrorInformation **ppsettingsErrorInformation) = 0; virtual HRESULT STDMETHODCALLTYPE ExportAllSettings( /* [in] */ __RPC__in BSTR bstrFilePath, /* [out] */ __RPC__deref_out_opt IVsSettingsErrorInformation **ppsettingsErrorInformation) = 0; virtual HRESULT STDMETHODCALLTYPE AutoSaveAllSettings( /* [out] */ __RPC__deref_out_opt IVsSettingsErrorInformation **ppsettingsErrorInformation) = 0; virtual HRESULT STDMETHODCALLTYPE CheckUpdateTeamSettings( /* [in] */ VSPROFILETEAMSETTINGSFLAGS dwFlags) = 0; virtual HRESULT STDMETHODCALLTYPE ReportTeamSettingsChanged( /* [in] */ VSPROFILETEAMSETTINGSCHANGEDFLAGS dwFlags) = 0; virtual HRESULT STDMETHODCALLTYPE ShowProfilesUI( void) = 0; }; #else /* C style interface */ typedef struct IVsProfileDataManagerVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsProfileDataManager * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsProfileDataManager * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsProfileDataManager * This); HRESULT ( STDMETHODCALLTYPE *LastResetPoint )( __RPC__in IVsProfileDataManager * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrResetFilename); HRESULT ( STDMETHODCALLTYPE *GetSettingsFiles )( __RPC__in IVsProfileDataManager * This, /* [in] */ VSPROFILELOCATIONS fileLocations, /* [out] */ __RPC__deref_out_opt IVsProfileSettingsFileCollection **ppCollection); HRESULT ( STDMETHODCALLTYPE *GetDefaultSettingsLocation )( __RPC__in IVsProfileDataManager * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrSettingsLocation); HRESULT ( STDMETHODCALLTYPE *GetUniqueExportFileName )( __RPC__in IVsProfileDataManager * This, /* [in] */ VSPROFILEGETFILENAME flags, /* [out] */ __RPC__deref_out_opt BSTR *pbstrExportFile); HRESULT ( STDMETHODCALLTYPE *GetSettingsFileExtension )( __RPC__in IVsProfileDataManager * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrSettingsFileExtension); HRESULT ( STDMETHODCALLTYPE *GetSettingsForExport )( __RPC__in IVsProfileDataManager * This, /* [out] */ __RPC__deref_out_opt IVsProfileSettingsTree **ppSettingsTree); HRESULT ( STDMETHODCALLTYPE *ExportSettings )( __RPC__in IVsProfileDataManager * This, /* [in] */ __RPC__in BSTR bstrFilePath, /* [in] */ __RPC__in_opt IVsProfileSettingsTree *pSettingsTree, /* [out] */ __RPC__deref_out_opt IVsSettingsErrorInformation **ppsettingsErrorInformation); HRESULT ( STDMETHODCALLTYPE *ImportSettings )( __RPC__in IVsProfileDataManager * This, /* [in] */ __RPC__in_opt IVsProfileSettingsTree *pSettingsTree, /* [out] */ __RPC__deref_out_opt IVsSettingsErrorInformation **ppsettingsErrorInformation); HRESULT ( STDMETHODCALLTYPE *ResetSettings )( __RPC__in IVsProfileDataManager * This, /* [in] */ __RPC__in_opt IVsProfileSettingsFileInfo *pFileInfo, /* [out] */ __RPC__deref_out_opt IVsSettingsErrorInformation **ppsettingsErrorInformation); HRESULT ( STDMETHODCALLTYPE *ExportAllSettings )( __RPC__in IVsProfileDataManager * This, /* [in] */ __RPC__in BSTR bstrFilePath, /* [out] */ __RPC__deref_out_opt IVsSettingsErrorInformation **ppsettingsErrorInformation); HRESULT ( STDMETHODCALLTYPE *AutoSaveAllSettings )( __RPC__in IVsProfileDataManager * This, /* [out] */ __RPC__deref_out_opt IVsSettingsErrorInformation **ppsettingsErrorInformation); HRESULT ( STDMETHODCALLTYPE *CheckUpdateTeamSettings )( __RPC__in IVsProfileDataManager * This, /* [in] */ VSPROFILETEAMSETTINGSFLAGS dwFlags); HRESULT ( STDMETHODCALLTYPE *ReportTeamSettingsChanged )( __RPC__in IVsProfileDataManager * This, /* [in] */ VSPROFILETEAMSETTINGSCHANGEDFLAGS dwFlags); HRESULT ( STDMETHODCALLTYPE *ShowProfilesUI )( __RPC__in IVsProfileDataManager * This); END_INTERFACE } IVsProfileDataManagerVtbl; interface IVsProfileDataManager { CONST_VTBL struct IVsProfileDataManagerVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsProfileDataManager_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsProfileDataManager_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsProfileDataManager_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsProfileDataManager_LastResetPoint(This,pbstrResetFilename) \ ( (This)->lpVtbl -> LastResetPoint(This,pbstrResetFilename) ) #define IVsProfileDataManager_GetSettingsFiles(This,fileLocations,ppCollection) \ ( (This)->lpVtbl -> GetSettingsFiles(This,fileLocations,ppCollection) ) #define IVsProfileDataManager_GetDefaultSettingsLocation(This,pbstrSettingsLocation) \ ( (This)->lpVtbl -> GetDefaultSettingsLocation(This,pbstrSettingsLocation) ) #define IVsProfileDataManager_GetUniqueExportFileName(This,flags,pbstrExportFile) \ ( (This)->lpVtbl -> GetUniqueExportFileName(This,flags,pbstrExportFile) ) #define IVsProfileDataManager_GetSettingsFileExtension(This,pbstrSettingsFileExtension) \ ( (This)->lpVtbl -> GetSettingsFileExtension(This,pbstrSettingsFileExtension) ) #define IVsProfileDataManager_GetSettingsForExport(This,ppSettingsTree) \ ( (This)->lpVtbl -> GetSettingsForExport(This,ppSettingsTree) ) #define IVsProfileDataManager_ExportSettings(This,bstrFilePath,pSettingsTree,ppsettingsErrorInformation) \ ( (This)->lpVtbl -> ExportSettings(This,bstrFilePath,pSettingsTree,ppsettingsErrorInformation) ) #define IVsProfileDataManager_ImportSettings(This,pSettingsTree,ppsettingsErrorInformation) \ ( (This)->lpVtbl -> ImportSettings(This,pSettingsTree,ppsettingsErrorInformation) ) #define IVsProfileDataManager_ResetSettings(This,pFileInfo,ppsettingsErrorInformation) \ ( (This)->lpVtbl -> ResetSettings(This,pFileInfo,ppsettingsErrorInformation) ) #define IVsProfileDataManager_ExportAllSettings(This,bstrFilePath,ppsettingsErrorInformation) \ ( (This)->lpVtbl -> ExportAllSettings(This,bstrFilePath,ppsettingsErrorInformation) ) #define IVsProfileDataManager_AutoSaveAllSettings(This,ppsettingsErrorInformation) \ ( (This)->lpVtbl -> AutoSaveAllSettings(This,ppsettingsErrorInformation) ) #define IVsProfileDataManager_CheckUpdateTeamSettings(This,dwFlags) \ ( (This)->lpVtbl -> CheckUpdateTeamSettings(This,dwFlags) ) #define IVsProfileDataManager_ReportTeamSettingsChanged(This,dwFlags) \ ( (This)->lpVtbl -> ReportTeamSettingsChanged(This,dwFlags) ) #define IVsProfileDataManager_ShowProfilesUI(This) \ ( (This)->lpVtbl -> ShowProfilesUI(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsProfileDataManager_INTERFACE_DEFINED__ */ #ifndef __SVsProfileDataManager_INTERFACE_DEFINED__ #define __SVsProfileDataManager_INTERFACE_DEFINED__ /* interface SVsProfileDataManager */ /* [object][uuid] */ EXTERN_C const IID IID_SVsProfileDataManager; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("20945017-0113-4636-BBFC-0716071B5B84") SVsProfileDataManager : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsProfileDataManagerVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsProfileDataManager * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsProfileDataManager * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsProfileDataManager * This); END_INTERFACE } SVsProfileDataManagerVtbl; interface SVsProfileDataManager { CONST_VTBL struct SVsProfileDataManagerVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsProfileDataManager_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsProfileDataManager_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsProfileDataManager_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsProfileDataManager_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0059 */ /* [local] */ #define SID_SVsProfileDataManager IID_SVsProfileDataManager extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0059_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0059_v0_0_s_ifspec; #ifndef __IVsDeferredSaveProject_INTERFACE_DEFINED__ #define __IVsDeferredSaveProject_INTERFACE_DEFINED__ /* interface IVsDeferredSaveProject */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsDeferredSaveProject; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("83B2961F-AC2B-409b-89BD-DCF698E3C402") IVsDeferredSaveProject : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE SaveProjectToLocation( /* [in] */ __RPC__in LPCOLESTR pszProjectFilename) = 0; }; #else /* C style interface */ typedef struct IVsDeferredSaveProjectVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsDeferredSaveProject * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsDeferredSaveProject * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsDeferredSaveProject * This); HRESULT ( STDMETHODCALLTYPE *SaveProjectToLocation )( __RPC__in IVsDeferredSaveProject * This, /* [in] */ __RPC__in LPCOLESTR pszProjectFilename); END_INTERFACE } IVsDeferredSaveProjectVtbl; interface IVsDeferredSaveProject { CONST_VTBL struct IVsDeferredSaveProjectVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsDeferredSaveProject_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsDeferredSaveProject_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsDeferredSaveProject_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsDeferredSaveProject_SaveProjectToLocation(This,pszProjectFilename) \ ( (This)->lpVtbl -> SaveProjectToLocation(This,pszProjectFilename) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsDeferredSaveProject_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0060 */ /* [local] */ enum __VSCREATENEWPROJVIADLGEXFLAGS { VNPVDE_ALWAYSNEWSOLUTION = 0x1, VNPVDE_OVERRIDEBROWSEBUTTON = 0x2, VNPVDE_ALWAYSADDTOSOLUTION = 0x4, VNPVDE_ADDNESTEDTOSELECTION = 0x8, VNPVDE_USENEWWEBSITEDLG = 0x10 } ; typedef DWORD VSCREATENEWPROJVIADLGEXFLAGS; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0060_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0060_v0_0_s_ifspec; #ifndef __IVsBrowseProjectLocation_INTERFACE_DEFINED__ #define __IVsBrowseProjectLocation_INTERFACE_DEFINED__ /* interface IVsBrowseProjectLocation */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsBrowseProjectLocation; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("368FC032-AE91-44a2-BE6B-093A8A9E63CC") IVsBrowseProjectLocation : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE BrowseProjectLocation( /* [in] */ __RPC__in LPCOLESTR pszStartDirectory, /* [out] */ __RPC__deref_out_opt BSTR *pbstrProjectLocation) = 0; }; #else /* C style interface */ typedef struct IVsBrowseProjectLocationVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsBrowseProjectLocation * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsBrowseProjectLocation * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsBrowseProjectLocation * This); HRESULT ( STDMETHODCALLTYPE *BrowseProjectLocation )( __RPC__in IVsBrowseProjectLocation * This, /* [in] */ __RPC__in LPCOLESTR pszStartDirectory, /* [out] */ __RPC__deref_out_opt BSTR *pbstrProjectLocation); END_INTERFACE } IVsBrowseProjectLocationVtbl; interface IVsBrowseProjectLocation { CONST_VTBL struct IVsBrowseProjectLocationVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsBrowseProjectLocation_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsBrowseProjectLocation_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsBrowseProjectLocation_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsBrowseProjectLocation_BrowseProjectLocation(This,pszStartDirectory,pbstrProjectLocation) \ ( (This)->lpVtbl -> BrowseProjectLocation(This,pszStartDirectory,pbstrProjectLocation) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsBrowseProjectLocation_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0061 */ /* [local] */ enum __VSSAVEDEFERREDSAVEFLAGS { VSDSF_HIDEADDTOSOURCECONTROL = 0x1 } ; typedef DWORD VSSAVEDEFERREDSAVEFLAGS; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0061_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0061_v0_0_s_ifspec; #ifndef __IVsSolution3_INTERFACE_DEFINED__ #define __IVsSolution3_INTERFACE_DEFINED__ /* interface IVsSolution3 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsSolution3; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("58DCF7BF-F14E-43ec-A7B2-9F78EDD06418") IVsSolution3 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE CreateNewProjectViaDlgEx( /* [in] */ __RPC__in LPCOLESTR pszDlgTitle, /* [in] */ __RPC__in LPCOLESTR pszTemplateDir, /* [in] */ __RPC__in LPCOLESTR pszExpand, /* [in] */ __RPC__in LPCOLESTR pszSelect, /* [in] */ __RPC__in LPCOLESTR pszHelpTopic, /* [in] */ VSCREATENEWPROJVIADLGEXFLAGS cnpvdeFlags, /* [in] */ __RPC__in_opt IVsBrowseProjectLocation *pBrowse) = 0; virtual HRESULT STDMETHODCALLTYPE GetUniqueUINameOfProject( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [out] */ __RPC__deref_out_opt BSTR *pbstrUniqueName) = 0; virtual HRESULT STDMETHODCALLTYPE CheckForAndSaveDeferredSaveSolution( /* [in] */ BOOL fCloseSolution, /* [in] */ __RPC__in LPCOLESTR pszMessage, /* [in] */ __RPC__in LPCOLESTR pszTitle, /* [in] */ VSSAVEDEFERREDSAVEFLAGS grfFlags) = 0; virtual HRESULT STDMETHODCALLTYPE UpdateProjectFileLocationForUpgrade( /* [in] */ __RPC__in LPCOLESTR pszCurrentLocation, /* [in] */ __RPC__in LPCOLESTR pszUpgradedLocation) = 0; }; #else /* C style interface */ typedef struct IVsSolution3Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsSolution3 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsSolution3 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsSolution3 * This); HRESULT ( STDMETHODCALLTYPE *CreateNewProjectViaDlgEx )( __RPC__in IVsSolution3 * This, /* [in] */ __RPC__in LPCOLESTR pszDlgTitle, /* [in] */ __RPC__in LPCOLESTR pszTemplateDir, /* [in] */ __RPC__in LPCOLESTR pszExpand, /* [in] */ __RPC__in LPCOLESTR pszSelect, /* [in] */ __RPC__in LPCOLESTR pszHelpTopic, /* [in] */ VSCREATENEWPROJVIADLGEXFLAGS cnpvdeFlags, /* [in] */ __RPC__in_opt IVsBrowseProjectLocation *pBrowse); HRESULT ( STDMETHODCALLTYPE *GetUniqueUINameOfProject )( __RPC__in IVsSolution3 * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [out] */ __RPC__deref_out_opt BSTR *pbstrUniqueName); HRESULT ( STDMETHODCALLTYPE *CheckForAndSaveDeferredSaveSolution )( __RPC__in IVsSolution3 * This, /* [in] */ BOOL fCloseSolution, /* [in] */ __RPC__in LPCOLESTR pszMessage, /* [in] */ __RPC__in LPCOLESTR pszTitle, /* [in] */ VSSAVEDEFERREDSAVEFLAGS grfFlags); HRESULT ( STDMETHODCALLTYPE *UpdateProjectFileLocationForUpgrade )( __RPC__in IVsSolution3 * This, /* [in] */ __RPC__in LPCOLESTR pszCurrentLocation, /* [in] */ __RPC__in LPCOLESTR pszUpgradedLocation); END_INTERFACE } IVsSolution3Vtbl; interface IVsSolution3 { CONST_VTBL struct IVsSolution3Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsSolution3_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsSolution3_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsSolution3_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsSolution3_CreateNewProjectViaDlgEx(This,pszDlgTitle,pszTemplateDir,pszExpand,pszSelect,pszHelpTopic,cnpvdeFlags,pBrowse) \ ( (This)->lpVtbl -> CreateNewProjectViaDlgEx(This,pszDlgTitle,pszTemplateDir,pszExpand,pszSelect,pszHelpTopic,cnpvdeFlags,pBrowse) ) #define IVsSolution3_GetUniqueUINameOfProject(This,pHierarchy,pbstrUniqueName) \ ( (This)->lpVtbl -> GetUniqueUINameOfProject(This,pHierarchy,pbstrUniqueName) ) #define IVsSolution3_CheckForAndSaveDeferredSaveSolution(This,fCloseSolution,pszMessage,pszTitle,grfFlags) \ ( (This)->lpVtbl -> CheckForAndSaveDeferredSaveSolution(This,fCloseSolution,pszMessage,pszTitle,grfFlags) ) #define IVsSolution3_UpdateProjectFileLocationForUpgrade(This,pszCurrentLocation,pszUpgradedLocation) \ ( (This)->lpVtbl -> UpdateProjectFileLocationForUpgrade(This,pszCurrentLocation,pszUpgradedLocation) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsSolution3_INTERFACE_DEFINED__ */ #ifndef __IVsConfigurationManagerDlg_INTERFACE_DEFINED__ #define __IVsConfigurationManagerDlg_INTERFACE_DEFINED__ /* interface IVsConfigurationManagerDlg */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsConfigurationManagerDlg; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("57F5E77F-75C9-42A3-8DAF-579C3556A0DD") IVsConfigurationManagerDlg : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE ShowConfigurationManagerDlg( void) = 0; }; #else /* C style interface */ typedef struct IVsConfigurationManagerDlgVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsConfigurationManagerDlg * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsConfigurationManagerDlg * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsConfigurationManagerDlg * This); HRESULT ( STDMETHODCALLTYPE *ShowConfigurationManagerDlg )( __RPC__in IVsConfigurationManagerDlg * This); END_INTERFACE } IVsConfigurationManagerDlgVtbl; interface IVsConfigurationManagerDlg { CONST_VTBL struct IVsConfigurationManagerDlgVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsConfigurationManagerDlg_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsConfigurationManagerDlg_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsConfigurationManagerDlg_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsConfigurationManagerDlg_ShowConfigurationManagerDlg(This) \ ( (This)->lpVtbl -> ShowConfigurationManagerDlg(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsConfigurationManagerDlg_INTERFACE_DEFINED__ */ #ifndef __SVsConfigurationManagerDlg_INTERFACE_DEFINED__ #define __SVsConfigurationManagerDlg_INTERFACE_DEFINED__ /* interface SVsConfigurationManagerDlg */ /* [object][uuid] */ EXTERN_C const IID IID_SVsConfigurationManagerDlg; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("8F435BAD-95A1-4032-8CD0-DC74F67CB106") SVsConfigurationManagerDlg : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsConfigurationManagerDlgVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsConfigurationManagerDlg * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsConfigurationManagerDlg * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsConfigurationManagerDlg * This); END_INTERFACE } SVsConfigurationManagerDlgVtbl; interface SVsConfigurationManagerDlg { CONST_VTBL struct SVsConfigurationManagerDlgVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsConfigurationManagerDlg_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsConfigurationManagerDlg_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsConfigurationManagerDlg_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsConfigurationManagerDlg_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0064 */ /* [local] */ #define SID_SVsConfigurationManagerDlg IID_SVsConfigurationManagerDlg extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0064_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0064_v0_0_s_ifspec; #ifndef __IVsUpdateSolutionEvents3_INTERFACE_DEFINED__ #define __IVsUpdateSolutionEvents3_INTERFACE_DEFINED__ /* interface IVsUpdateSolutionEvents3 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsUpdateSolutionEvents3; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("40025C28-3303-42CA-BED8-0F3BD856BD6D") IVsUpdateSolutionEvents3 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE OnBeforeActiveSolutionCfgChange( /* [in] */ __RPC__in_opt IVsCfg *pOldActiveSlnCfg, /* [in] */ __RPC__in_opt IVsCfg *pNewActiveSlnCfg) = 0; virtual HRESULT STDMETHODCALLTYPE OnAfterActiveSolutionCfgChange( /* [in] */ __RPC__in_opt IVsCfg *pOldActiveSlnCfg, /* [in] */ __RPC__in_opt IVsCfg *pNewActiveSlnCfg) = 0; }; #else /* C style interface */ typedef struct IVsUpdateSolutionEvents3Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsUpdateSolutionEvents3 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsUpdateSolutionEvents3 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsUpdateSolutionEvents3 * This); HRESULT ( STDMETHODCALLTYPE *OnBeforeActiveSolutionCfgChange )( __RPC__in IVsUpdateSolutionEvents3 * This, /* [in] */ __RPC__in_opt IVsCfg *pOldActiveSlnCfg, /* [in] */ __RPC__in_opt IVsCfg *pNewActiveSlnCfg); HRESULT ( STDMETHODCALLTYPE *OnAfterActiveSolutionCfgChange )( __RPC__in IVsUpdateSolutionEvents3 * This, /* [in] */ __RPC__in_opt IVsCfg *pOldActiveSlnCfg, /* [in] */ __RPC__in_opt IVsCfg *pNewActiveSlnCfg); END_INTERFACE } IVsUpdateSolutionEvents3Vtbl; interface IVsUpdateSolutionEvents3 { CONST_VTBL struct IVsUpdateSolutionEvents3Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsUpdateSolutionEvents3_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsUpdateSolutionEvents3_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsUpdateSolutionEvents3_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsUpdateSolutionEvents3_OnBeforeActiveSolutionCfgChange(This,pOldActiveSlnCfg,pNewActiveSlnCfg) \ ( (This)->lpVtbl -> OnBeforeActiveSolutionCfgChange(This,pOldActiveSlnCfg,pNewActiveSlnCfg) ) #define IVsUpdateSolutionEvents3_OnAfterActiveSolutionCfgChange(This,pOldActiveSlnCfg,pNewActiveSlnCfg) \ ( (This)->lpVtbl -> OnAfterActiveSolutionCfgChange(This,pOldActiveSlnCfg,pNewActiveSlnCfg) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsUpdateSolutionEvents3_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0065 */ /* [local] */ typedef enum _vsuptodatecheckflags { VSUTDCF_DTEEONLY = 0x1 } VsUpToDateCheckFlags; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0065_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0065_v0_0_s_ifspec; #ifndef __IVsSolutionBuildManager3_INTERFACE_DEFINED__ #define __IVsSolutionBuildManager3_INTERFACE_DEFINED__ /* interface IVsSolutionBuildManager3 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsSolutionBuildManager3; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("B6EA87ED-C498-4484-81AC-0BED187E28E6") IVsSolutionBuildManager3 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE AdviseUpdateSolutionEvents3( /* [in] */ __RPC__in_opt IVsUpdateSolutionEvents3 *pIVsUpdateSolutionEvents3, /* [out] */ __RPC__out VSCOOKIE *pdwCookie) = 0; virtual HRESULT STDMETHODCALLTYPE UnadviseUpdateSolutionEvents3( /* [in] */ VSCOOKIE dwCookie) = 0; virtual HRESULT STDMETHODCALLTYPE AreProjectsUpToDate( DWORD dwOptions) = 0; virtual HRESULT STDMETHODCALLTYPE HasHierarchyChangedSinceLastDTEE( void) = 0; virtual HRESULT STDMETHODCALLTYPE QueryBuildManagerBusyEx( /* [out] */ __RPC__out DWORD *pdwBuildManagerOperation) = 0; }; #else /* C style interface */ typedef struct IVsSolutionBuildManager3Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsSolutionBuildManager3 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsSolutionBuildManager3 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsSolutionBuildManager3 * This); HRESULT ( STDMETHODCALLTYPE *AdviseUpdateSolutionEvents3 )( __RPC__in IVsSolutionBuildManager3 * This, /* [in] */ __RPC__in_opt IVsUpdateSolutionEvents3 *pIVsUpdateSolutionEvents3, /* [out] */ __RPC__out VSCOOKIE *pdwCookie); HRESULT ( STDMETHODCALLTYPE *UnadviseUpdateSolutionEvents3 )( __RPC__in IVsSolutionBuildManager3 * This, /* [in] */ VSCOOKIE dwCookie); HRESULT ( STDMETHODCALLTYPE *AreProjectsUpToDate )( __RPC__in IVsSolutionBuildManager3 * This, DWORD dwOptions); HRESULT ( STDMETHODCALLTYPE *HasHierarchyChangedSinceLastDTEE )( __RPC__in IVsSolutionBuildManager3 * This); HRESULT ( STDMETHODCALLTYPE *QueryBuildManagerBusyEx )( __RPC__in IVsSolutionBuildManager3 * This, /* [out] */ __RPC__out DWORD *pdwBuildManagerOperation); END_INTERFACE } IVsSolutionBuildManager3Vtbl; interface IVsSolutionBuildManager3 { CONST_VTBL struct IVsSolutionBuildManager3Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsSolutionBuildManager3_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsSolutionBuildManager3_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsSolutionBuildManager3_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsSolutionBuildManager3_AdviseUpdateSolutionEvents3(This,pIVsUpdateSolutionEvents3,pdwCookie) \ ( (This)->lpVtbl -> AdviseUpdateSolutionEvents3(This,pIVsUpdateSolutionEvents3,pdwCookie) ) #define IVsSolutionBuildManager3_UnadviseUpdateSolutionEvents3(This,dwCookie) \ ( (This)->lpVtbl -> UnadviseUpdateSolutionEvents3(This,dwCookie) ) #define IVsSolutionBuildManager3_AreProjectsUpToDate(This,dwOptions) \ ( (This)->lpVtbl -> AreProjectsUpToDate(This,dwOptions) ) #define IVsSolutionBuildManager3_HasHierarchyChangedSinceLastDTEE(This) \ ( (This)->lpVtbl -> HasHierarchyChangedSinceLastDTEE(This) ) #define IVsSolutionBuildManager3_QueryBuildManagerBusyEx(This,pdwBuildManagerOperation) \ ( (This)->lpVtbl -> QueryBuildManagerBusyEx(This,pdwBuildManagerOperation) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsSolutionBuildManager3_INTERFACE_DEFINED__ */ #ifndef __IVsSingleFileGeneratorFactory_INTERFACE_DEFINED__ #define __IVsSingleFileGeneratorFactory_INTERFACE_DEFINED__ /* interface IVsSingleFileGeneratorFactory */ /* [object][uuid] */ EXTERN_C const IID IID_IVsSingleFileGeneratorFactory; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("3ADA7A5D-591E-4c9e-8B87-5E33F8E64AA8") IVsSingleFileGeneratorFactory : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetDefaultGenerator( /* [in] */ __RPC__in LPCOLESTR wszFilename, /* [retval][out] */ __RPC__deref_out_opt BSTR *pbstrGenProgID) = 0; virtual HRESULT STDMETHODCALLTYPE CreateGeneratorInstance( /* [in] */ __RPC__in LPCOLESTR wszProgId, /* [out] */ __RPC__out BOOL *pbGeneratesDesignTimeSource, /* [out] */ __RPC__out BOOL *pbGeneratesSharedDesignTimeSource, /* [out] */ __RPC__out BOOL *pbUseTempPEFlag, /* [out] */ __RPC__deref_out_opt IVsSingleFileGenerator **ppGenerate) = 0; virtual HRESULT STDMETHODCALLTYPE GetGeneratorInformation( /* [in] */ __RPC__in LPCWSTR wszProgID, /* [out] */ __RPC__out BOOL *pbGeneratesDesignTimeSource, /* [out] */ __RPC__out BOOL *pbGeneratesSharedDesignTimeSource, /* [out] */ __RPC__out BOOL *pbUseTempPEFlag, /* [out] */ __RPC__out GUID *pguidGenerator) = 0; }; #else /* C style interface */ typedef struct IVsSingleFileGeneratorFactoryVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsSingleFileGeneratorFactory * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsSingleFileGeneratorFactory * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsSingleFileGeneratorFactory * This); HRESULT ( STDMETHODCALLTYPE *GetDefaultGenerator )( __RPC__in IVsSingleFileGeneratorFactory * This, /* [in] */ __RPC__in LPCOLESTR wszFilename, /* [retval][out] */ __RPC__deref_out_opt BSTR *pbstrGenProgID); HRESULT ( STDMETHODCALLTYPE *CreateGeneratorInstance )( __RPC__in IVsSingleFileGeneratorFactory * This, /* [in] */ __RPC__in LPCOLESTR wszProgId, /* [out] */ __RPC__out BOOL *pbGeneratesDesignTimeSource, /* [out] */ __RPC__out BOOL *pbGeneratesSharedDesignTimeSource, /* [out] */ __RPC__out BOOL *pbUseTempPEFlag, /* [out] */ __RPC__deref_out_opt IVsSingleFileGenerator **ppGenerate); HRESULT ( STDMETHODCALLTYPE *GetGeneratorInformation )( __RPC__in IVsSingleFileGeneratorFactory * This, /* [in] */ __RPC__in LPCWSTR wszProgID, /* [out] */ __RPC__out BOOL *pbGeneratesDesignTimeSource, /* [out] */ __RPC__out BOOL *pbGeneratesSharedDesignTimeSource, /* [out] */ __RPC__out BOOL *pbUseTempPEFlag, /* [out] */ __RPC__out GUID *pguidGenerator); END_INTERFACE } IVsSingleFileGeneratorFactoryVtbl; interface IVsSingleFileGeneratorFactory { CONST_VTBL struct IVsSingleFileGeneratorFactoryVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsSingleFileGeneratorFactory_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsSingleFileGeneratorFactory_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsSingleFileGeneratorFactory_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsSingleFileGeneratorFactory_GetDefaultGenerator(This,wszFilename,pbstrGenProgID) \ ( (This)->lpVtbl -> GetDefaultGenerator(This,wszFilename,pbstrGenProgID) ) #define IVsSingleFileGeneratorFactory_CreateGeneratorInstance(This,wszProgId,pbGeneratesDesignTimeSource,pbGeneratesSharedDesignTimeSource,pbUseTempPEFlag,ppGenerate) \ ( (This)->lpVtbl -> CreateGeneratorInstance(This,wszProgId,pbGeneratesDesignTimeSource,pbGeneratesSharedDesignTimeSource,pbUseTempPEFlag,ppGenerate) ) #define IVsSingleFileGeneratorFactory_GetGeneratorInformation(This,wszProgID,pbGeneratesDesignTimeSource,pbGeneratesSharedDesignTimeSource,pbUseTempPEFlag,pguidGenerator) \ ( (This)->lpVtbl -> GetGeneratorInformation(This,wszProgID,pbGeneratesDesignTimeSource,pbGeneratesSharedDesignTimeSource,pbUseTempPEFlag,pguidGenerator) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsSingleFileGeneratorFactory_INTERFACE_DEFINED__ */ #ifndef __IVsStartPageDownload_INTERFACE_DEFINED__ #define __IVsStartPageDownload_INTERFACE_DEFINED__ /* interface IVsStartPageDownload */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsStartPageDownload; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("F5B2C031-7093-447f-8486-514FB2CCAD4F") IVsStartPageDownload : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE StartDownloadService( void) = 0; virtual HRESULT STDMETHODCALLTYPE StopDownloadService( void) = 0; }; #else /* C style interface */ typedef struct IVsStartPageDownloadVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsStartPageDownload * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsStartPageDownload * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsStartPageDownload * This); HRESULT ( STDMETHODCALLTYPE *StartDownloadService )( __RPC__in IVsStartPageDownload * This); HRESULT ( STDMETHODCALLTYPE *StopDownloadService )( __RPC__in IVsStartPageDownload * This); END_INTERFACE } IVsStartPageDownloadVtbl; interface IVsStartPageDownload { CONST_VTBL struct IVsStartPageDownloadVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsStartPageDownload_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsStartPageDownload_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsStartPageDownload_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsStartPageDownload_StartDownloadService(This) \ ( (This)->lpVtbl -> StartDownloadService(This) ) #define IVsStartPageDownload_StopDownloadService(This) \ ( (This)->lpVtbl -> StopDownloadService(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsStartPageDownload_INTERFACE_DEFINED__ */ #ifndef __SVsStartPageDownload_INTERFACE_DEFINED__ #define __SVsStartPageDownload_INTERFACE_DEFINED__ /* interface SVsStartPageDownload */ /* [object][uuid] */ EXTERN_C const IID IID_SVsStartPageDownload; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("A60FCE08-2F9C-4676-86F0-BCD4973FC702") SVsStartPageDownload : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsStartPageDownloadVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsStartPageDownload * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsStartPageDownload * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsStartPageDownload * This); END_INTERFACE } SVsStartPageDownloadVtbl; interface SVsStartPageDownload { CONST_VTBL struct SVsStartPageDownloadVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsStartPageDownload_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsStartPageDownload_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsStartPageDownload_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsStartPageDownload_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0069 */ /* [local] */ #define SID_SVsStartPageDownload IID_SVsStartPageDownload enum __VSMEINIT2 { MD_ITEMICONSUPPORT = 0x10000 } ; typedef DWORD VSMEINIT2; enum __MENUEDITOR_TRANSACTION { MENUEDITOR_TRANSACTION_DISCARD = -1, MENUEDITOR_TRANSACTION_ALL = ( MENUEDITOR_TRANSACTION_DISCARD + 1 ) , MENUEDITOR_TRANSACTION_CUT = ( MENUEDITOR_TRANSACTION_ALL + 1 ) , MENUEDITOR_TRANSACTION_PASTE = ( MENUEDITOR_TRANSACTION_CUT + 1 ) , MENUEDITOR_TRANSACTION_COPY = ( MENUEDITOR_TRANSACTION_PASTE + 1 ) , MENUEDITOR_TRANSACTION_DELETE = ( MENUEDITOR_TRANSACTION_COPY + 1 ) } ; typedef DWORD MENUEDITOR_TRANSACTION; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0069_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0069_v0_0_s_ifspec; #ifndef __IVsMenuEditorTransactionEvents_INTERFACE_DEFINED__ #define __IVsMenuEditorTransactionEvents_INTERFACE_DEFINED__ /* interface IVsMenuEditorTransactionEvents */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsMenuEditorTransactionEvents; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("A0E39F2D-1333-4e71-B3AC-FC7BBFD92D9E") IVsMenuEditorTransactionEvents : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE BeginTransaction( /* [in] */ MENUEDITOR_TRANSACTION trans) = 0; virtual HRESULT STDMETHODCALLTYPE EndTransaction( /* [in] */ MENUEDITOR_TRANSACTION trans) = 0; }; #else /* C style interface */ typedef struct IVsMenuEditorTransactionEventsVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsMenuEditorTransactionEvents * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsMenuEditorTransactionEvents * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsMenuEditorTransactionEvents * This); HRESULT ( STDMETHODCALLTYPE *BeginTransaction )( __RPC__in IVsMenuEditorTransactionEvents * This, /* [in] */ MENUEDITOR_TRANSACTION trans); HRESULT ( STDMETHODCALLTYPE *EndTransaction )( __RPC__in IVsMenuEditorTransactionEvents * This, /* [in] */ MENUEDITOR_TRANSACTION trans); END_INTERFACE } IVsMenuEditorTransactionEventsVtbl; interface IVsMenuEditorTransactionEvents { CONST_VTBL struct IVsMenuEditorTransactionEventsVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsMenuEditorTransactionEvents_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsMenuEditorTransactionEvents_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsMenuEditorTransactionEvents_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsMenuEditorTransactionEvents_BeginTransaction(This,trans) \ ( (This)->lpVtbl -> BeginTransaction(This,trans) ) #define IVsMenuEditorTransactionEvents_EndTransaction(This,trans) \ ( (This)->lpVtbl -> EndTransaction(This,trans) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsMenuEditorTransactionEvents_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0070 */ /* [local] */ enum __VSTWDFLAGS { VSTWDFLAGS_NOFLAGS = 0, VSTWDFLAGS_CANCELLABLE = 0x1, VSTWDFLAGS_TOPMOST = 0x2 } ; typedef DWORD VSTWDFLAGS; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0070_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0070_v0_0_s_ifspec; #ifndef __IVsThreadedWaitDialog_INTERFACE_DEFINED__ #define __IVsThreadedWaitDialog_INTERFACE_DEFINED__ /* interface IVsThreadedWaitDialog */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsThreadedWaitDialog; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("E051C7B7-7648-473c-8A7D-2B9554A31F9D") IVsThreadedWaitDialog : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE StartWaitDialog( /* [in] */ __RPC__in BSTR bstrWaitCaption, /* [in] */ __RPC__in BSTR bstrWaitMessage, /* [in] */ __RPC__in BSTR bstrIfTruncateAppend, /* [in] */ VSTWDFLAGS dwFlags, /* [in] */ VARIANT varStatusBmpAnim, /* [in] */ __RPC__in BSTR bstrStatusBarText) = 0; virtual HRESULT STDMETHODCALLTYPE EndWaitDialog( __RPC__in BOOL *pfCancelled) = 0; virtual HRESULT STDMETHODCALLTYPE GiveTimeSlice( /* [in] */ __RPC__in BSTR bstrUpdatedWaitMessage, /* [in] */ __RPC__in BSTR bstrIfTruncateAppend, /* [in] */ BOOL fDisableCancel, /* [out] */ __RPC__out BOOL *pfCancelled) = 0; }; #else /* C style interface */ typedef struct IVsThreadedWaitDialogVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsThreadedWaitDialog * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsThreadedWaitDialog * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsThreadedWaitDialog * This); HRESULT ( STDMETHODCALLTYPE *StartWaitDialog )( __RPC__in IVsThreadedWaitDialog * This, /* [in] */ __RPC__in BSTR bstrWaitCaption, /* [in] */ __RPC__in BSTR bstrWaitMessage, /* [in] */ __RPC__in BSTR bstrIfTruncateAppend, /* [in] */ VSTWDFLAGS dwFlags, /* [in] */ VARIANT varStatusBmpAnim, /* [in] */ __RPC__in BSTR bstrStatusBarText); HRESULT ( STDMETHODCALLTYPE *EndWaitDialog )( __RPC__in IVsThreadedWaitDialog * This, __RPC__in BOOL *pfCancelled); HRESULT ( STDMETHODCALLTYPE *GiveTimeSlice )( __RPC__in IVsThreadedWaitDialog * This, /* [in] */ __RPC__in BSTR bstrUpdatedWaitMessage, /* [in] */ __RPC__in BSTR bstrIfTruncateAppend, /* [in] */ BOOL fDisableCancel, /* [out] */ __RPC__out BOOL *pfCancelled); END_INTERFACE } IVsThreadedWaitDialogVtbl; interface IVsThreadedWaitDialog { CONST_VTBL struct IVsThreadedWaitDialogVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsThreadedWaitDialog_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsThreadedWaitDialog_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsThreadedWaitDialog_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsThreadedWaitDialog_StartWaitDialog(This,bstrWaitCaption,bstrWaitMessage,bstrIfTruncateAppend,dwFlags,varStatusBmpAnim,bstrStatusBarText) \ ( (This)->lpVtbl -> StartWaitDialog(This,bstrWaitCaption,bstrWaitMessage,bstrIfTruncateAppend,dwFlags,varStatusBmpAnim,bstrStatusBarText) ) #define IVsThreadedWaitDialog_EndWaitDialog(This,pfCancelled) \ ( (This)->lpVtbl -> EndWaitDialog(This,pfCancelled) ) #define IVsThreadedWaitDialog_GiveTimeSlice(This,bstrUpdatedWaitMessage,bstrIfTruncateAppend,fDisableCancel,pfCancelled) \ ( (This)->lpVtbl -> GiveTimeSlice(This,bstrUpdatedWaitMessage,bstrIfTruncateAppend,fDisableCancel,pfCancelled) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsThreadedWaitDialog_INTERFACE_DEFINED__ */ #ifndef __SVsThreadedWaitDialog_INTERFACE_DEFINED__ #define __SVsThreadedWaitDialog_INTERFACE_DEFINED__ /* interface SVsThreadedWaitDialog */ /* [object][uuid] */ EXTERN_C const IID IID_SVsThreadedWaitDialog; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("1AC64571-85CF-4234-AA00-B57E907E326A") SVsThreadedWaitDialog : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsThreadedWaitDialogVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsThreadedWaitDialog * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsThreadedWaitDialog * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsThreadedWaitDialog * This); END_INTERFACE } SVsThreadedWaitDialogVtbl; interface SVsThreadedWaitDialog { CONST_VTBL struct SVsThreadedWaitDialogVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsThreadedWaitDialog_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsThreadedWaitDialog_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsThreadedWaitDialog_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsThreadedWaitDialog_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0072 */ /* [local] */ #define SID_SVsThreadedWaitDialog IID_SVsThreadedWaitDialog extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0072_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0072_v0_0_s_ifspec; #ifndef __IVsProfilesManagerUI_INTERFACE_DEFINED__ #define __IVsProfilesManagerUI_INTERFACE_DEFINED__ /* interface IVsProfilesManagerUI */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsProfilesManagerUI; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("D06B7887-893C-439c-A231-8BF3E5335E30") IVsProfilesManagerUI : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE ShowProfilesUI( /* [in] */ __RPC__in_opt IVsProfileDataManager *pDataManager) = 0; }; #else /* C style interface */ typedef struct IVsProfilesManagerUIVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsProfilesManagerUI * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsProfilesManagerUI * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsProfilesManagerUI * This); HRESULT ( STDMETHODCALLTYPE *ShowProfilesUI )( __RPC__in IVsProfilesManagerUI * This, /* [in] */ __RPC__in_opt IVsProfileDataManager *pDataManager); END_INTERFACE } IVsProfilesManagerUIVtbl; interface IVsProfilesManagerUI { CONST_VTBL struct IVsProfilesManagerUIVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsProfilesManagerUI_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsProfilesManagerUI_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsProfilesManagerUI_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsProfilesManagerUI_ShowProfilesUI(This,pDataManager) \ ( (This)->lpVtbl -> ShowProfilesUI(This,pDataManager) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsProfilesManagerUI_INTERFACE_DEFINED__ */ #ifndef __SVsProfilesManagerUI_INTERFACE_DEFINED__ #define __SVsProfilesManagerUI_INTERFACE_DEFINED__ /* interface SVsProfilesManagerUI */ /* [object][uuid] */ EXTERN_C const IID IID_SVsProfilesManagerUI; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("3B0749FF-31E8-42d8-9CD2-F612148D7BDC") SVsProfilesManagerUI : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsProfilesManagerUIVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsProfilesManagerUI * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsProfilesManagerUI * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsProfilesManagerUI * This); END_INTERFACE } SVsProfilesManagerUIVtbl; interface SVsProfilesManagerUI { CONST_VTBL struct SVsProfilesManagerUIVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsProfilesManagerUI_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsProfilesManagerUI_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsProfilesManagerUI_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsProfilesManagerUI_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0074 */ /* [local] */ #define SID_SVsProfilesManagerUI IID_SVsProfilesManagerUI enum __XMLMEMBERDATA_TAGTYPE { XMLMEMBERDATA_TAGTYPE_CREF = 0 } ; typedef DWORD XMLMEMBERDATA_TAGTYPE; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0074_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0074_v0_0_s_ifspec; #ifndef __IVsXMLMemberDataCallBack_INTERFACE_DEFINED__ #define __IVsXMLMemberDataCallBack_INTERFACE_DEFINED__ /* interface IVsXMLMemberDataCallBack */ /* [object][uuid] */ EXTERN_C const IID IID_IVsXMLMemberDataCallBack; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("C7AE54AB-ABF2-494a-BC8C-C577ABB874C9") IVsXMLMemberDataCallBack : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetDisplayNameForTag( /* [in] */ XMLMEMBERDATA_TAGTYPE nTagType, /* [in] */ __RPC__in LPCOLESTR wszBufferIn, /* [out] */ __RPC__deref_out_opt BSTR *pbstrBufferOut) = 0; }; #else /* C style interface */ typedef struct IVsXMLMemberDataCallBackVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsXMLMemberDataCallBack * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsXMLMemberDataCallBack * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsXMLMemberDataCallBack * This); HRESULT ( STDMETHODCALLTYPE *GetDisplayNameForTag )( __RPC__in IVsXMLMemberDataCallBack * This, /* [in] */ XMLMEMBERDATA_TAGTYPE nTagType, /* [in] */ __RPC__in LPCOLESTR wszBufferIn, /* [out] */ __RPC__deref_out_opt BSTR *pbstrBufferOut); END_INTERFACE } IVsXMLMemberDataCallBackVtbl; interface IVsXMLMemberDataCallBack { CONST_VTBL struct IVsXMLMemberDataCallBackVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsXMLMemberDataCallBack_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsXMLMemberDataCallBack_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsXMLMemberDataCallBack_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsXMLMemberDataCallBack_GetDisplayNameForTag(This,nTagType,wszBufferIn,pbstrBufferOut) \ ( (This)->lpVtbl -> GetDisplayNameForTag(This,nTagType,wszBufferIn,pbstrBufferOut) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsXMLMemberDataCallBack_INTERFACE_DEFINED__ */ #ifndef __IVsXMLMemberDataRegisterCallBack_INTERFACE_DEFINED__ #define __IVsXMLMemberDataRegisterCallBack_INTERFACE_DEFINED__ /* interface IVsXMLMemberDataRegisterCallBack */ /* [object][uuid] */ EXTERN_C const IID IID_IVsXMLMemberDataRegisterCallBack; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("B9B17D7E-AAB8-43cb-AB40-B4E26E0B6D48") IVsXMLMemberDataRegisterCallBack : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE RegisterCallBack( /* [in] */ __RPC__in_opt IVsXMLMemberDataCallBack *pIVsXMLMemberDataCallBack) = 0; virtual HRESULT STDMETHODCALLTYPE UnregisterCallBack( void) = 0; }; #else /* C style interface */ typedef struct IVsXMLMemberDataRegisterCallBackVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsXMLMemberDataRegisterCallBack * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsXMLMemberDataRegisterCallBack * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsXMLMemberDataRegisterCallBack * This); HRESULT ( STDMETHODCALLTYPE *RegisterCallBack )( __RPC__in IVsXMLMemberDataRegisterCallBack * This, /* [in] */ __RPC__in_opt IVsXMLMemberDataCallBack *pIVsXMLMemberDataCallBack); HRESULT ( STDMETHODCALLTYPE *UnregisterCallBack )( __RPC__in IVsXMLMemberDataRegisterCallBack * This); END_INTERFACE } IVsXMLMemberDataRegisterCallBackVtbl; interface IVsXMLMemberDataRegisterCallBack { CONST_VTBL struct IVsXMLMemberDataRegisterCallBackVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsXMLMemberDataRegisterCallBack_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsXMLMemberDataRegisterCallBack_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsXMLMemberDataRegisterCallBack_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsXMLMemberDataRegisterCallBack_RegisterCallBack(This,pIVsXMLMemberDataCallBack) \ ( (This)->lpVtbl -> RegisterCallBack(This,pIVsXMLMemberDataCallBack) ) #define IVsXMLMemberDataRegisterCallBack_UnregisterCallBack(This) \ ( (This)->lpVtbl -> UnregisterCallBack(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsXMLMemberDataRegisterCallBack_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0076 */ /* [local] */ enum __XMLMEMBERDATA_OPTIONS { XMLMEMBERDATA_OPTIONS_NONE = 0, XMLMEMBERDATA_OPTIONS_PRESERVE_NEWLINES = 0x1 } ; typedef DWORD XMLMEMBERDATA_OPTIONS; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0076_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0076_v0_0_s_ifspec; #ifndef __IVsXMLMemberData3_INTERFACE_DEFINED__ #define __IVsXMLMemberData3_INTERFACE_DEFINED__ /* interface IVsXMLMemberData3 */ /* [object][uuid] */ EXTERN_C const IID IID_IVsXMLMemberData3; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("C04165C2-3CAC-4508-B651-DD24906DBD4D") IVsXMLMemberData3 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE SetOptions( /* [in] */ XMLMEMBERDATA_OPTIONS options) = 0; virtual HRESULT STDMETHODCALLTYPE GetSummaryText( /* [out] */ __RPC__deref_out_opt BSTR *pbstrSummary) = 0; virtual HRESULT STDMETHODCALLTYPE GetParamCount( /* [out] */ __RPC__out long *piParams) = 0; virtual HRESULT STDMETHODCALLTYPE GetParamTextAt( /* [in] */ long iParam, /* [out] */ __RPC__deref_out_opt BSTR *pbstrName, /* [out] */ __RPC__deref_out_opt BSTR *pbstrText) = 0; virtual HRESULT STDMETHODCALLTYPE GetReturnsText( /* [out] */ __RPC__deref_out_opt BSTR *pbstrReturns) = 0; virtual HRESULT STDMETHODCALLTYPE GetRemarksText( /* [out] */ __RPC__deref_out_opt BSTR *pbstrRemarks) = 0; virtual HRESULT STDMETHODCALLTYPE GetExceptionCount( /* [out] */ __RPC__out long *piExceptions) = 0; virtual HRESULT STDMETHODCALLTYPE GetExceptionTextAt( /* [in] */ long iException, /* [out] */ __RPC__deref_out_opt BSTR *pbstrType, /* [out] */ __RPC__deref_out_opt BSTR *pbstrText) = 0; virtual HRESULT STDMETHODCALLTYPE GetFilterPriority( /* [out] */ __RPC__out long *piFilterPriority) = 0; virtual HRESULT STDMETHODCALLTYPE GetCompletionListText( /* [out] */ __RPC__deref_out_opt BSTR *pbstrCompletionList) = 0; virtual HRESULT STDMETHODCALLTYPE GetCompletionListTextAt( /* [in] */ long iParam, /* [out] */ __RPC__deref_out_opt BSTR *pbstrCompletionList) = 0; virtual HRESULT STDMETHODCALLTYPE GetPermissionSet( /* [out] */ __RPC__deref_out_opt BSTR *pbstrPermissionSetXML) = 0; virtual HRESULT STDMETHODCALLTYPE GetTypeParamCount( /* [out] */ __RPC__out long *piTypeParams) = 0; virtual HRESULT STDMETHODCALLTYPE GetTypeParamTextAt( /* [in] */ long iTypeParam, /* [out] */ __RPC__deref_out_opt BSTR *pbstrName, /* [out] */ __RPC__deref_out_opt BSTR *pbstrText) = 0; }; #else /* C style interface */ typedef struct IVsXMLMemberData3Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsXMLMemberData3 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsXMLMemberData3 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsXMLMemberData3 * This); HRESULT ( STDMETHODCALLTYPE *SetOptions )( __RPC__in IVsXMLMemberData3 * This, /* [in] */ XMLMEMBERDATA_OPTIONS options); HRESULT ( STDMETHODCALLTYPE *GetSummaryText )( __RPC__in IVsXMLMemberData3 * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrSummary); HRESULT ( STDMETHODCALLTYPE *GetParamCount )( __RPC__in IVsXMLMemberData3 * This, /* [out] */ __RPC__out long *piParams); HRESULT ( STDMETHODCALLTYPE *GetParamTextAt )( __RPC__in IVsXMLMemberData3 * This, /* [in] */ long iParam, /* [out] */ __RPC__deref_out_opt BSTR *pbstrName, /* [out] */ __RPC__deref_out_opt BSTR *pbstrText); HRESULT ( STDMETHODCALLTYPE *GetReturnsText )( __RPC__in IVsXMLMemberData3 * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrReturns); HRESULT ( STDMETHODCALLTYPE *GetRemarksText )( __RPC__in IVsXMLMemberData3 * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrRemarks); HRESULT ( STDMETHODCALLTYPE *GetExceptionCount )( __RPC__in IVsXMLMemberData3 * This, /* [out] */ __RPC__out long *piExceptions); HRESULT ( STDMETHODCALLTYPE *GetExceptionTextAt )( __RPC__in IVsXMLMemberData3 * This, /* [in] */ long iException, /* [out] */ __RPC__deref_out_opt BSTR *pbstrType, /* [out] */ __RPC__deref_out_opt BSTR *pbstrText); HRESULT ( STDMETHODCALLTYPE *GetFilterPriority )( __RPC__in IVsXMLMemberData3 * This, /* [out] */ __RPC__out long *piFilterPriority); HRESULT ( STDMETHODCALLTYPE *GetCompletionListText )( __RPC__in IVsXMLMemberData3 * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrCompletionList); HRESULT ( STDMETHODCALLTYPE *GetCompletionListTextAt )( __RPC__in IVsXMLMemberData3 * This, /* [in] */ long iParam, /* [out] */ __RPC__deref_out_opt BSTR *pbstrCompletionList); HRESULT ( STDMETHODCALLTYPE *GetPermissionSet )( __RPC__in IVsXMLMemberData3 * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrPermissionSetXML); HRESULT ( STDMETHODCALLTYPE *GetTypeParamCount )( __RPC__in IVsXMLMemberData3 * This, /* [out] */ __RPC__out long *piTypeParams); HRESULT ( STDMETHODCALLTYPE *GetTypeParamTextAt )( __RPC__in IVsXMLMemberData3 * This, /* [in] */ long iTypeParam, /* [out] */ __RPC__deref_out_opt BSTR *pbstrName, /* [out] */ __RPC__deref_out_opt BSTR *pbstrText); END_INTERFACE } IVsXMLMemberData3Vtbl; interface IVsXMLMemberData3 { CONST_VTBL struct IVsXMLMemberData3Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsXMLMemberData3_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsXMLMemberData3_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsXMLMemberData3_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsXMLMemberData3_SetOptions(This,options) \ ( (This)->lpVtbl -> SetOptions(This,options) ) #define IVsXMLMemberData3_GetSummaryText(This,pbstrSummary) \ ( (This)->lpVtbl -> GetSummaryText(This,pbstrSummary) ) #define IVsXMLMemberData3_GetParamCount(This,piParams) \ ( (This)->lpVtbl -> GetParamCount(This,piParams) ) #define IVsXMLMemberData3_GetParamTextAt(This,iParam,pbstrName,pbstrText) \ ( (This)->lpVtbl -> GetParamTextAt(This,iParam,pbstrName,pbstrText) ) #define IVsXMLMemberData3_GetReturnsText(This,pbstrReturns) \ ( (This)->lpVtbl -> GetReturnsText(This,pbstrReturns) ) #define IVsXMLMemberData3_GetRemarksText(This,pbstrRemarks) \ ( (This)->lpVtbl -> GetRemarksText(This,pbstrRemarks) ) #define IVsXMLMemberData3_GetExceptionCount(This,piExceptions) \ ( (This)->lpVtbl -> GetExceptionCount(This,piExceptions) ) #define IVsXMLMemberData3_GetExceptionTextAt(This,iException,pbstrType,pbstrText) \ ( (This)->lpVtbl -> GetExceptionTextAt(This,iException,pbstrType,pbstrText) ) #define IVsXMLMemberData3_GetFilterPriority(This,piFilterPriority) \ ( (This)->lpVtbl -> GetFilterPriority(This,piFilterPriority) ) #define IVsXMLMemberData3_GetCompletionListText(This,pbstrCompletionList) \ ( (This)->lpVtbl -> GetCompletionListText(This,pbstrCompletionList) ) #define IVsXMLMemberData3_GetCompletionListTextAt(This,iParam,pbstrCompletionList) \ ( (This)->lpVtbl -> GetCompletionListTextAt(This,iParam,pbstrCompletionList) ) #define IVsXMLMemberData3_GetPermissionSet(This,pbstrPermissionSetXML) \ ( (This)->lpVtbl -> GetPermissionSet(This,pbstrPermissionSetXML) ) #define IVsXMLMemberData3_GetTypeParamCount(This,piTypeParams) \ ( (This)->lpVtbl -> GetTypeParamCount(This,piTypeParams) ) #define IVsXMLMemberData3_GetTypeParamTextAt(This,iTypeParam,pbstrName,pbstrText) \ ( (This)->lpVtbl -> GetTypeParamTextAt(This,iTypeParam,pbstrName,pbstrText) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsXMLMemberData3_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0077 */ /* [local] */ enum _LIB_LISTTYPE2 { LLT_NIL = 0, LLT_MEMBERHIERARCHY = 0x20 } ; typedef DWORD LIB_LISTTYPE2; typedef LIB_LISTTYPE2 LIBCAT_LISTTYPE2; #define COUNT_LIBCAT_LISTTYPE 6 enum _LIB_FLAGS2 { LF_SUPPORTSPROJECTREFERENCES = 0x10, LF_SUPPORTSFILTERING = 0x20, LF_SUPPORTSFILTERINGWITHEXPANSION = 0x40, LF_SUPPORTSCALLBROWSER = 0x80, LF_SUPPORTSLISTREFERENCES = 0x100, LF_SUPPORTSALWAYSUPDATE = 0x400, LF_SUPPORTSBASETYPES = 0x800, LF_SUPPORTSDERIVEDTYPES = 0x1000, LF_SUPPORTSINHERITEDMEMBERS = 0x2000, LF_SUPPORTSPRIVATEMEMBERS = 0x4000, LF_SUPPORTSCLASSDESIGNER = 0x8000, LF_SHOWFULLNAMESINFINDSYMBOLRESULTS = 0x10000 } ; typedef DWORD LIB_FLAGS2; enum _LIB_LISTCAPABILITIES2 { LLC_ALLOWELEMENTSEARCH = 0x100 } ; typedef DWORD LIB_LISTCAPABILITIES2; enum _VSOBSEARCHOPTIONS2 { VSOBSO_FILTERING = 0x100, VSOBSO_EXPANDCHILDREN = 0x200, VSOBSO_CALLSTO = 0x400, VSOBSO_CALLSFROM = 0x800, VSOBSO_LISTREFERENCES = 0x1000 } ; typedef DWORD VSOBSEARCHOPTIONS2; typedef struct _VSOBSEARCHCRITERIA2 { LPCOLESTR szName; VSOBSEARCHTYPE eSrchType; VSOBSEARCHOPTIONS2 grfOptions; DWORD dwCustom; IVsNavInfo *pIVsNavInfo; } VSOBSEARCHCRITERIA2; typedef struct _VSOBNAVNAMEINFONODE2 { WCHAR *pszName; LIB_LISTTYPE2 lltName; struct _VSOBNAVNAMEINFONODE2 *pNext; } VSOBNAVNAMEINFONODE2; typedef struct _VSOBNAVIGATIONINFO3 { GUID *pguidLib; WCHAR *pszLibName; VSOBNAVNAMEINFONODE2 *pName; DWORD dwCustom; } VSOBNAVIGATIONINFO3; enum _LIB_CATEGORY2 { LC_NIL = 0, LC_PHYSICALCONTAINERTYPE = 10, LC_HIERARCHYTYPE = 11, LC_MEMBERINHERITANCE = 12, LC_SEARCHMATCHTYPE = 13, LC_Last2 = LC_SEARCHMATCHTYPE } ; typedef LONG LIB_CATEGORY2; #define COUNT_LIB_CATEGORY2 13 enum _LIBCAT_CLASSTYPE2 { LCCT_TEMPLATE = 0x4000, LCCT_GENERIC = 0x8000, LCCT_ITERATOR = 0x10000 } ; typedef DWORD LIBCAT_CLASSTYPE2; #define COUNT_LIBCAT_CLASSTYPE2 17 enum _LIBCAT_MEMBERTYPE2 { LCMT_TEMPLATE = 0x4000, LCMT_GENERIC = 0x8000 } ; typedef DWORD LIBCAT_MEMBERTYPE2; #define COUNT_LIBCAT_MEMBERTYPE2 16 enum _LIBCAT_PHYSICALCONTAINERTYPE { LCPT_GLOBAL = 0x1, LCPT_PROJECTREFERENCE = 0x2, LCPT_PROJECT = 0x4 } ; typedef DWORD LIBCAT_PHYSICALCONTAINERTYPE; #define COUNT_LIBCAT_PHYSICALCONTAINERTYPE 3 enum _LIBCAT_HIERARCHYTYPE { LCHT_UNKNOWN = 0x1, LCHT_FOLDER = 0x2, LCHT_BASESANDINTERFACES = 0x4, LCHT_PROJECTREFERENCES = 0x8, LCHT_DERIVEDTYPES = 0x10, LCHT_INFO = 0x20 } ; typedef DWORD LIBCAT_HIERARCHYTYPE; #define COUNT_LIBCAT_HIERARCHYTYPE 5 enum _LIBCAT_MEMBERINHERITANCE { LCMI_IMMEDIATE = 0x1, LCMI_OVERRIDABLE = 0x2, LCMI_OVERRIDEREQUIRED = 0x4, LCMI_OVERRIDDEN = 0x8, LCMI_NOTOVERRIDABLE = 0x10, LCMI_INHERITED = 0x20 } ; typedef DWORD LIBCAT_MEMBERINHERITANCE; #define COUNT_LIBCAT_MEMBERINHERITANCE 6 enum _LIBCAT_SEARCHMATCHTYPE { LSMT_WHOLEWORD = 0x1, LSMT_WHOLEWORD_NO_CASE = 0x2, LSMT_LEAF_WHOLEWORD = 0x4, LSMT_LEAF_WHOLEWORD_NO_CASE = 0x8, LSMT_PART_WHOLEWORD = 0x10, LSMT_PART_WHOLEWORD_NO_CASE = 0x20, LSMT_PRESTRING = 0x40, LSMT_PRESTRING_NO_CASE = 0x80, LSMT_LEAF_PRESTRING = 0x100, LSMT_LEAF_PRESTRING_NO_CASE = 0x200, LSMT_PART_PRESTRING = 0x400, LSMT_PART_PRESTRING_NO_CASE = 0x800, LSMT_SUBSTRING = 0x1000, LSMT_SUBSTRING_NO_CASE = 0x2000, LSMT_NO_MATCH = 0x4000 } ; typedef DWORD LIBCAT_SEARCHMATCHTYPE; #define COUNT_LIBCAT_SEARCHMATCHTYPE 15 enum _VSOBJLISTELEMPROPID { VSOBJLISTELEMPROPID_FIRST = 1, VSOBJLISTELEMPROPID_HELPKEYWORD = 1, VSOBJLISTELEMPROPID_COMPONENTPATH = 2, VSOBJLISTELEMPROPID_CODEDEFVIEWCONTEXT = 3, VSOBJLISTELEMPROPID_SUPPORTSCALLSTO = 4, VSOBJLISTELEMPROPID_SUPPORTSCALLSFROM = 5, VSOBJLISTELEMPROPID_FULLNAME = 6, VSOBJLISTELEMPROPID_LEAFNAME = 7, VSOBJLISTELEMPROPID_NAME_FOR_RENAME = 8, VSOBJLISTELEMPROPID_LAST = 8 } ; typedef LONG VSOBJLISTELEMPROPID; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0077_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0077_v0_0_s_ifspec; #ifndef __IVsNavInfoNode_INTERFACE_DEFINED__ #define __IVsNavInfoNode_INTERFACE_DEFINED__ /* interface IVsNavInfoNode */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsNavInfoNode; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("1BD1DD01-1246-4694-9DA7-8ADCD9CA3275") IVsNavInfoNode : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE get_Type( /* [out] */ __RPC__out DWORD *pllt) = 0; virtual HRESULT STDMETHODCALLTYPE get_Name( /* [out] */ __RPC__deref_out_opt BSTR *pbstrName) = 0; }; #else /* C style interface */ typedef struct IVsNavInfoNodeVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsNavInfoNode * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsNavInfoNode * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsNavInfoNode * This); HRESULT ( STDMETHODCALLTYPE *get_Type )( __RPC__in IVsNavInfoNode * This, /* [out] */ __RPC__out DWORD *pllt); HRESULT ( STDMETHODCALLTYPE *get_Name )( __RPC__in IVsNavInfoNode * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrName); END_INTERFACE } IVsNavInfoNodeVtbl; interface IVsNavInfoNode { CONST_VTBL struct IVsNavInfoNodeVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsNavInfoNode_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsNavInfoNode_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsNavInfoNode_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsNavInfoNode_get_Type(This,pllt) \ ( (This)->lpVtbl -> get_Type(This,pllt) ) #define IVsNavInfoNode_get_Name(This,pbstrName) \ ( (This)->lpVtbl -> get_Name(This,pbstrName) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsNavInfoNode_INTERFACE_DEFINED__ */ #ifndef __IVsEnumNavInfoNodes_INTERFACE_DEFINED__ #define __IVsEnumNavInfoNodes_INTERFACE_DEFINED__ /* interface IVsEnumNavInfoNodes */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsEnumNavInfoNodes; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("D2042A65-5E86-4cfa-AD68-F2D6886628D7") IVsEnumNavInfoNodes : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE Next( /* [in] */ ULONG celt, /* [length_is][size_is][out] */ __RPC__out_ecount_part(celt, *pceltFetched) IVsNavInfoNode **rgelt, /* [out] */ __RPC__out ULONG *pceltFetched) = 0; virtual HRESULT STDMETHODCALLTYPE Skip( /* [in] */ ULONG celt) = 0; virtual HRESULT STDMETHODCALLTYPE Reset( void) = 0; virtual HRESULT STDMETHODCALLTYPE Clone( /* [out] */ __RPC__deref_out_opt IVsEnumNavInfoNodes **ppenum) = 0; }; #else /* C style interface */ typedef struct IVsEnumNavInfoNodesVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsEnumNavInfoNodes * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsEnumNavInfoNodes * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsEnumNavInfoNodes * This); HRESULT ( STDMETHODCALLTYPE *Next )( __RPC__in IVsEnumNavInfoNodes * This, /* [in] */ ULONG celt, /* [length_is][size_is][out] */ __RPC__out_ecount_part(celt, *pceltFetched) IVsNavInfoNode **rgelt, /* [out] */ __RPC__out ULONG *pceltFetched); HRESULT ( STDMETHODCALLTYPE *Skip )( __RPC__in IVsEnumNavInfoNodes * This, /* [in] */ ULONG celt); HRESULT ( STDMETHODCALLTYPE *Reset )( __RPC__in IVsEnumNavInfoNodes * This); HRESULT ( STDMETHODCALLTYPE *Clone )( __RPC__in IVsEnumNavInfoNodes * This, /* [out] */ __RPC__deref_out_opt IVsEnumNavInfoNodes **ppenum); END_INTERFACE } IVsEnumNavInfoNodesVtbl; interface IVsEnumNavInfoNodes { CONST_VTBL struct IVsEnumNavInfoNodesVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsEnumNavInfoNodes_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsEnumNavInfoNodes_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsEnumNavInfoNodes_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsEnumNavInfoNodes_Next(This,celt,rgelt,pceltFetched) \ ( (This)->lpVtbl -> Next(This,celt,rgelt,pceltFetched) ) #define IVsEnumNavInfoNodes_Skip(This,celt) \ ( (This)->lpVtbl -> Skip(This,celt) ) #define IVsEnumNavInfoNodes_Reset(This) \ ( (This)->lpVtbl -> Reset(This) ) #define IVsEnumNavInfoNodes_Clone(This,ppenum) \ ( (This)->lpVtbl -> Clone(This,ppenum) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsEnumNavInfoNodes_INTERFACE_DEFINED__ */ #ifndef __IVsNavInfo_INTERFACE_DEFINED__ #define __IVsNavInfo_INTERFACE_DEFINED__ /* interface IVsNavInfo */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsNavInfo; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("61772DB8-2D5B-49cb-9CE8-891459921F7F") IVsNavInfo : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetLibGuid( /* [out] */ __RPC__out GUID *pGuid) = 0; virtual HRESULT STDMETHODCALLTYPE GetSymbolType( /* [out] */ __RPC__out DWORD *pdwType) = 0; virtual HRESULT STDMETHODCALLTYPE EnumPresentationNodes( /* [in] */ DWORD dwFlags, /* [out] */ __RPC__deref_out_opt IVsEnumNavInfoNodes **ppEnum) = 0; virtual HRESULT STDMETHODCALLTYPE EnumCanonicalNodes( /* [out] */ __RPC__deref_out_opt IVsEnumNavInfoNodes **ppEnum) = 0; }; #else /* C style interface */ typedef struct IVsNavInfoVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsNavInfo * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsNavInfo * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsNavInfo * This); HRESULT ( STDMETHODCALLTYPE *GetLibGuid )( __RPC__in IVsNavInfo * This, /* [out] */ __RPC__out GUID *pGuid); HRESULT ( STDMETHODCALLTYPE *GetSymbolType )( __RPC__in IVsNavInfo * This, /* [out] */ __RPC__out DWORD *pdwType); HRESULT ( STDMETHODCALLTYPE *EnumPresentationNodes )( __RPC__in IVsNavInfo * This, /* [in] */ DWORD dwFlags, /* [out] */ __RPC__deref_out_opt IVsEnumNavInfoNodes **ppEnum); HRESULT ( STDMETHODCALLTYPE *EnumCanonicalNodes )( __RPC__in IVsNavInfo * This, /* [out] */ __RPC__deref_out_opt IVsEnumNavInfoNodes **ppEnum); END_INTERFACE } IVsNavInfoVtbl; interface IVsNavInfo { CONST_VTBL struct IVsNavInfoVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsNavInfo_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsNavInfo_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsNavInfo_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsNavInfo_GetLibGuid(This,pGuid) \ ( (This)->lpVtbl -> GetLibGuid(This,pGuid) ) #define IVsNavInfo_GetSymbolType(This,pdwType) \ ( (This)->lpVtbl -> GetSymbolType(This,pdwType) ) #define IVsNavInfo_EnumPresentationNodes(This,dwFlags,ppEnum) \ ( (This)->lpVtbl -> EnumPresentationNodes(This,dwFlags,ppEnum) ) #define IVsNavInfo_EnumCanonicalNodes(This,ppEnum) \ ( (This)->lpVtbl -> EnumCanonicalNodes(This,ppEnum) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsNavInfo_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0080 */ /* [local] */ typedef struct tagSymbolDescriptionNode { DWORD dwType; LPCOLESTR pszName; } SYMBOL_DESCRIPTION_NODE; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0080_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0080_v0_0_s_ifspec; #ifndef __IVsObjectBrowserDescription3_INTERFACE_DEFINED__ #define __IVsObjectBrowserDescription3_INTERFACE_DEFINED__ /* interface IVsObjectBrowserDescription3 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsObjectBrowserDescription3; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("2BCD7A6A-D251-4286-9A61-BDEDDE91114F") IVsObjectBrowserDescription3 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE AddDescriptionText3( /* [in] */ __RPC__in LPCWSTR pText, /* [in] */ VSOBDESCRIPTIONSECTION obdSect, /* [in] */ __RPC__in_opt IVsNavInfo *pHyperJump) = 0; virtual HRESULT STDMETHODCALLTYPE ClearDescriptionText( void) = 0; }; #else /* C style interface */ typedef struct IVsObjectBrowserDescription3Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsObjectBrowserDescription3 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsObjectBrowserDescription3 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsObjectBrowserDescription3 * This); HRESULT ( STDMETHODCALLTYPE *AddDescriptionText3 )( __RPC__in IVsObjectBrowserDescription3 * This, /* [in] */ __RPC__in LPCWSTR pText, /* [in] */ VSOBDESCRIPTIONSECTION obdSect, /* [in] */ __RPC__in_opt IVsNavInfo *pHyperJump); HRESULT ( STDMETHODCALLTYPE *ClearDescriptionText )( __RPC__in IVsObjectBrowserDescription3 * This); END_INTERFACE } IVsObjectBrowserDescription3Vtbl; interface IVsObjectBrowserDescription3 { CONST_VTBL struct IVsObjectBrowserDescription3Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsObjectBrowserDescription3_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsObjectBrowserDescription3_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsObjectBrowserDescription3_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsObjectBrowserDescription3_AddDescriptionText3(This,pText,obdSect,pHyperJump) \ ( (This)->lpVtbl -> AddDescriptionText3(This,pText,obdSect,pHyperJump) ) #define IVsObjectBrowserDescription3_ClearDescriptionText(This) \ ( (This)->lpVtbl -> ClearDescriptionText(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsObjectBrowserDescription3_INTERFACE_DEFINED__ */ #ifndef __IVsObjectList2_INTERFACE_DEFINED__ #define __IVsObjectList2_INTERFACE_DEFINED__ /* interface IVsObjectList2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsObjectList2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("E37F46C4-C627-4d88-A091-2992EE33B51D") IVsObjectList2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetFlags( /* [out] */ __RPC__out VSTREEFLAGS *pFlags) = 0; virtual HRESULT STDMETHODCALLTYPE GetItemCount( /* [out] */ __RPC__out ULONG *pCount) = 0; virtual HRESULT STDMETHODCALLTYPE GetExpandedList( /* [in] */ ULONG Index, /* [out] */ __RPC__out BOOL *pfCanRecurse, /* [out] */ __RPC__deref_out_opt IVsLiteTreeList **pptlNode) = 0; virtual HRESULT STDMETHODCALLTYPE LocateExpandedList( /* [in] */ __RPC__in_opt IVsLiteTreeList *ExpandedList, /* [out] */ __RPC__out ULONG *iIndex) = 0; virtual HRESULT STDMETHODCALLTYPE OnClose( /* [out] */ __RPC__out VSTREECLOSEACTIONS *ptca) = 0; virtual HRESULT STDMETHODCALLTYPE GetText( /* [in] */ ULONG Index, /* [in] */ VSTREETEXTOPTIONS tto, /* [string][out] */ __RPC__deref_out_opt_string const WCHAR **ppszText) = 0; virtual HRESULT STDMETHODCALLTYPE GetTipText( /* [in] */ ULONG Index, /* [in] */ VSTREETOOLTIPTYPE eTipType, /* [string][out] */ __RPC__deref_out_opt_string const WCHAR **ppszText) = 0; virtual HRESULT STDMETHODCALLTYPE GetExpandable( /* [in] */ ULONG Index, /* [out] */ __RPC__out BOOL *pfExpandable) = 0; virtual /* [local] */ HRESULT STDMETHODCALLTYPE GetDisplayData( /* [in] */ ULONG Index, /* [out] */ VSTREEDISPLAYDATA *pData) = 0; virtual HRESULT STDMETHODCALLTYPE UpdateCounter( /* [out] */ __RPC__out ULONG *pCurUpdate, /* [out] */ __RPC__out VSTREEITEMCHANGESMASK *pgrfChanges) = 0; virtual HRESULT STDMETHODCALLTYPE GetListChanges( /* [out][in] */ __RPC__inout ULONG *pcChanges, /* [size_is][in] */ __RPC__in_ecount_full(*pcChanges) VSTREELISTITEMCHANGE *prgListChanges) = 0; virtual HRESULT STDMETHODCALLTYPE ToggleState( /* [in] */ ULONG Index, /* [out] */ __RPC__out VSTREESTATECHANGEREFRESH *ptscr) = 0; virtual HRESULT STDMETHODCALLTYPE GetCapabilities2( /* [out] */ __RPC__out LIB_LISTCAPABILITIES2 *pgrfCapabilities) = 0; virtual HRESULT STDMETHODCALLTYPE GetList2( /* [in] */ ULONG Index, /* [in] */ LIB_LISTTYPE2 ListType, /* [in] */ LIB_LISTFLAGS Flags, /* [in] */ __RPC__in VSOBSEARCHCRITERIA2 *pobSrch, /* [retval][out] */ __RPC__deref_out_opt IVsObjectList2 **ppIVsObjectList2) = 0; virtual HRESULT STDMETHODCALLTYPE GetCategoryField2( /* [in] */ ULONG Index, /* [in] */ LIB_CATEGORY2 Category, /* [retval][out] */ __RPC__out DWORD *pfCatField) = 0; virtual HRESULT STDMETHODCALLTYPE GetExpandable3( /* [in] */ ULONG Index, /* [in] */ LIB_LISTTYPE2 ListTypeExcluded, /* [out] */ __RPC__out BOOL *pfExpandable) = 0; virtual HRESULT STDMETHODCALLTYPE GetNavigationInfo2( /* [in] */ ULONG Index, /* [out][in] */ __RPC__inout VSOBNAVIGATIONINFO3 *pobNav) = 0; virtual HRESULT STDMETHODCALLTYPE LocateNavigationInfo2( /* [in] */ __RPC__in VSOBNAVIGATIONINFO3 *pobNav, /* [in] */ __RPC__in VSOBNAVNAMEINFONODE2 *pobName, /* [in] */ BOOL fDontUpdate, /* [out] */ __RPC__out BOOL *pfMatchedName, /* [out] */ __RPC__out ULONG *pIndex) = 0; virtual HRESULT STDMETHODCALLTYPE GetBrowseObject( /* [in] */ ULONG Index, /* [out] */ __RPC__deref_out_opt IDispatch **ppdispBrowseObj) = 0; virtual HRESULT STDMETHODCALLTYPE GetUserContext( /* [in] */ ULONG Index, /* [out] */ __RPC__deref_out_opt IUnknown **ppunkUserCtx) = 0; virtual HRESULT STDMETHODCALLTYPE ShowHelp( /* [in] */ ULONG Index) = 0; virtual HRESULT STDMETHODCALLTYPE GetSourceContext( /* [in] */ ULONG Index, /* [string][out] */ __RPC__deref_out_opt_string const WCHAR **pszFileName, /* [out] */ __RPC__out ULONG *pulLineNum) = 0; virtual HRESULT STDMETHODCALLTYPE CountSourceItems( /* [in] */ ULONG Index, /* [out] */ __RPC__deref_out_opt IVsHierarchy **ppHier, /* [out] */ __RPC__out VSITEMID *pitemid, /* [retval][out] */ __RPC__out ULONG *pcItems) = 0; virtual HRESULT STDMETHODCALLTYPE GetMultipleSourceItems( /* [in] */ ULONG Index, /* [in] */ VSGSIFLAGS grfGSI, /* [in] */ ULONG cItems, /* [size_is][out] */ __RPC__out_ecount_full(cItems) VSITEMSELECTION rgItemSel[ ]) = 0; virtual HRESULT STDMETHODCALLTYPE CanGoToSource( /* [in] */ ULONG Index, /* [in] */ VSOBJGOTOSRCTYPE SrcType, /* [out] */ __RPC__out BOOL *pfOK) = 0; virtual HRESULT STDMETHODCALLTYPE GoToSource( /* [in] */ ULONG Index, /* [in] */ VSOBJGOTOSRCTYPE SrcType) = 0; virtual HRESULT STDMETHODCALLTYPE GetContextMenu( /* [in] */ ULONG Index, /* [out] */ __RPC__out CLSID *pclsidActive, /* [out] */ __RPC__out LONG *pnMenuId, /* [out] */ __RPC__deref_out_opt IOleCommandTarget **ppCmdTrgtActive) = 0; virtual HRESULT STDMETHODCALLTYPE QueryDragDrop( /* [in] */ ULONG Index, /* [in] */ __RPC__in_opt IDataObject *pDataObject, /* [in] */ DWORD grfKeyState, /* [out][in] */ __RPC__inout DWORD *pdwEffect) = 0; virtual HRESULT STDMETHODCALLTYPE DoDragDrop( /* [in] */ ULONG Index, /* [in] */ __RPC__in_opt IDataObject *pDataObject, /* [in] */ DWORD grfKeyState, /* [out][in] */ __RPC__inout DWORD *pdwEffect) = 0; virtual HRESULT STDMETHODCALLTYPE CanRename( /* [in] */ ULONG Index, /* [in] */ __RPC__in LPCOLESTR pszNewName, /* [out] */ __RPC__out BOOL *pfOK) = 0; virtual HRESULT STDMETHODCALLTYPE DoRename( /* [in] */ ULONG Index, /* [in] */ __RPC__in LPCOLESTR pszNewName, /* [in] */ VSOBJOPFLAGS grfFlags) = 0; virtual HRESULT STDMETHODCALLTYPE CanDelete( /* [in] */ ULONG Index, /* [out] */ __RPC__out BOOL *pfOK) = 0; virtual HRESULT STDMETHODCALLTYPE DoDelete( /* [in] */ ULONG Index, /* [in] */ VSOBJOPFLAGS grfFlags) = 0; virtual HRESULT STDMETHODCALLTYPE FillDescription( /* [in] */ ULONG Index, /* [in] */ VSOBJDESCOPTIONS grfOptions, /* [in] */ __RPC__in_opt IVsObjectBrowserDescription2 *pobDesc) = 0; virtual HRESULT STDMETHODCALLTYPE FillDescription2( /* [in] */ ULONG Index, /* [in] */ VSOBJDESCOPTIONS grfOptions, /* [in] */ __RPC__in_opt IVsObjectBrowserDescription3 *pobDesc) = 0; virtual HRESULT STDMETHODCALLTYPE EnumClipboardFormats( /* [in] */ ULONG Index, /* [in] */ VSOBJCFFLAGS grfFlags, /* [in] */ ULONG celt, /* [size_is][out][in] */ __RPC__inout_ecount_full(celt) VSOBJCLIPFORMAT rgcfFormats[ ], /* [optional][out] */ __RPC__out ULONG *pcActual) = 0; virtual HRESULT STDMETHODCALLTYPE GetClipboardFormat( /* [in] */ ULONG Index, /* [in] */ VSOBJCFFLAGS grfFlags, /* [in] */ __RPC__in FORMATETC *pFormatetc, /* [in] */ __RPC__in STGMEDIUM *pMedium) = 0; virtual HRESULT STDMETHODCALLTYPE GetExtendedClipboardVariant( /* [in] */ ULONG Index, /* [in] */ VSOBJCFFLAGS grfFlags, /* [in] */ __RPC__in const VSOBJCLIPFORMAT *pcfFormat, /* [out] */ __RPC__out VARIANT *pvarFormat) = 0; virtual HRESULT STDMETHODCALLTYPE GetProperty( /* [in] */ ULONG Index, /* [in] */ VSOBJLISTELEMPROPID propid, /* [out] */ __RPC__out VARIANT *pvar) = 0; virtual HRESULT STDMETHODCALLTYPE GetNavInfo( /* [in] */ ULONG Index, /* [out] */ __RPC__deref_out_opt IVsNavInfo **ppNavInfo) = 0; virtual HRESULT STDMETHODCALLTYPE GetNavInfoNode( /* [in] */ ULONG Index, /* [out] */ __RPC__deref_out_opt IVsNavInfoNode **ppNavInfoNode) = 0; virtual HRESULT STDMETHODCALLTYPE LocateNavInfoNode( /* [in] */ __RPC__in_opt IVsNavInfoNode *pNavInfoNode, /* [out] */ __RPC__out ULONG *pulIndex) = 0; }; #else /* C style interface */ typedef struct IVsObjectList2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsObjectList2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsObjectList2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsObjectList2 * This); HRESULT ( STDMETHODCALLTYPE *GetFlags )( __RPC__in IVsObjectList2 * This, /* [out] */ __RPC__out VSTREEFLAGS *pFlags); HRESULT ( STDMETHODCALLTYPE *GetItemCount )( __RPC__in IVsObjectList2 * This, /* [out] */ __RPC__out ULONG *pCount); HRESULT ( STDMETHODCALLTYPE *GetExpandedList )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [out] */ __RPC__out BOOL *pfCanRecurse, /* [out] */ __RPC__deref_out_opt IVsLiteTreeList **pptlNode); HRESULT ( STDMETHODCALLTYPE *LocateExpandedList )( __RPC__in IVsObjectList2 * This, /* [in] */ __RPC__in_opt IVsLiteTreeList *ExpandedList, /* [out] */ __RPC__out ULONG *iIndex); HRESULT ( STDMETHODCALLTYPE *OnClose )( __RPC__in IVsObjectList2 * This, /* [out] */ __RPC__out VSTREECLOSEACTIONS *ptca); HRESULT ( STDMETHODCALLTYPE *GetText )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ VSTREETEXTOPTIONS tto, /* [string][out] */ __RPC__deref_out_opt_string const WCHAR **ppszText); HRESULT ( STDMETHODCALLTYPE *GetTipText )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ VSTREETOOLTIPTYPE eTipType, /* [string][out] */ __RPC__deref_out_opt_string const WCHAR **ppszText); HRESULT ( STDMETHODCALLTYPE *GetExpandable )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [out] */ __RPC__out BOOL *pfExpandable); /* [local] */ HRESULT ( STDMETHODCALLTYPE *GetDisplayData )( IVsObjectList2 * This, /* [in] */ ULONG Index, /* [out] */ VSTREEDISPLAYDATA *pData); HRESULT ( STDMETHODCALLTYPE *UpdateCounter )( __RPC__in IVsObjectList2 * This, /* [out] */ __RPC__out ULONG *pCurUpdate, /* [out] */ __RPC__out VSTREEITEMCHANGESMASK *pgrfChanges); HRESULT ( STDMETHODCALLTYPE *GetListChanges )( __RPC__in IVsObjectList2 * This, /* [out][in] */ __RPC__inout ULONG *pcChanges, /* [size_is][in] */ __RPC__in_ecount_full(*pcChanges) VSTREELISTITEMCHANGE *prgListChanges); HRESULT ( STDMETHODCALLTYPE *ToggleState )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [out] */ __RPC__out VSTREESTATECHANGEREFRESH *ptscr); HRESULT ( STDMETHODCALLTYPE *GetCapabilities2 )( __RPC__in IVsObjectList2 * This, /* [out] */ __RPC__out LIB_LISTCAPABILITIES2 *pgrfCapabilities); HRESULT ( STDMETHODCALLTYPE *GetList2 )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ LIB_LISTTYPE2 ListType, /* [in] */ LIB_LISTFLAGS Flags, /* [in] */ __RPC__in VSOBSEARCHCRITERIA2 *pobSrch, /* [retval][out] */ __RPC__deref_out_opt IVsObjectList2 **ppIVsObjectList2); HRESULT ( STDMETHODCALLTYPE *GetCategoryField2 )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ LIB_CATEGORY2 Category, /* [retval][out] */ __RPC__out DWORD *pfCatField); HRESULT ( STDMETHODCALLTYPE *GetExpandable3 )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ LIB_LISTTYPE2 ListTypeExcluded, /* [out] */ __RPC__out BOOL *pfExpandable); HRESULT ( STDMETHODCALLTYPE *GetNavigationInfo2 )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [out][in] */ __RPC__inout VSOBNAVIGATIONINFO3 *pobNav); HRESULT ( STDMETHODCALLTYPE *LocateNavigationInfo2 )( __RPC__in IVsObjectList2 * This, /* [in] */ __RPC__in VSOBNAVIGATIONINFO3 *pobNav, /* [in] */ __RPC__in VSOBNAVNAMEINFONODE2 *pobName, /* [in] */ BOOL fDontUpdate, /* [out] */ __RPC__out BOOL *pfMatchedName, /* [out] */ __RPC__out ULONG *pIndex); HRESULT ( STDMETHODCALLTYPE *GetBrowseObject )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [out] */ __RPC__deref_out_opt IDispatch **ppdispBrowseObj); HRESULT ( STDMETHODCALLTYPE *GetUserContext )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [out] */ __RPC__deref_out_opt IUnknown **ppunkUserCtx); HRESULT ( STDMETHODCALLTYPE *ShowHelp )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index); HRESULT ( STDMETHODCALLTYPE *GetSourceContext )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [string][out] */ __RPC__deref_out_opt_string const WCHAR **pszFileName, /* [out] */ __RPC__out ULONG *pulLineNum); HRESULT ( STDMETHODCALLTYPE *CountSourceItems )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [out] */ __RPC__deref_out_opt IVsHierarchy **ppHier, /* [out] */ __RPC__out VSITEMID *pitemid, /* [retval][out] */ __RPC__out ULONG *pcItems); HRESULT ( STDMETHODCALLTYPE *GetMultipleSourceItems )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ VSGSIFLAGS grfGSI, /* [in] */ ULONG cItems, /* [size_is][out] */ __RPC__out_ecount_full(cItems) VSITEMSELECTION rgItemSel[ ]); HRESULT ( STDMETHODCALLTYPE *CanGoToSource )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ VSOBJGOTOSRCTYPE SrcType, /* [out] */ __RPC__out BOOL *pfOK); HRESULT ( STDMETHODCALLTYPE *GoToSource )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ VSOBJGOTOSRCTYPE SrcType); HRESULT ( STDMETHODCALLTYPE *GetContextMenu )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [out] */ __RPC__out CLSID *pclsidActive, /* [out] */ __RPC__out LONG *pnMenuId, /* [out] */ __RPC__deref_out_opt IOleCommandTarget **ppCmdTrgtActive); HRESULT ( STDMETHODCALLTYPE *QueryDragDrop )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ __RPC__in_opt IDataObject *pDataObject, /* [in] */ DWORD grfKeyState, /* [out][in] */ __RPC__inout DWORD *pdwEffect); HRESULT ( STDMETHODCALLTYPE *DoDragDrop )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ __RPC__in_opt IDataObject *pDataObject, /* [in] */ DWORD grfKeyState, /* [out][in] */ __RPC__inout DWORD *pdwEffect); HRESULT ( STDMETHODCALLTYPE *CanRename )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ __RPC__in LPCOLESTR pszNewName, /* [out] */ __RPC__out BOOL *pfOK); HRESULT ( STDMETHODCALLTYPE *DoRename )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ __RPC__in LPCOLESTR pszNewName, /* [in] */ VSOBJOPFLAGS grfFlags); HRESULT ( STDMETHODCALLTYPE *CanDelete )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [out] */ __RPC__out BOOL *pfOK); HRESULT ( STDMETHODCALLTYPE *DoDelete )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ VSOBJOPFLAGS grfFlags); HRESULT ( STDMETHODCALLTYPE *FillDescription )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ VSOBJDESCOPTIONS grfOptions, /* [in] */ __RPC__in_opt IVsObjectBrowserDescription2 *pobDesc); HRESULT ( STDMETHODCALLTYPE *FillDescription2 )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ VSOBJDESCOPTIONS grfOptions, /* [in] */ __RPC__in_opt IVsObjectBrowserDescription3 *pobDesc); HRESULT ( STDMETHODCALLTYPE *EnumClipboardFormats )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ VSOBJCFFLAGS grfFlags, /* [in] */ ULONG celt, /* [size_is][out][in] */ __RPC__inout_ecount_full(celt) VSOBJCLIPFORMAT rgcfFormats[ ], /* [optional][out] */ __RPC__out ULONG *pcActual); HRESULT ( STDMETHODCALLTYPE *GetClipboardFormat )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ VSOBJCFFLAGS grfFlags, /* [in] */ __RPC__in FORMATETC *pFormatetc, /* [in] */ __RPC__in STGMEDIUM *pMedium); HRESULT ( STDMETHODCALLTYPE *GetExtendedClipboardVariant )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ VSOBJCFFLAGS grfFlags, /* [in] */ __RPC__in const VSOBJCLIPFORMAT *pcfFormat, /* [out] */ __RPC__out VARIANT *pvarFormat); HRESULT ( STDMETHODCALLTYPE *GetProperty )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ VSOBJLISTELEMPROPID propid, /* [out] */ __RPC__out VARIANT *pvar); HRESULT ( STDMETHODCALLTYPE *GetNavInfo )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [out] */ __RPC__deref_out_opt IVsNavInfo **ppNavInfo); HRESULT ( STDMETHODCALLTYPE *GetNavInfoNode )( __RPC__in IVsObjectList2 * This, /* [in] */ ULONG Index, /* [out] */ __RPC__deref_out_opt IVsNavInfoNode **ppNavInfoNode); HRESULT ( STDMETHODCALLTYPE *LocateNavInfoNode )( __RPC__in IVsObjectList2 * This, /* [in] */ __RPC__in_opt IVsNavInfoNode *pNavInfoNode, /* [out] */ __RPC__out ULONG *pulIndex); END_INTERFACE } IVsObjectList2Vtbl; interface IVsObjectList2 { CONST_VTBL struct IVsObjectList2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsObjectList2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsObjectList2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsObjectList2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsObjectList2_GetFlags(This,pFlags) \ ( (This)->lpVtbl -> GetFlags(This,pFlags) ) #define IVsObjectList2_GetItemCount(This,pCount) \ ( (This)->lpVtbl -> GetItemCount(This,pCount) ) #define IVsObjectList2_GetExpandedList(This,Index,pfCanRecurse,pptlNode) \ ( (This)->lpVtbl -> GetExpandedList(This,Index,pfCanRecurse,pptlNode) ) #define IVsObjectList2_LocateExpandedList(This,ExpandedList,iIndex) \ ( (This)->lpVtbl -> LocateExpandedList(This,ExpandedList,iIndex) ) #define IVsObjectList2_OnClose(This,ptca) \ ( (This)->lpVtbl -> OnClose(This,ptca) ) #define IVsObjectList2_GetText(This,Index,tto,ppszText) \ ( (This)->lpVtbl -> GetText(This,Index,tto,ppszText) ) #define IVsObjectList2_GetTipText(This,Index,eTipType,ppszText) \ ( (This)->lpVtbl -> GetTipText(This,Index,eTipType,ppszText) ) #define IVsObjectList2_GetExpandable(This,Index,pfExpandable) \ ( (This)->lpVtbl -> GetExpandable(This,Index,pfExpandable) ) #define IVsObjectList2_GetDisplayData(This,Index,pData) \ ( (This)->lpVtbl -> GetDisplayData(This,Index,pData) ) #define IVsObjectList2_UpdateCounter(This,pCurUpdate,pgrfChanges) \ ( (This)->lpVtbl -> UpdateCounter(This,pCurUpdate,pgrfChanges) ) #define IVsObjectList2_GetListChanges(This,pcChanges,prgListChanges) \ ( (This)->lpVtbl -> GetListChanges(This,pcChanges,prgListChanges) ) #define IVsObjectList2_ToggleState(This,Index,ptscr) \ ( (This)->lpVtbl -> ToggleState(This,Index,ptscr) ) #define IVsObjectList2_GetCapabilities2(This,pgrfCapabilities) \ ( (This)->lpVtbl -> GetCapabilities2(This,pgrfCapabilities) ) #define IVsObjectList2_GetList2(This,Index,ListType,Flags,pobSrch,ppIVsObjectList2) \ ( (This)->lpVtbl -> GetList2(This,Index,ListType,Flags,pobSrch,ppIVsObjectList2) ) #define IVsObjectList2_GetCategoryField2(This,Index,Category,pfCatField) \ ( (This)->lpVtbl -> GetCategoryField2(This,Index,Category,pfCatField) ) #define IVsObjectList2_GetExpandable3(This,Index,ListTypeExcluded,pfExpandable) \ ( (This)->lpVtbl -> GetExpandable3(This,Index,ListTypeExcluded,pfExpandable) ) #define IVsObjectList2_GetNavigationInfo2(This,Index,pobNav) \ ( (This)->lpVtbl -> GetNavigationInfo2(This,Index,pobNav) ) #define IVsObjectList2_LocateNavigationInfo2(This,pobNav,pobName,fDontUpdate,pfMatchedName,pIndex) \ ( (This)->lpVtbl -> LocateNavigationInfo2(This,pobNav,pobName,fDontUpdate,pfMatchedName,pIndex) ) #define IVsObjectList2_GetBrowseObject(This,Index,ppdispBrowseObj) \ ( (This)->lpVtbl -> GetBrowseObject(This,Index,ppdispBrowseObj) ) #define IVsObjectList2_GetUserContext(This,Index,ppunkUserCtx) \ ( (This)->lpVtbl -> GetUserContext(This,Index,ppunkUserCtx) ) #define IVsObjectList2_ShowHelp(This,Index) \ ( (This)->lpVtbl -> ShowHelp(This,Index) ) #define IVsObjectList2_GetSourceContext(This,Index,pszFileName,pulLineNum) \ ( (This)->lpVtbl -> GetSourceContext(This,Index,pszFileName,pulLineNum) ) #define IVsObjectList2_CountSourceItems(This,Index,ppHier,pitemid,pcItems) \ ( (This)->lpVtbl -> CountSourceItems(This,Index,ppHier,pitemid,pcItems) ) #define IVsObjectList2_GetMultipleSourceItems(This,Index,grfGSI,cItems,rgItemSel) \ ( (This)->lpVtbl -> GetMultipleSourceItems(This,Index,grfGSI,cItems,rgItemSel) ) #define IVsObjectList2_CanGoToSource(This,Index,SrcType,pfOK) \ ( (This)->lpVtbl -> CanGoToSource(This,Index,SrcType,pfOK) ) #define IVsObjectList2_GoToSource(This,Index,SrcType) \ ( (This)->lpVtbl -> GoToSource(This,Index,SrcType) ) #define IVsObjectList2_GetContextMenu(This,Index,pclsidActive,pnMenuId,ppCmdTrgtActive) \ ( (This)->lpVtbl -> GetContextMenu(This,Index,pclsidActive,pnMenuId,ppCmdTrgtActive) ) #define IVsObjectList2_QueryDragDrop(This,Index,pDataObject,grfKeyState,pdwEffect) \ ( (This)->lpVtbl -> QueryDragDrop(This,Index,pDataObject,grfKeyState,pdwEffect) ) #define IVsObjectList2_DoDragDrop(This,Index,pDataObject,grfKeyState,pdwEffect) \ ( (This)->lpVtbl -> DoDragDrop(This,Index,pDataObject,grfKeyState,pdwEffect) ) #define IVsObjectList2_CanRename(This,Index,pszNewName,pfOK) \ ( (This)->lpVtbl -> CanRename(This,Index,pszNewName,pfOK) ) #define IVsObjectList2_DoRename(This,Index,pszNewName,grfFlags) \ ( (This)->lpVtbl -> DoRename(This,Index,pszNewName,grfFlags) ) #define IVsObjectList2_CanDelete(This,Index,pfOK) \ ( (This)->lpVtbl -> CanDelete(This,Index,pfOK) ) #define IVsObjectList2_DoDelete(This,Index,grfFlags) \ ( (This)->lpVtbl -> DoDelete(This,Index,grfFlags) ) #define IVsObjectList2_FillDescription(This,Index,grfOptions,pobDesc) \ ( (This)->lpVtbl -> FillDescription(This,Index,grfOptions,pobDesc) ) #define IVsObjectList2_FillDescription2(This,Index,grfOptions,pobDesc) \ ( (This)->lpVtbl -> FillDescription2(This,Index,grfOptions,pobDesc) ) #define IVsObjectList2_EnumClipboardFormats(This,Index,grfFlags,celt,rgcfFormats,pcActual) \ ( (This)->lpVtbl -> EnumClipboardFormats(This,Index,grfFlags,celt,rgcfFormats,pcActual) ) #define IVsObjectList2_GetClipboardFormat(This,Index,grfFlags,pFormatetc,pMedium) \ ( (This)->lpVtbl -> GetClipboardFormat(This,Index,grfFlags,pFormatetc,pMedium) ) #define IVsObjectList2_GetExtendedClipboardVariant(This,Index,grfFlags,pcfFormat,pvarFormat) \ ( (This)->lpVtbl -> GetExtendedClipboardVariant(This,Index,grfFlags,pcfFormat,pvarFormat) ) #define IVsObjectList2_GetProperty(This,Index,propid,pvar) \ ( (This)->lpVtbl -> GetProperty(This,Index,propid,pvar) ) #define IVsObjectList2_GetNavInfo(This,Index,ppNavInfo) \ ( (This)->lpVtbl -> GetNavInfo(This,Index,ppNavInfo) ) #define IVsObjectList2_GetNavInfoNode(This,Index,ppNavInfoNode) \ ( (This)->lpVtbl -> GetNavInfoNode(This,Index,ppNavInfoNode) ) #define IVsObjectList2_LocateNavInfoNode(This,pNavInfoNode,pulIndex) \ ( (This)->lpVtbl -> LocateNavInfoNode(This,pNavInfoNode,pulIndex) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsObjectList2_INTERFACE_DEFINED__ */ #ifndef __IVsSimpleObjectList2_INTERFACE_DEFINED__ #define __IVsSimpleObjectList2_INTERFACE_DEFINED__ /* interface IVsSimpleObjectList2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsSimpleObjectList2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("A0C6D693-8226-4ca6-AB03-557AA5A33F75") IVsSimpleObjectList2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetFlags( /* [out] */ __RPC__out VSTREEFLAGS *pFlags) = 0; virtual HRESULT STDMETHODCALLTYPE GetCapabilities2( /* [out] */ __RPC__out LIB_LISTCAPABILITIES2 *pgrfCapabilities) = 0; virtual HRESULT STDMETHODCALLTYPE UpdateCounter( /* [out] */ __RPC__out ULONG *pCurUpdate) = 0; virtual HRESULT STDMETHODCALLTYPE GetItemCount( /* [out] */ __RPC__out ULONG *pCount) = 0; virtual /* [local] */ HRESULT STDMETHODCALLTYPE GetDisplayData( /* [in] */ ULONG Index, /* [out] */ VSTREEDISPLAYDATA *pData) = 0; virtual HRESULT STDMETHODCALLTYPE GetTextWithOwnership( /* [in] */ ULONG Index, /* [in] */ VSTREETEXTOPTIONS tto, /* [out] */ __RPC__deref_out_opt BSTR *pbstrText) = 0; virtual HRESULT STDMETHODCALLTYPE GetTipTextWithOwnership( /* [in] */ ULONG Index, /* [in] */ VSTREETOOLTIPTYPE eTipType, /* [out] */ __RPC__deref_out_opt BSTR *pbstrText) = 0; virtual HRESULT STDMETHODCALLTYPE GetCategoryField2( /* [in] */ ULONG Index, /* [in] */ LIB_CATEGORY2 Category, /* [retval][out] */ __RPC__out DWORD *pfCatField) = 0; virtual HRESULT STDMETHODCALLTYPE GetBrowseObject( /* [in] */ ULONG Index, /* [out] */ __RPC__deref_out_opt IDispatch **ppdispBrowseObj) = 0; virtual HRESULT STDMETHODCALLTYPE GetUserContext( /* [in] */ ULONG Index, /* [out] */ __RPC__deref_out_opt IUnknown **ppunkUserCtx) = 0; virtual HRESULT STDMETHODCALLTYPE ShowHelp( /* [in] */ ULONG Index) = 0; virtual HRESULT STDMETHODCALLTYPE GetSourceContextWithOwnership( /* [in] */ ULONG Index, /* [out] */ __RPC__deref_out_opt BSTR *pbstrFileName, /* [out] */ __RPC__out ULONG *pulLineNum) = 0; virtual HRESULT STDMETHODCALLTYPE CountSourceItems( /* [in] */ ULONG Index, /* [out] */ __RPC__deref_out_opt IVsHierarchy **ppHier, /* [out] */ __RPC__out VSITEMID *pitemid, /* [retval][out] */ __RPC__out ULONG *pcItems) = 0; virtual HRESULT STDMETHODCALLTYPE GetMultipleSourceItems( /* [in] */ ULONG Index, /* [in] */ VSGSIFLAGS grfGSI, /* [in] */ ULONG cItems, /* [size_is][out] */ __RPC__out_ecount_full(cItems) VSITEMSELECTION rgItemSel[ ]) = 0; virtual HRESULT STDMETHODCALLTYPE CanGoToSource( /* [in] */ ULONG Index, /* [in] */ VSOBJGOTOSRCTYPE SrcType, /* [out] */ __RPC__out BOOL *pfOK) = 0; virtual HRESULT STDMETHODCALLTYPE GoToSource( /* [in] */ ULONG Index, /* [in] */ VSOBJGOTOSRCTYPE SrcType) = 0; virtual HRESULT STDMETHODCALLTYPE GetContextMenu( /* [in] */ ULONG Index, /* [out] */ __RPC__out CLSID *pclsidActive, /* [out] */ __RPC__out LONG *pnMenuId, /* [out] */ __RPC__deref_out_opt IOleCommandTarget **ppCmdTrgtActive) = 0; virtual HRESULT STDMETHODCALLTYPE QueryDragDrop( /* [in] */ ULONG Index, /* [in] */ __RPC__in_opt IDataObject *pDataObject, /* [in] */ DWORD grfKeyState, /* [out][in] */ __RPC__inout DWORD *pdwEffect) = 0; virtual HRESULT STDMETHODCALLTYPE DoDragDrop( /* [in] */ ULONG Index, /* [in] */ __RPC__in_opt IDataObject *pDataObject, /* [in] */ DWORD grfKeyState, /* [out][in] */ __RPC__inout DWORD *pdwEffect) = 0; virtual HRESULT STDMETHODCALLTYPE CanRename( /* [in] */ ULONG Index, /* [in] */ __RPC__in LPCOLESTR pszNewName, /* [out] */ __RPC__out BOOL *pfOK) = 0; virtual HRESULT STDMETHODCALLTYPE DoRename( /* [in] */ ULONG Index, /* [in] */ __RPC__in LPCOLESTR pszNewName, /* [in] */ VSOBJOPFLAGS grfFlags) = 0; virtual HRESULT STDMETHODCALLTYPE CanDelete( /* [in] */ ULONG Index, /* [out] */ __RPC__out BOOL *pfOK) = 0; virtual HRESULT STDMETHODCALLTYPE DoDelete( /* [in] */ ULONG Index, /* [in] */ VSOBJOPFLAGS grfFlags) = 0; virtual HRESULT STDMETHODCALLTYPE FillDescription2( /* [in] */ ULONG Index, /* [in] */ VSOBJDESCOPTIONS grfOptions, /* [in] */ __RPC__in_opt IVsObjectBrowserDescription3 *pobDesc) = 0; virtual HRESULT STDMETHODCALLTYPE EnumClipboardFormats( /* [in] */ ULONG Index, /* [in] */ VSOBJCFFLAGS grfFlags, /* [in] */ ULONG celt, /* [size_is][out][in] */ __RPC__inout_ecount_full(celt) VSOBJCLIPFORMAT rgcfFormats[ ], /* [optional][out] */ __RPC__out ULONG *pcActual) = 0; virtual HRESULT STDMETHODCALLTYPE GetClipboardFormat( /* [in] */ ULONG Index, /* [in] */ VSOBJCFFLAGS grfFlags, /* [in] */ __RPC__in FORMATETC *pFormatetc, /* [in] */ __RPC__in STGMEDIUM *pMedium) = 0; virtual HRESULT STDMETHODCALLTYPE GetExtendedClipboardVariant( /* [in] */ ULONG Index, /* [in] */ VSOBJCFFLAGS grfFlags, /* [in] */ __RPC__in const VSOBJCLIPFORMAT *pcfFormat, /* [out] */ __RPC__out VARIANT *pvarFormat) = 0; virtual HRESULT STDMETHODCALLTYPE GetProperty( /* [in] */ ULONG Index, /* [in] */ VSOBJLISTELEMPROPID propid, /* [out] */ __RPC__out VARIANT *pvar) = 0; virtual HRESULT STDMETHODCALLTYPE GetNavInfo( /* [in] */ ULONG Index, /* [out] */ __RPC__deref_out_opt IVsNavInfo **ppNavInfo) = 0; virtual HRESULT STDMETHODCALLTYPE GetNavInfoNode( /* [in] */ ULONG Index, /* [out] */ __RPC__deref_out_opt IVsNavInfoNode **ppNavInfoNode) = 0; virtual HRESULT STDMETHODCALLTYPE LocateNavInfoNode( /* [in] */ __RPC__in_opt IVsNavInfoNode *pNavInfoNode, /* [out] */ __RPC__out ULONG *pulIndex) = 0; virtual HRESULT STDMETHODCALLTYPE GetExpandable3( /* [in] */ ULONG Index, /* [in] */ LIB_LISTTYPE2 ListTypeExcluded, /* [out] */ __RPC__out BOOL *pfExpandable) = 0; virtual HRESULT STDMETHODCALLTYPE GetList2( /* [in] */ ULONG Index, /* [in] */ LIB_LISTTYPE2 ListType, /* [in] */ LIB_LISTFLAGS Flags, /* [in] */ __RPC__in VSOBSEARCHCRITERIA2 *pobSrch, /* [retval][out] */ __RPC__deref_out_opt IVsSimpleObjectList2 **ppIVsSimpleObjectList2) = 0; virtual HRESULT STDMETHODCALLTYPE OnClose( /* [out] */ __RPC__out VSTREECLOSEACTIONS *ptca) = 0; }; #else /* C style interface */ typedef struct IVsSimpleObjectList2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsSimpleObjectList2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsSimpleObjectList2 * This); HRESULT ( STDMETHODCALLTYPE *GetFlags )( __RPC__in IVsSimpleObjectList2 * This, /* [out] */ __RPC__out VSTREEFLAGS *pFlags); HRESULT ( STDMETHODCALLTYPE *GetCapabilities2 )( __RPC__in IVsSimpleObjectList2 * This, /* [out] */ __RPC__out LIB_LISTCAPABILITIES2 *pgrfCapabilities); HRESULT ( STDMETHODCALLTYPE *UpdateCounter )( __RPC__in IVsSimpleObjectList2 * This, /* [out] */ __RPC__out ULONG *pCurUpdate); HRESULT ( STDMETHODCALLTYPE *GetItemCount )( __RPC__in IVsSimpleObjectList2 * This, /* [out] */ __RPC__out ULONG *pCount); /* [local] */ HRESULT ( STDMETHODCALLTYPE *GetDisplayData )( IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [out] */ VSTREEDISPLAYDATA *pData); HRESULT ( STDMETHODCALLTYPE *GetTextWithOwnership )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ VSTREETEXTOPTIONS tto, /* [out] */ __RPC__deref_out_opt BSTR *pbstrText); HRESULT ( STDMETHODCALLTYPE *GetTipTextWithOwnership )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ VSTREETOOLTIPTYPE eTipType, /* [out] */ __RPC__deref_out_opt BSTR *pbstrText); HRESULT ( STDMETHODCALLTYPE *GetCategoryField2 )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ LIB_CATEGORY2 Category, /* [retval][out] */ __RPC__out DWORD *pfCatField); HRESULT ( STDMETHODCALLTYPE *GetBrowseObject )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [out] */ __RPC__deref_out_opt IDispatch **ppdispBrowseObj); HRESULT ( STDMETHODCALLTYPE *GetUserContext )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [out] */ __RPC__deref_out_opt IUnknown **ppunkUserCtx); HRESULT ( STDMETHODCALLTYPE *ShowHelp )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index); HRESULT ( STDMETHODCALLTYPE *GetSourceContextWithOwnership )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [out] */ __RPC__deref_out_opt BSTR *pbstrFileName, /* [out] */ __RPC__out ULONG *pulLineNum); HRESULT ( STDMETHODCALLTYPE *CountSourceItems )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [out] */ __RPC__deref_out_opt IVsHierarchy **ppHier, /* [out] */ __RPC__out VSITEMID *pitemid, /* [retval][out] */ __RPC__out ULONG *pcItems); HRESULT ( STDMETHODCALLTYPE *GetMultipleSourceItems )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ VSGSIFLAGS grfGSI, /* [in] */ ULONG cItems, /* [size_is][out] */ __RPC__out_ecount_full(cItems) VSITEMSELECTION rgItemSel[ ]); HRESULT ( STDMETHODCALLTYPE *CanGoToSource )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ VSOBJGOTOSRCTYPE SrcType, /* [out] */ __RPC__out BOOL *pfOK); HRESULT ( STDMETHODCALLTYPE *GoToSource )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ VSOBJGOTOSRCTYPE SrcType); HRESULT ( STDMETHODCALLTYPE *GetContextMenu )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [out] */ __RPC__out CLSID *pclsidActive, /* [out] */ __RPC__out LONG *pnMenuId, /* [out] */ __RPC__deref_out_opt IOleCommandTarget **ppCmdTrgtActive); HRESULT ( STDMETHODCALLTYPE *QueryDragDrop )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ __RPC__in_opt IDataObject *pDataObject, /* [in] */ DWORD grfKeyState, /* [out][in] */ __RPC__inout DWORD *pdwEffect); HRESULT ( STDMETHODCALLTYPE *DoDragDrop )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ __RPC__in_opt IDataObject *pDataObject, /* [in] */ DWORD grfKeyState, /* [out][in] */ __RPC__inout DWORD *pdwEffect); HRESULT ( STDMETHODCALLTYPE *CanRename )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ __RPC__in LPCOLESTR pszNewName, /* [out] */ __RPC__out BOOL *pfOK); HRESULT ( STDMETHODCALLTYPE *DoRename )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ __RPC__in LPCOLESTR pszNewName, /* [in] */ VSOBJOPFLAGS grfFlags); HRESULT ( STDMETHODCALLTYPE *CanDelete )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [out] */ __RPC__out BOOL *pfOK); HRESULT ( STDMETHODCALLTYPE *DoDelete )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ VSOBJOPFLAGS grfFlags); HRESULT ( STDMETHODCALLTYPE *FillDescription2 )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ VSOBJDESCOPTIONS grfOptions, /* [in] */ __RPC__in_opt IVsObjectBrowserDescription3 *pobDesc); HRESULT ( STDMETHODCALLTYPE *EnumClipboardFormats )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ VSOBJCFFLAGS grfFlags, /* [in] */ ULONG celt, /* [size_is][out][in] */ __RPC__inout_ecount_full(celt) VSOBJCLIPFORMAT rgcfFormats[ ], /* [optional][out] */ __RPC__out ULONG *pcActual); HRESULT ( STDMETHODCALLTYPE *GetClipboardFormat )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ VSOBJCFFLAGS grfFlags, /* [in] */ __RPC__in FORMATETC *pFormatetc, /* [in] */ __RPC__in STGMEDIUM *pMedium); HRESULT ( STDMETHODCALLTYPE *GetExtendedClipboardVariant )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ VSOBJCFFLAGS grfFlags, /* [in] */ __RPC__in const VSOBJCLIPFORMAT *pcfFormat, /* [out] */ __RPC__out VARIANT *pvarFormat); HRESULT ( STDMETHODCALLTYPE *GetProperty )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ VSOBJLISTELEMPROPID propid, /* [out] */ __RPC__out VARIANT *pvar); HRESULT ( STDMETHODCALLTYPE *GetNavInfo )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [out] */ __RPC__deref_out_opt IVsNavInfo **ppNavInfo); HRESULT ( STDMETHODCALLTYPE *GetNavInfoNode )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [out] */ __RPC__deref_out_opt IVsNavInfoNode **ppNavInfoNode); HRESULT ( STDMETHODCALLTYPE *LocateNavInfoNode )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ __RPC__in_opt IVsNavInfoNode *pNavInfoNode, /* [out] */ __RPC__out ULONG *pulIndex); HRESULT ( STDMETHODCALLTYPE *GetExpandable3 )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ LIB_LISTTYPE2 ListTypeExcluded, /* [out] */ __RPC__out BOOL *pfExpandable); HRESULT ( STDMETHODCALLTYPE *GetList2 )( __RPC__in IVsSimpleObjectList2 * This, /* [in] */ ULONG Index, /* [in] */ LIB_LISTTYPE2 ListType, /* [in] */ LIB_LISTFLAGS Flags, /* [in] */ __RPC__in VSOBSEARCHCRITERIA2 *pobSrch, /* [retval][out] */ __RPC__deref_out_opt IVsSimpleObjectList2 **ppIVsSimpleObjectList2); HRESULT ( STDMETHODCALLTYPE *OnClose )( __RPC__in IVsSimpleObjectList2 * This, /* [out] */ __RPC__out VSTREECLOSEACTIONS *ptca); END_INTERFACE } IVsSimpleObjectList2Vtbl; interface IVsSimpleObjectList2 { CONST_VTBL struct IVsSimpleObjectList2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsSimpleObjectList2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsSimpleObjectList2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsSimpleObjectList2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsSimpleObjectList2_GetFlags(This,pFlags) \ ( (This)->lpVtbl -> GetFlags(This,pFlags) ) #define IVsSimpleObjectList2_GetCapabilities2(This,pgrfCapabilities) \ ( (This)->lpVtbl -> GetCapabilities2(This,pgrfCapabilities) ) #define IVsSimpleObjectList2_UpdateCounter(This,pCurUpdate) \ ( (This)->lpVtbl -> UpdateCounter(This,pCurUpdate) ) #define IVsSimpleObjectList2_GetItemCount(This,pCount) \ ( (This)->lpVtbl -> GetItemCount(This,pCount) ) #define IVsSimpleObjectList2_GetDisplayData(This,Index,pData) \ ( (This)->lpVtbl -> GetDisplayData(This,Index,pData) ) #define IVsSimpleObjectList2_GetTextWithOwnership(This,Index,tto,pbstrText) \ ( (This)->lpVtbl -> GetTextWithOwnership(This,Index,tto,pbstrText) ) #define IVsSimpleObjectList2_GetTipTextWithOwnership(This,Index,eTipType,pbstrText) \ ( (This)->lpVtbl -> GetTipTextWithOwnership(This,Index,eTipType,pbstrText) ) #define IVsSimpleObjectList2_GetCategoryField2(This,Index,Category,pfCatField) \ ( (This)->lpVtbl -> GetCategoryField2(This,Index,Category,pfCatField) ) #define IVsSimpleObjectList2_GetBrowseObject(This,Index,ppdispBrowseObj) \ ( (This)->lpVtbl -> GetBrowseObject(This,Index,ppdispBrowseObj) ) #define IVsSimpleObjectList2_GetUserContext(This,Index,ppunkUserCtx) \ ( (This)->lpVtbl -> GetUserContext(This,Index,ppunkUserCtx) ) #define IVsSimpleObjectList2_ShowHelp(This,Index) \ ( (This)->lpVtbl -> ShowHelp(This,Index) ) #define IVsSimpleObjectList2_GetSourceContextWithOwnership(This,Index,pbstrFileName,pulLineNum) \ ( (This)->lpVtbl -> GetSourceContextWithOwnership(This,Index,pbstrFileName,pulLineNum) ) #define IVsSimpleObjectList2_CountSourceItems(This,Index,ppHier,pitemid,pcItems) \ ( (This)->lpVtbl -> CountSourceItems(This,Index,ppHier,pitemid,pcItems) ) #define IVsSimpleObjectList2_GetMultipleSourceItems(This,Index,grfGSI,cItems,rgItemSel) \ ( (This)->lpVtbl -> GetMultipleSourceItems(This,Index,grfGSI,cItems,rgItemSel) ) #define IVsSimpleObjectList2_CanGoToSource(This,Index,SrcType,pfOK) \ ( (This)->lpVtbl -> CanGoToSource(This,Index,SrcType,pfOK) ) #define IVsSimpleObjectList2_GoToSource(This,Index,SrcType) \ ( (This)->lpVtbl -> GoToSource(This,Index,SrcType) ) #define IVsSimpleObjectList2_GetContextMenu(This,Index,pclsidActive,pnMenuId,ppCmdTrgtActive) \ ( (This)->lpVtbl -> GetContextMenu(This,Index,pclsidActive,pnMenuId,ppCmdTrgtActive) ) #define IVsSimpleObjectList2_QueryDragDrop(This,Index,pDataObject,grfKeyState,pdwEffect) \ ( (This)->lpVtbl -> QueryDragDrop(This,Index,pDataObject,grfKeyState,pdwEffect) ) #define IVsSimpleObjectList2_DoDragDrop(This,Index,pDataObject,grfKeyState,pdwEffect) \ ( (This)->lpVtbl -> DoDragDrop(This,Index,pDataObject,grfKeyState,pdwEffect) ) #define IVsSimpleObjectList2_CanRename(This,Index,pszNewName,pfOK) \ ( (This)->lpVtbl -> CanRename(This,Index,pszNewName,pfOK) ) #define IVsSimpleObjectList2_DoRename(This,Index,pszNewName,grfFlags) \ ( (This)->lpVtbl -> DoRename(This,Index,pszNewName,grfFlags) ) #define IVsSimpleObjectList2_CanDelete(This,Index,pfOK) \ ( (This)->lpVtbl -> CanDelete(This,Index,pfOK) ) #define IVsSimpleObjectList2_DoDelete(This,Index,grfFlags) \ ( (This)->lpVtbl -> DoDelete(This,Index,grfFlags) ) #define IVsSimpleObjectList2_FillDescription2(This,Index,grfOptions,pobDesc) \ ( (This)->lpVtbl -> FillDescription2(This,Index,grfOptions,pobDesc) ) #define IVsSimpleObjectList2_EnumClipboardFormats(This,Index,grfFlags,celt,rgcfFormats,pcActual) \ ( (This)->lpVtbl -> EnumClipboardFormats(This,Index,grfFlags,celt,rgcfFormats,pcActual) ) #define IVsSimpleObjectList2_GetClipboardFormat(This,Index,grfFlags,pFormatetc,pMedium) \ ( (This)->lpVtbl -> GetClipboardFormat(This,Index,grfFlags,pFormatetc,pMedium) ) #define IVsSimpleObjectList2_GetExtendedClipboardVariant(This,Index,grfFlags,pcfFormat,pvarFormat) \ ( (This)->lpVtbl -> GetExtendedClipboardVariant(This,Index,grfFlags,pcfFormat,pvarFormat) ) #define IVsSimpleObjectList2_GetProperty(This,Index,propid,pvar) \ ( (This)->lpVtbl -> GetProperty(This,Index,propid,pvar) ) #define IVsSimpleObjectList2_GetNavInfo(This,Index,ppNavInfo) \ ( (This)->lpVtbl -> GetNavInfo(This,Index,ppNavInfo) ) #define IVsSimpleObjectList2_GetNavInfoNode(This,Index,ppNavInfoNode) \ ( (This)->lpVtbl -> GetNavInfoNode(This,Index,ppNavInfoNode) ) #define IVsSimpleObjectList2_LocateNavInfoNode(This,pNavInfoNode,pulIndex) \ ( (This)->lpVtbl -> LocateNavInfoNode(This,pNavInfoNode,pulIndex) ) #define IVsSimpleObjectList2_GetExpandable3(This,Index,ListTypeExcluded,pfExpandable) \ ( (This)->lpVtbl -> GetExpandable3(This,Index,ListTypeExcluded,pfExpandable) ) #define IVsSimpleObjectList2_GetList2(This,Index,ListType,Flags,pobSrch,ppIVsSimpleObjectList2) \ ( (This)->lpVtbl -> GetList2(This,Index,ListType,Flags,pobSrch,ppIVsSimpleObjectList2) ) #define IVsSimpleObjectList2_OnClose(This,ptca) \ ( (This)->lpVtbl -> OnClose(This,ptca) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsSimpleObjectList2_INTERFACE_DEFINED__ */ #ifndef __IVsBrowseContainersList_INTERFACE_DEFINED__ #define __IVsBrowseContainersList_INTERFACE_DEFINED__ /* interface IVsBrowseContainersList */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsBrowseContainersList; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("288F2A0C-B2E5-4799-9B9C-24E6EFCEFBF4") IVsBrowseContainersList : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetContainerData( /* [in] */ ULONG ulIndex, /* [out] */ __RPC__out VSCOMPONENTSELECTORDATA *pData) = 0; virtual HRESULT STDMETHODCALLTYPE FindContainer( /* [in] */ __RPC__in VSCOMPONENTSELECTORDATA *pData, /* [out] */ __RPC__out ULONG *pulIndex) = 0; }; #else /* C style interface */ typedef struct IVsBrowseContainersListVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsBrowseContainersList * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsBrowseContainersList * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsBrowseContainersList * This); HRESULT ( STDMETHODCALLTYPE *GetContainerData )( __RPC__in IVsBrowseContainersList * This, /* [in] */ ULONG ulIndex, /* [out] */ __RPC__out VSCOMPONENTSELECTORDATA *pData); HRESULT ( STDMETHODCALLTYPE *FindContainer )( __RPC__in IVsBrowseContainersList * This, /* [in] */ __RPC__in VSCOMPONENTSELECTORDATA *pData, /* [out] */ __RPC__out ULONG *pulIndex); END_INTERFACE } IVsBrowseContainersListVtbl; interface IVsBrowseContainersList { CONST_VTBL struct IVsBrowseContainersListVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsBrowseContainersList_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsBrowseContainersList_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsBrowseContainersList_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsBrowseContainersList_GetContainerData(This,ulIndex,pData) \ ( (This)->lpVtbl -> GetContainerData(This,ulIndex,pData) ) #define IVsBrowseContainersList_FindContainer(This,pData,pulIndex) \ ( (This)->lpVtbl -> FindContainer(This,pData,pulIndex) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsBrowseContainersList_INTERFACE_DEFINED__ */ #ifndef __IVsLibrary2_INTERFACE_DEFINED__ #define __IVsLibrary2_INTERFACE_DEFINED__ /* interface IVsLibrary2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsLibrary2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("EDD9F8A9-3FFE-4c4c-94F8-610B88E19160") IVsLibrary2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetSupportedCategoryFields2( /* [in] */ LIB_CATEGORY2 Category, /* [retval][out] */ __RPC__out DWORD *pgrfCatField) = 0; virtual HRESULT STDMETHODCALLTYPE GetList2( /* [in] */ LIB_LISTTYPE2 ListType, /* [in] */ LIB_LISTFLAGS Flags, /* [in] */ __RPC__in VSOBSEARCHCRITERIA2 *pobSrch, /* [retval][out] */ __RPC__deref_out_opt IVsObjectList2 **ppIVsObjectList2) = 0; virtual HRESULT STDMETHODCALLTYPE GetLibList( /* [in] */ LIB_PERSISTTYPE lptType, /* [retval][out] */ __RPC__deref_out_opt IVsLiteTreeList **ppList) = 0; virtual HRESULT STDMETHODCALLTYPE GetLibFlags2( /* [retval][out] */ __RPC__out LIB_FLAGS2 *pgrfFlags) = 0; virtual HRESULT STDMETHODCALLTYPE UpdateCounter( /* [out] */ __RPC__out ULONG *pCurUpdate) = 0; virtual HRESULT STDMETHODCALLTYPE GetGuid( /* [out] */ __RPC__deref_out_opt const GUID **ppguidLib) = 0; virtual HRESULT STDMETHODCALLTYPE GetSeparatorString( /* [string][out] */ __RPC__deref_out_opt_string LPCWSTR *pszSeparator) = 0; virtual HRESULT STDMETHODCALLTYPE LoadState( /* [in] */ __RPC__in_opt IStream *pIStream, /* [in] */ LIB_PERSISTTYPE lptType) = 0; virtual HRESULT STDMETHODCALLTYPE SaveState( /* [in] */ __RPC__in_opt IStream *pIStream, /* [in] */ LIB_PERSISTTYPE lptType) = 0; virtual HRESULT STDMETHODCALLTYPE GetBrowseContainersForHierarchy( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [in] */ ULONG celt, /* [size_is][out][in] */ __RPC__inout_ecount_full(celt) VSBROWSECONTAINER rgBrowseContainers[ ], /* [optional][out] */ __RPC__out ULONG *pcActual) = 0; virtual HRESULT STDMETHODCALLTYPE AddBrowseContainer( /* [in] */ __RPC__in PVSCOMPONENTSELECTORDATA pcdComponent, /* [out][in] */ __RPC__inout LIB_ADDREMOVEOPTIONS *pgrfOptions, /* [optional][out] */ __RPC__deref_out_opt BSTR *pbstrComponentAdded) = 0; virtual HRESULT STDMETHODCALLTYPE RemoveBrowseContainer( /* [in] */ DWORD dwReserved, /* [in] */ __RPC__in LPCWSTR pszLibName) = 0; virtual HRESULT STDMETHODCALLTYPE CreateNavInfo( /* [size_is][in] */ __RPC__in_ecount_full(ulcNodes) SYMBOL_DESCRIPTION_NODE rgSymbolNodes[ ], /* [in] */ ULONG ulcNodes, /* [out] */ __RPC__deref_out_opt IVsNavInfo **ppNavInfo) = 0; }; #else /* C style interface */ typedef struct IVsLibrary2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsLibrary2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsLibrary2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsLibrary2 * This); HRESULT ( STDMETHODCALLTYPE *GetSupportedCategoryFields2 )( __RPC__in IVsLibrary2 * This, /* [in] */ LIB_CATEGORY2 Category, /* [retval][out] */ __RPC__out DWORD *pgrfCatField); HRESULT ( STDMETHODCALLTYPE *GetList2 )( __RPC__in IVsLibrary2 * This, /* [in] */ LIB_LISTTYPE2 ListType, /* [in] */ LIB_LISTFLAGS Flags, /* [in] */ __RPC__in VSOBSEARCHCRITERIA2 *pobSrch, /* [retval][out] */ __RPC__deref_out_opt IVsObjectList2 **ppIVsObjectList2); HRESULT ( STDMETHODCALLTYPE *GetLibList )( __RPC__in IVsLibrary2 * This, /* [in] */ LIB_PERSISTTYPE lptType, /* [retval][out] */ __RPC__deref_out_opt IVsLiteTreeList **ppList); HRESULT ( STDMETHODCALLTYPE *GetLibFlags2 )( __RPC__in IVsLibrary2 * This, /* [retval][out] */ __RPC__out LIB_FLAGS2 *pgrfFlags); HRESULT ( STDMETHODCALLTYPE *UpdateCounter )( __RPC__in IVsLibrary2 * This, /* [out] */ __RPC__out ULONG *pCurUpdate); HRESULT ( STDMETHODCALLTYPE *GetGuid )( __RPC__in IVsLibrary2 * This, /* [out] */ __RPC__deref_out_opt const GUID **ppguidLib); HRESULT ( STDMETHODCALLTYPE *GetSeparatorString )( __RPC__in IVsLibrary2 * This, /* [string][out] */ __RPC__deref_out_opt_string LPCWSTR *pszSeparator); HRESULT ( STDMETHODCALLTYPE *LoadState )( __RPC__in IVsLibrary2 * This, /* [in] */ __RPC__in_opt IStream *pIStream, /* [in] */ LIB_PERSISTTYPE lptType); HRESULT ( STDMETHODCALLTYPE *SaveState )( __RPC__in IVsLibrary2 * This, /* [in] */ __RPC__in_opt IStream *pIStream, /* [in] */ LIB_PERSISTTYPE lptType); HRESULT ( STDMETHODCALLTYPE *GetBrowseContainersForHierarchy )( __RPC__in IVsLibrary2 * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [in] */ ULONG celt, /* [size_is][out][in] */ __RPC__inout_ecount_full(celt) VSBROWSECONTAINER rgBrowseContainers[ ], /* [optional][out] */ __RPC__out ULONG *pcActual); HRESULT ( STDMETHODCALLTYPE *AddBrowseContainer )( __RPC__in IVsLibrary2 * This, /* [in] */ __RPC__in PVSCOMPONENTSELECTORDATA pcdComponent, /* [out][in] */ __RPC__inout LIB_ADDREMOVEOPTIONS *pgrfOptions, /* [optional][out] */ __RPC__deref_out_opt BSTR *pbstrComponentAdded); HRESULT ( STDMETHODCALLTYPE *RemoveBrowseContainer )( __RPC__in IVsLibrary2 * This, /* [in] */ DWORD dwReserved, /* [in] */ __RPC__in LPCWSTR pszLibName); HRESULT ( STDMETHODCALLTYPE *CreateNavInfo )( __RPC__in IVsLibrary2 * This, /* [size_is][in] */ __RPC__in_ecount_full(ulcNodes) SYMBOL_DESCRIPTION_NODE rgSymbolNodes[ ], /* [in] */ ULONG ulcNodes, /* [out] */ __RPC__deref_out_opt IVsNavInfo **ppNavInfo); END_INTERFACE } IVsLibrary2Vtbl; interface IVsLibrary2 { CONST_VTBL struct IVsLibrary2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsLibrary2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsLibrary2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsLibrary2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsLibrary2_GetSupportedCategoryFields2(This,Category,pgrfCatField) \ ( (This)->lpVtbl -> GetSupportedCategoryFields2(This,Category,pgrfCatField) ) #define IVsLibrary2_GetList2(This,ListType,Flags,pobSrch,ppIVsObjectList2) \ ( (This)->lpVtbl -> GetList2(This,ListType,Flags,pobSrch,ppIVsObjectList2) ) #define IVsLibrary2_GetLibList(This,lptType,ppList) \ ( (This)->lpVtbl -> GetLibList(This,lptType,ppList) ) #define IVsLibrary2_GetLibFlags2(This,pgrfFlags) \ ( (This)->lpVtbl -> GetLibFlags2(This,pgrfFlags) ) #define IVsLibrary2_UpdateCounter(This,pCurUpdate) \ ( (This)->lpVtbl -> UpdateCounter(This,pCurUpdate) ) #define IVsLibrary2_GetGuid(This,ppguidLib) \ ( (This)->lpVtbl -> GetGuid(This,ppguidLib) ) #define IVsLibrary2_GetSeparatorString(This,pszSeparator) \ ( (This)->lpVtbl -> GetSeparatorString(This,pszSeparator) ) #define IVsLibrary2_LoadState(This,pIStream,lptType) \ ( (This)->lpVtbl -> LoadState(This,pIStream,lptType) ) #define IVsLibrary2_SaveState(This,pIStream,lptType) \ ( (This)->lpVtbl -> SaveState(This,pIStream,lptType) ) #define IVsLibrary2_GetBrowseContainersForHierarchy(This,pHierarchy,celt,rgBrowseContainers,pcActual) \ ( (This)->lpVtbl -> GetBrowseContainersForHierarchy(This,pHierarchy,celt,rgBrowseContainers,pcActual) ) #define IVsLibrary2_AddBrowseContainer(This,pcdComponent,pgrfOptions,pbstrComponentAdded) \ ( (This)->lpVtbl -> AddBrowseContainer(This,pcdComponent,pgrfOptions,pbstrComponentAdded) ) #define IVsLibrary2_RemoveBrowseContainer(This,dwReserved,pszLibName) \ ( (This)->lpVtbl -> RemoveBrowseContainer(This,dwReserved,pszLibName) ) #define IVsLibrary2_CreateNavInfo(This,rgSymbolNodes,ulcNodes,ppNavInfo) \ ( (This)->lpVtbl -> CreateNavInfo(This,rgSymbolNodes,ulcNodes,ppNavInfo) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsLibrary2_INTERFACE_DEFINED__ */ #ifndef __IVsSimpleLibrary2_INTERFACE_DEFINED__ #define __IVsSimpleLibrary2_INTERFACE_DEFINED__ /* interface IVsSimpleLibrary2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsSimpleLibrary2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("2F328444-6E74-48b4-8B95-08015F9D65D9") IVsSimpleLibrary2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetSupportedCategoryFields2( /* [in] */ LIB_CATEGORY2 Category, /* [retval][out] */ __RPC__out DWORD *pgrfCatField) = 0; virtual HRESULT STDMETHODCALLTYPE GetList2( /* [in] */ LIB_LISTTYPE2 ListType, /* [in] */ LIB_LISTFLAGS Flags, /* [in] */ __RPC__in VSOBSEARCHCRITERIA2 *pobSrch, /* [retval][out] */ __RPC__deref_out_opt IVsSimpleObjectList2 **ppIVsSimpleObjectList2) = 0; virtual HRESULT STDMETHODCALLTYPE GetLibFlags2( /* [retval][out] */ __RPC__out LIB_FLAGS2 *pgrfFlags) = 0; virtual HRESULT STDMETHODCALLTYPE UpdateCounter( /* [out] */ __RPC__out ULONG *pCurUpdate) = 0; virtual HRESULT STDMETHODCALLTYPE GetGuid( /* [out] */ __RPC__out GUID *pguidLib) = 0; virtual HRESULT STDMETHODCALLTYPE GetSeparatorStringWithOwnership( /* [out] */ __RPC__deref_out_opt BSTR *pbstrSeparator) = 0; virtual HRESULT STDMETHODCALLTYPE LoadState( /* [in] */ __RPC__in_opt IStream *pIStream, /* [in] */ LIB_PERSISTTYPE lptType) = 0; virtual HRESULT STDMETHODCALLTYPE SaveState( /* [in] */ __RPC__in_opt IStream *pIStream, /* [in] */ LIB_PERSISTTYPE lptType) = 0; virtual HRESULT STDMETHODCALLTYPE GetBrowseContainersForHierarchy( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [in] */ ULONG celt, /* [size_is][out][in] */ __RPC__inout_ecount_full(celt) VSBROWSECONTAINER rgBrowseContainers[ ], /* [optional][out] */ __RPC__out ULONG *pcActual) = 0; virtual HRESULT STDMETHODCALLTYPE AddBrowseContainer( /* [in] */ __RPC__in PVSCOMPONENTSELECTORDATA pcdComponent, /* [out][in] */ __RPC__inout LIB_ADDREMOVEOPTIONS *pgrfOptions, /* [out] */ __RPC__deref_out_opt BSTR *pbstrComponentAdded) = 0; virtual HRESULT STDMETHODCALLTYPE RemoveBrowseContainer( /* [in] */ DWORD dwReserved, /* [in] */ __RPC__in LPCWSTR pszLibName) = 0; virtual HRESULT STDMETHODCALLTYPE CreateNavInfo( /* [size_is][in] */ __RPC__in_ecount_full(ulcNodes) SYMBOL_DESCRIPTION_NODE rgSymbolNodes[ ], /* [in] */ ULONG ulcNodes, /* [out] */ __RPC__deref_out_opt IVsNavInfo **ppNavInfo) = 0; }; #else /* C style interface */ typedef struct IVsSimpleLibrary2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsSimpleLibrary2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsSimpleLibrary2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsSimpleLibrary2 * This); HRESULT ( STDMETHODCALLTYPE *GetSupportedCategoryFields2 )( __RPC__in IVsSimpleLibrary2 * This, /* [in] */ LIB_CATEGORY2 Category, /* [retval][out] */ __RPC__out DWORD *pgrfCatField); HRESULT ( STDMETHODCALLTYPE *GetList2 )( __RPC__in IVsSimpleLibrary2 * This, /* [in] */ LIB_LISTTYPE2 ListType, /* [in] */ LIB_LISTFLAGS Flags, /* [in] */ __RPC__in VSOBSEARCHCRITERIA2 *pobSrch, /* [retval][out] */ __RPC__deref_out_opt IVsSimpleObjectList2 **ppIVsSimpleObjectList2); HRESULT ( STDMETHODCALLTYPE *GetLibFlags2 )( __RPC__in IVsSimpleLibrary2 * This, /* [retval][out] */ __RPC__out LIB_FLAGS2 *pgrfFlags); HRESULT ( STDMETHODCALLTYPE *UpdateCounter )( __RPC__in IVsSimpleLibrary2 * This, /* [out] */ __RPC__out ULONG *pCurUpdate); HRESULT ( STDMETHODCALLTYPE *GetGuid )( __RPC__in IVsSimpleLibrary2 * This, /* [out] */ __RPC__out GUID *pguidLib); HRESULT ( STDMETHODCALLTYPE *GetSeparatorStringWithOwnership )( __RPC__in IVsSimpleLibrary2 * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrSeparator); HRESULT ( STDMETHODCALLTYPE *LoadState )( __RPC__in IVsSimpleLibrary2 * This, /* [in] */ __RPC__in_opt IStream *pIStream, /* [in] */ LIB_PERSISTTYPE lptType); HRESULT ( STDMETHODCALLTYPE *SaveState )( __RPC__in IVsSimpleLibrary2 * This, /* [in] */ __RPC__in_opt IStream *pIStream, /* [in] */ LIB_PERSISTTYPE lptType); HRESULT ( STDMETHODCALLTYPE *GetBrowseContainersForHierarchy )( __RPC__in IVsSimpleLibrary2 * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [in] */ ULONG celt, /* [size_is][out][in] */ __RPC__inout_ecount_full(celt) VSBROWSECONTAINER rgBrowseContainers[ ], /* [optional][out] */ __RPC__out ULONG *pcActual); HRESULT ( STDMETHODCALLTYPE *AddBrowseContainer )( __RPC__in IVsSimpleLibrary2 * This, /* [in] */ __RPC__in PVSCOMPONENTSELECTORDATA pcdComponent, /* [out][in] */ __RPC__inout LIB_ADDREMOVEOPTIONS *pgrfOptions, /* [out] */ __RPC__deref_out_opt BSTR *pbstrComponentAdded); HRESULT ( STDMETHODCALLTYPE *RemoveBrowseContainer )( __RPC__in IVsSimpleLibrary2 * This, /* [in] */ DWORD dwReserved, /* [in] */ __RPC__in LPCWSTR pszLibName); HRESULT ( STDMETHODCALLTYPE *CreateNavInfo )( __RPC__in IVsSimpleLibrary2 * This, /* [size_is][in] */ __RPC__in_ecount_full(ulcNodes) SYMBOL_DESCRIPTION_NODE rgSymbolNodes[ ], /* [in] */ ULONG ulcNodes, /* [out] */ __RPC__deref_out_opt IVsNavInfo **ppNavInfo); END_INTERFACE } IVsSimpleLibrary2Vtbl; interface IVsSimpleLibrary2 { CONST_VTBL struct IVsSimpleLibrary2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsSimpleLibrary2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsSimpleLibrary2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsSimpleLibrary2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsSimpleLibrary2_GetSupportedCategoryFields2(This,Category,pgrfCatField) \ ( (This)->lpVtbl -> GetSupportedCategoryFields2(This,Category,pgrfCatField) ) #define IVsSimpleLibrary2_GetList2(This,ListType,Flags,pobSrch,ppIVsSimpleObjectList2) \ ( (This)->lpVtbl -> GetList2(This,ListType,Flags,pobSrch,ppIVsSimpleObjectList2) ) #define IVsSimpleLibrary2_GetLibFlags2(This,pgrfFlags) \ ( (This)->lpVtbl -> GetLibFlags2(This,pgrfFlags) ) #define IVsSimpleLibrary2_UpdateCounter(This,pCurUpdate) \ ( (This)->lpVtbl -> UpdateCounter(This,pCurUpdate) ) #define IVsSimpleLibrary2_GetGuid(This,pguidLib) \ ( (This)->lpVtbl -> GetGuid(This,pguidLib) ) #define IVsSimpleLibrary2_GetSeparatorStringWithOwnership(This,pbstrSeparator) \ ( (This)->lpVtbl -> GetSeparatorStringWithOwnership(This,pbstrSeparator) ) #define IVsSimpleLibrary2_LoadState(This,pIStream,lptType) \ ( (This)->lpVtbl -> LoadState(This,pIStream,lptType) ) #define IVsSimpleLibrary2_SaveState(This,pIStream,lptType) \ ( (This)->lpVtbl -> SaveState(This,pIStream,lptType) ) #define IVsSimpleLibrary2_GetBrowseContainersForHierarchy(This,pHierarchy,celt,rgBrowseContainers,pcActual) \ ( (This)->lpVtbl -> GetBrowseContainersForHierarchy(This,pHierarchy,celt,rgBrowseContainers,pcActual) ) #define IVsSimpleLibrary2_AddBrowseContainer(This,pcdComponent,pgrfOptions,pbstrComponentAdded) \ ( (This)->lpVtbl -> AddBrowseContainer(This,pcdComponent,pgrfOptions,pbstrComponentAdded) ) #define IVsSimpleLibrary2_RemoveBrowseContainer(This,dwReserved,pszLibName) \ ( (This)->lpVtbl -> RemoveBrowseContainer(This,dwReserved,pszLibName) ) #define IVsSimpleLibrary2_CreateNavInfo(This,rgSymbolNodes,ulcNodes,ppNavInfo) \ ( (This)->lpVtbl -> CreateNavInfo(This,rgSymbolNodes,ulcNodes,ppNavInfo) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsSimpleLibrary2_INTERFACE_DEFINED__ */ #ifndef __IVsLibrary2Ex_INTERFACE_DEFINED__ #define __IVsLibrary2Ex_INTERFACE_DEFINED__ /* interface IVsLibrary2Ex */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsLibrary2Ex; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("D9C7D24D-7ED2-4a9d-93D1-450426CB27DF") IVsLibrary2Ex : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE ProfileSettingsChanged( void) = 0; virtual HRESULT STDMETHODCALLTYPE GetNavInfoContainerData( /* [in] */ __RPC__in_opt IVsNavInfo *pNavInfo, /* [out] */ __RPC__out VSCOMPONENTSELECTORDATA *pcsdComponent) = 0; virtual HRESULT STDMETHODCALLTYPE DoIdle( void) = 0; virtual HRESULT STDMETHODCALLTYPE SetContainerAsUnchanging( /* [in] */ __RPC__in VSCOMPONENTSELECTORDATA *pcsdComponent, /* [in] */ BOOL fUnchanging) = 0; }; #else /* C style interface */ typedef struct IVsLibrary2ExVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsLibrary2Ex * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsLibrary2Ex * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsLibrary2Ex * This); HRESULT ( STDMETHODCALLTYPE *ProfileSettingsChanged )( __RPC__in IVsLibrary2Ex * This); HRESULT ( STDMETHODCALLTYPE *GetNavInfoContainerData )( __RPC__in IVsLibrary2Ex * This, /* [in] */ __RPC__in_opt IVsNavInfo *pNavInfo, /* [out] */ __RPC__out VSCOMPONENTSELECTORDATA *pcsdComponent); HRESULT ( STDMETHODCALLTYPE *DoIdle )( __RPC__in IVsLibrary2Ex * This); HRESULT ( STDMETHODCALLTYPE *SetContainerAsUnchanging )( __RPC__in IVsLibrary2Ex * This, /* [in] */ __RPC__in VSCOMPONENTSELECTORDATA *pcsdComponent, /* [in] */ BOOL fUnchanging); END_INTERFACE } IVsLibrary2ExVtbl; interface IVsLibrary2Ex { CONST_VTBL struct IVsLibrary2ExVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsLibrary2Ex_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsLibrary2Ex_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsLibrary2Ex_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsLibrary2Ex_ProfileSettingsChanged(This) \ ( (This)->lpVtbl -> ProfileSettingsChanged(This) ) #define IVsLibrary2Ex_GetNavInfoContainerData(This,pNavInfo,pcsdComponent) \ ( (This)->lpVtbl -> GetNavInfoContainerData(This,pNavInfo,pcsdComponent) ) #define IVsLibrary2Ex_DoIdle(This) \ ( (This)->lpVtbl -> DoIdle(This) ) #define IVsLibrary2Ex_SetContainerAsUnchanging(This,pcsdComponent,fUnchanging) \ ( (This)->lpVtbl -> SetContainerAsUnchanging(This,pcsdComponent,fUnchanging) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsLibrary2Ex_INTERFACE_DEFINED__ */ #ifndef __IVsEnumLibraries2_INTERFACE_DEFINED__ #define __IVsEnumLibraries2_INTERFACE_DEFINED__ /* interface IVsEnumLibraries2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsEnumLibraries2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("FE2BB01D-6EBA-4796-ADF9-59EC7D100AC2") IVsEnumLibraries2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE Next( /* [in] */ ULONG celt, /* [length_is][size_is][out] */ __RPC__out_ecount_part(celt, *pceltFetched) IVsLibrary2 **rgelt, /* [out] */ __RPC__out ULONG *pceltFetched) = 0; virtual HRESULT STDMETHODCALLTYPE Skip( /* [in] */ ULONG celt) = 0; virtual HRESULT STDMETHODCALLTYPE Reset( void) = 0; virtual HRESULT STDMETHODCALLTYPE Clone( /* [out] */ __RPC__deref_out_opt IVsEnumLibraries2 **ppenum) = 0; }; #else /* C style interface */ typedef struct IVsEnumLibraries2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsEnumLibraries2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsEnumLibraries2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsEnumLibraries2 * This); HRESULT ( STDMETHODCALLTYPE *Next )( __RPC__in IVsEnumLibraries2 * This, /* [in] */ ULONG celt, /* [length_is][size_is][out] */ __RPC__out_ecount_part(celt, *pceltFetched) IVsLibrary2 **rgelt, /* [out] */ __RPC__out ULONG *pceltFetched); HRESULT ( STDMETHODCALLTYPE *Skip )( __RPC__in IVsEnumLibraries2 * This, /* [in] */ ULONG celt); HRESULT ( STDMETHODCALLTYPE *Reset )( __RPC__in IVsEnumLibraries2 * This); HRESULT ( STDMETHODCALLTYPE *Clone )( __RPC__in IVsEnumLibraries2 * This, /* [out] */ __RPC__deref_out_opt IVsEnumLibraries2 **ppenum); END_INTERFACE } IVsEnumLibraries2Vtbl; interface IVsEnumLibraries2 { CONST_VTBL struct IVsEnumLibraries2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsEnumLibraries2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsEnumLibraries2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsEnumLibraries2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsEnumLibraries2_Next(This,celt,rgelt,pceltFetched) \ ( (This)->lpVtbl -> Next(This,celt,rgelt,pceltFetched) ) #define IVsEnumLibraries2_Skip(This,celt) \ ( (This)->lpVtbl -> Skip(This,celt) ) #define IVsEnumLibraries2_Reset(This) \ ( (This)->lpVtbl -> Reset(This) ) #define IVsEnumLibraries2_Clone(This,ppenum) \ ( (This)->lpVtbl -> Clone(This,ppenum) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsEnumLibraries2_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0088 */ /* [local] */ enum _BROWSE_COMPONENT_SET_TYPE { BCST_EXCLUDE_LIBRARIES = 0, BCST_INCLUDE_LIBRARIES = 0x1 } ; typedef DWORD BROWSE_COMPONENT_SET_TYPE; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0088_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0088_v0_0_s_ifspec; #ifndef __IVsObjectManager2_INTERFACE_DEFINED__ #define __IVsObjectManager2_INTERFACE_DEFINED__ /* interface IVsObjectManager2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsObjectManager2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("6A0392E4-68E8-4fbc-AFCF-85155533E48E") IVsObjectManager2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE RegisterLibrary( /* [in] */ __RPC__in_opt IVsLibrary2 *pLib, /* [out] */ __RPC__out VSCOOKIE *pdwCookie) = 0; virtual HRESULT STDMETHODCALLTYPE RegisterSimpleLibrary( /* [in] */ __RPC__in_opt IVsSimpleLibrary2 *pLib, /* [out] */ __RPC__out VSCOOKIE *pdwCookie) = 0; virtual HRESULT STDMETHODCALLTYPE UnregisterLibrary( /* [in] */ VSCOOKIE dwCookie) = 0; virtual HRESULT STDMETHODCALLTYPE EnumLibraries( /* [out] */ __RPC__deref_out_opt IVsEnumLibraries2 **ppEnum) = 0; virtual HRESULT STDMETHODCALLTYPE FindLibrary( /* [in] */ __RPC__in REFGUID guidLibrary, /* [out] */ __RPC__deref_out_opt IVsLibrary2 **ppLib) = 0; virtual HRESULT STDMETHODCALLTYPE GetListAndIndex( /* [in] */ __RPC__in_opt IVsNavInfo *pNavInfo, /* [in] */ DWORD dwFlags, /* [out] */ __RPC__deref_out_opt IVsObjectList2 **ppList, /* [out] */ __RPC__out ULONG *pIndex) = 0; virtual HRESULT STDMETHODCALLTYPE ParseDataObject( /* [in] */ __RPC__in_opt IDataObject *pIDataObject, /* [out] */ __RPC__deref_out_opt IVsSelectedSymbols **ppSymbols) = 0; virtual HRESULT STDMETHODCALLTYPE CreateSimpleBrowseComponentSet( /* [in] */ BROWSE_COMPONENT_SET_TYPE Type, /* [size_is][in] */ __RPC__in_ecount_full(ulcLibs) const GUID rgguidLibs[ ], /* [in] */ ULONG ulcLibs, /* [retval][out] */ __RPC__deref_out_opt IVsSimpleBrowseComponentSet **ppSet) = 0; virtual HRESULT STDMETHODCALLTYPE CreateProjectReferenceSet( /* [in] */ __RPC__in_opt IUnknown *pProject, /* [retval][out] */ __RPC__deref_out_opt IVsSimpleBrowseComponentSet **ppSet) = 0; virtual HRESULT STDMETHODCALLTYPE CreateCombinedBrowseComponentSet( /* [retval][out] */ __RPC__deref_out_opt IVsCombinedBrowseComponentSet **ppCombinedSet) = 0; }; #else /* C style interface */ typedef struct IVsObjectManager2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsObjectManager2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsObjectManager2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsObjectManager2 * This); HRESULT ( STDMETHODCALLTYPE *RegisterLibrary )( __RPC__in IVsObjectManager2 * This, /* [in] */ __RPC__in_opt IVsLibrary2 *pLib, /* [out] */ __RPC__out VSCOOKIE *pdwCookie); HRESULT ( STDMETHODCALLTYPE *RegisterSimpleLibrary )( __RPC__in IVsObjectManager2 * This, /* [in] */ __RPC__in_opt IVsSimpleLibrary2 *pLib, /* [out] */ __RPC__out VSCOOKIE *pdwCookie); HRESULT ( STDMETHODCALLTYPE *UnregisterLibrary )( __RPC__in IVsObjectManager2 * This, /* [in] */ VSCOOKIE dwCookie); HRESULT ( STDMETHODCALLTYPE *EnumLibraries )( __RPC__in IVsObjectManager2 * This, /* [out] */ __RPC__deref_out_opt IVsEnumLibraries2 **ppEnum); HRESULT ( STDMETHODCALLTYPE *FindLibrary )( __RPC__in IVsObjectManager2 * This, /* [in] */ __RPC__in REFGUID guidLibrary, /* [out] */ __RPC__deref_out_opt IVsLibrary2 **ppLib); HRESULT ( STDMETHODCALLTYPE *GetListAndIndex )( __RPC__in IVsObjectManager2 * This, /* [in] */ __RPC__in_opt IVsNavInfo *pNavInfo, /* [in] */ DWORD dwFlags, /* [out] */ __RPC__deref_out_opt IVsObjectList2 **ppList, /* [out] */ __RPC__out ULONG *pIndex); HRESULT ( STDMETHODCALLTYPE *ParseDataObject )( __RPC__in IVsObjectManager2 * This, /* [in] */ __RPC__in_opt IDataObject *pIDataObject, /* [out] */ __RPC__deref_out_opt IVsSelectedSymbols **ppSymbols); HRESULT ( STDMETHODCALLTYPE *CreateSimpleBrowseComponentSet )( __RPC__in IVsObjectManager2 * This, /* [in] */ BROWSE_COMPONENT_SET_TYPE Type, /* [size_is][in] */ __RPC__in_ecount_full(ulcLibs) const GUID rgguidLibs[ ], /* [in] */ ULONG ulcLibs, /* [retval][out] */ __RPC__deref_out_opt IVsSimpleBrowseComponentSet **ppSet); HRESULT ( STDMETHODCALLTYPE *CreateProjectReferenceSet )( __RPC__in IVsObjectManager2 * This, /* [in] */ __RPC__in_opt IUnknown *pProject, /* [retval][out] */ __RPC__deref_out_opt IVsSimpleBrowseComponentSet **ppSet); HRESULT ( STDMETHODCALLTYPE *CreateCombinedBrowseComponentSet )( __RPC__in IVsObjectManager2 * This, /* [retval][out] */ __RPC__deref_out_opt IVsCombinedBrowseComponentSet **ppCombinedSet); END_INTERFACE } IVsObjectManager2Vtbl; interface IVsObjectManager2 { CONST_VTBL struct IVsObjectManager2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsObjectManager2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsObjectManager2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsObjectManager2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsObjectManager2_RegisterLibrary(This,pLib,pdwCookie) \ ( (This)->lpVtbl -> RegisterLibrary(This,pLib,pdwCookie) ) #define IVsObjectManager2_RegisterSimpleLibrary(This,pLib,pdwCookie) \ ( (This)->lpVtbl -> RegisterSimpleLibrary(This,pLib,pdwCookie) ) #define IVsObjectManager2_UnregisterLibrary(This,dwCookie) \ ( (This)->lpVtbl -> UnregisterLibrary(This,dwCookie) ) #define IVsObjectManager2_EnumLibraries(This,ppEnum) \ ( (This)->lpVtbl -> EnumLibraries(This,ppEnum) ) #define IVsObjectManager2_FindLibrary(This,guidLibrary,ppLib) \ ( (This)->lpVtbl -> FindLibrary(This,guidLibrary,ppLib) ) #define IVsObjectManager2_GetListAndIndex(This,pNavInfo,dwFlags,ppList,pIndex) \ ( (This)->lpVtbl -> GetListAndIndex(This,pNavInfo,dwFlags,ppList,pIndex) ) #define IVsObjectManager2_ParseDataObject(This,pIDataObject,ppSymbols) \ ( (This)->lpVtbl -> ParseDataObject(This,pIDataObject,ppSymbols) ) #define IVsObjectManager2_CreateSimpleBrowseComponentSet(This,Type,rgguidLibs,ulcLibs,ppSet) \ ( (This)->lpVtbl -> CreateSimpleBrowseComponentSet(This,Type,rgguidLibs,ulcLibs,ppSet) ) #define IVsObjectManager2_CreateProjectReferenceSet(This,pProject,ppSet) \ ( (This)->lpVtbl -> CreateProjectReferenceSet(This,pProject,ppSet) ) #define IVsObjectManager2_CreateCombinedBrowseComponentSet(This,ppCombinedSet) \ ( (This)->lpVtbl -> CreateCombinedBrowseComponentSet(This,ppCombinedSet) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsObjectManager2_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0089 */ /* [local] */ DEFINE_GUID(GUID_VB_BrowseLibrary, 0x414AC972, 0x9829, 0x4B6A, 0xA8, 0xD7, 0xA0, 0x81, 0x52, 0xFE, 0xB8, 0xAA); DEFINE_GUID(GUID_CSharp_BrowseLibrary, 0x58f1bad0, 0x2288, 0x45b9, 0xac, 0x3a, 0xd5, 0x63, 0x98, 0xf7, 0x78, 0x1d); DEFINE_GUID(GUID_VJSharp_BrowseLibrary, 0x7B1DC85B, 0xE430, 0x4187, 0x81, 0x77, 0xEF, 0x97, 0xDD, 0x39, 0x0D, 0x9A); DEFINE_GUID(GUID_VC_BrowseLibrary, 0x6c1ac90e, 0x09fc, 0x4f23, 0x90, 0xff, 0x87, 0xf8, 0xcf, 0xc2, 0xa4, 0x45); DEFINE_GUID(GUID_BSC_BrowseLibrary, 0x26e73a17, 0x0d6c, 0x4a33, 0xb8, 0x33, 0x22, 0xc7, 0x6c, 0x50, 0x94, 0x9f); DEFINE_GUID(GUID_Assembly_BrowseLibrary, 0x1ec72fd7, 0xc820, 0x4273, 0x9a, 0x21, 0x77, 0x7a, 0x5c, 0x52, 0x2e, 0x03); DEFINE_GUID(GUID_TypeLib_BrowseLibrary, 0x18e32c04, 0x58ba, 0x4a1e, 0x80, 0xde, 0x1c, 0x29, 0x16, 0x34, 0x16, 0x6a); DEFINE_GUID(GUID_Folder_BrowseLibrary, 0xdc534e0e, 0xefbe, 0x4d0c, 0x8a, 0x25, 0x98, 0xbf, 0x2, 0x9f, 0x15, 0xf8); DEFINE_GUID(GUID_ResourceView_BrowseLibrary, 0xD22514E7, 0x23AF, 0x4723, 0xB6, 0xE5, 0xE1, 0x7D, 0x27, 0x62, 0x6D, 0x34); enum _BROWSE_COMPONENT_SET_OPTIONS { BCSO_NO_REMOVE = 0x1, BCSO_NO_RENAME = 0x2, BCSO_NO_DRAG_DROP = 0x4, BCSO_PROJECT_REFERENCES = 0x8 } ; #define BCSO_NO_EDIT (BCSO_NO_REMOVE | BCSO_NO_RENAME | BCSO_NO_DRAG_DROP) typedef DWORD BROWSE_COMPONENT_SET_OPTIONS; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0089_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0089_v0_0_s_ifspec; #ifndef __IVsBrowseComponentSet_INTERFACE_DEFINED__ #define __IVsBrowseComponentSet_INTERFACE_DEFINED__ /* interface IVsBrowseComponentSet */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsBrowseComponentSet; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("804DCBDE-3A63-4c3c-9316-296C4C7E9140") IVsBrowseComponentSet : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE put_ComponentsListOptions( /* [in] */ BROWSE_COMPONENT_SET_OPTIONS dwOptions) = 0; virtual HRESULT STDMETHODCALLTYPE get_ComponentsListOptions( /* [retval][out] */ __RPC__out BROWSE_COMPONENT_SET_OPTIONS *pdwOptions) = 0; virtual HRESULT STDMETHODCALLTYPE put_ChildListOptions( /* [in] */ BROWSE_COMPONENT_SET_OPTIONS dwOptions) = 0; virtual HRESULT STDMETHODCALLTYPE get_ChildListOptions( /* [retval][out] */ __RPC__out BROWSE_COMPONENT_SET_OPTIONS *pdwOptions) = 0; virtual HRESULT STDMETHODCALLTYPE GetList2( /* [in] */ LIB_LISTTYPE2 ListType, /* [in] */ LIB_LISTFLAGS Flags, /* [in] */ __RPC__in VSOBSEARCHCRITERIA2 *pobSrch, /* [in] */ __RPC__in_opt IVsObjectList2 *pExtraListToCombineWith, /* [retval][out] */ __RPC__deref_out_opt IVsObjectList2 **ppIVsObjectList2) = 0; virtual HRESULT STDMETHODCALLTYPE GetSupportedCategoryFields2( /* [in] */ LIB_CATEGORY2 Category, /* [retval][out] */ __RPC__out DWORD *pgrfCatField) = 0; virtual HRESULT STDMETHODCALLTYPE CreateNavInfo( /* [in] */ __RPC__in REFGUID guidLib, /* [size_is][in] */ __RPC__in_ecount_full(ulcNodes) SYMBOL_DESCRIPTION_NODE rgSymbolNodes[ ], /* [in] */ ULONG ulcNodes, /* [retval][out] */ __RPC__deref_out_opt IVsNavInfo **ppNavInfo) = 0; virtual HRESULT STDMETHODCALLTYPE UpdateCounter( /* [out] */ __RPC__out ULONG *pCurUpdate) = 0; }; #else /* C style interface */ typedef struct IVsBrowseComponentSetVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsBrowseComponentSet * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsBrowseComponentSet * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsBrowseComponentSet * This); HRESULT ( STDMETHODCALLTYPE *put_ComponentsListOptions )( __RPC__in IVsBrowseComponentSet * This, /* [in] */ BROWSE_COMPONENT_SET_OPTIONS dwOptions); HRESULT ( STDMETHODCALLTYPE *get_ComponentsListOptions )( __RPC__in IVsBrowseComponentSet * This, /* [retval][out] */ __RPC__out BROWSE_COMPONENT_SET_OPTIONS *pdwOptions); HRESULT ( STDMETHODCALLTYPE *put_ChildListOptions )( __RPC__in IVsBrowseComponentSet * This, /* [in] */ BROWSE_COMPONENT_SET_OPTIONS dwOptions); HRESULT ( STDMETHODCALLTYPE *get_ChildListOptions )( __RPC__in IVsBrowseComponentSet * This, /* [retval][out] */ __RPC__out BROWSE_COMPONENT_SET_OPTIONS *pdwOptions); HRESULT ( STDMETHODCALLTYPE *GetList2 )( __RPC__in IVsBrowseComponentSet * This, /* [in] */ LIB_LISTTYPE2 ListType, /* [in] */ LIB_LISTFLAGS Flags, /* [in] */ __RPC__in VSOBSEARCHCRITERIA2 *pobSrch, /* [in] */ __RPC__in_opt IVsObjectList2 *pExtraListToCombineWith, /* [retval][out] */ __RPC__deref_out_opt IVsObjectList2 **ppIVsObjectList2); HRESULT ( STDMETHODCALLTYPE *GetSupportedCategoryFields2 )( __RPC__in IVsBrowseComponentSet * This, /* [in] */ LIB_CATEGORY2 Category, /* [retval][out] */ __RPC__out DWORD *pgrfCatField); HRESULT ( STDMETHODCALLTYPE *CreateNavInfo )( __RPC__in IVsBrowseComponentSet * This, /* [in] */ __RPC__in REFGUID guidLib, /* [size_is][in] */ __RPC__in_ecount_full(ulcNodes) SYMBOL_DESCRIPTION_NODE rgSymbolNodes[ ], /* [in] */ ULONG ulcNodes, /* [retval][out] */ __RPC__deref_out_opt IVsNavInfo **ppNavInfo); HRESULT ( STDMETHODCALLTYPE *UpdateCounter )( __RPC__in IVsBrowseComponentSet * This, /* [out] */ __RPC__out ULONG *pCurUpdate); END_INTERFACE } IVsBrowseComponentSetVtbl; interface IVsBrowseComponentSet { CONST_VTBL struct IVsBrowseComponentSetVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsBrowseComponentSet_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsBrowseComponentSet_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsBrowseComponentSet_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsBrowseComponentSet_put_ComponentsListOptions(This,dwOptions) \ ( (This)->lpVtbl -> put_ComponentsListOptions(This,dwOptions) ) #define IVsBrowseComponentSet_get_ComponentsListOptions(This,pdwOptions) \ ( (This)->lpVtbl -> get_ComponentsListOptions(This,pdwOptions) ) #define IVsBrowseComponentSet_put_ChildListOptions(This,dwOptions) \ ( (This)->lpVtbl -> put_ChildListOptions(This,dwOptions) ) #define IVsBrowseComponentSet_get_ChildListOptions(This,pdwOptions) \ ( (This)->lpVtbl -> get_ChildListOptions(This,pdwOptions) ) #define IVsBrowseComponentSet_GetList2(This,ListType,Flags,pobSrch,pExtraListToCombineWith,ppIVsObjectList2) \ ( (This)->lpVtbl -> GetList2(This,ListType,Flags,pobSrch,pExtraListToCombineWith,ppIVsObjectList2) ) #define IVsBrowseComponentSet_GetSupportedCategoryFields2(This,Category,pgrfCatField) \ ( (This)->lpVtbl -> GetSupportedCategoryFields2(This,Category,pgrfCatField) ) #define IVsBrowseComponentSet_CreateNavInfo(This,guidLib,rgSymbolNodes,ulcNodes,ppNavInfo) \ ( (This)->lpVtbl -> CreateNavInfo(This,guidLib,rgSymbolNodes,ulcNodes,ppNavInfo) ) #define IVsBrowseComponentSet_UpdateCounter(This,pCurUpdate) \ ( (This)->lpVtbl -> UpdateCounter(This,pCurUpdate) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsBrowseComponentSet_INTERFACE_DEFINED__ */ #ifndef __IVsSimpleBrowseComponentSet_INTERFACE_DEFINED__ #define __IVsSimpleBrowseComponentSet_INTERFACE_DEFINED__ /* interface IVsSimpleBrowseComponentSet */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsSimpleBrowseComponentSet; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("B027F23C-E6B9-415c-ACF0-3D7CFAFCC662") IVsSimpleBrowseComponentSet : public IVsBrowseComponentSet { public: virtual HRESULT STDMETHODCALLTYPE put_RootNavInfo( /* [in] */ __RPC__in_opt IVsNavInfo *pRootNavInfo) = 0; virtual HRESULT STDMETHODCALLTYPE get_RootNavInfo( /* [retval][out] */ __RPC__deref_out_opt IVsNavInfo **pRootNavInfo) = 0; virtual HRESULT STDMETHODCALLTYPE put_Owner( /* [in] */ __RPC__in_opt IUnknown *pOwner) = 0; virtual HRESULT STDMETHODCALLTYPE get_Owner( /* [retval][out] */ __RPC__deref_out_opt IUnknown **ppOwner) = 0; virtual HRESULT STDMETHODCALLTYPE FindComponent( /* [in] */ __RPC__in REFGUID guidLib, /* [in] */ __RPC__in VSCOMPONENTSELECTORDATA *pcsdComponent, /* [out] */ __RPC__deref_out_opt IVsNavInfo **ppRealLibNavInfo, /* [out] */ __RPC__out VSCOMPONENTSELECTORDATA *pcsdExistingComponent) = 0; virtual HRESULT STDMETHODCALLTYPE AddComponent( /* [in] */ __RPC__in REFGUID guidLib, /* [in] */ __RPC__in VSCOMPONENTSELECTORDATA *pcsdComponent, /* [out] */ __RPC__deref_out_opt IVsNavInfo **ppRealLibNavInfo, /* [out] */ __RPC__out VSCOMPONENTSELECTORDATA *pcsdAddedComponent) = 0; virtual HRESULT STDMETHODCALLTYPE RemoveComponent( /* [in] */ __RPC__in_opt IVsNavInfo *pRealLibNavInfo) = 0; virtual HRESULT STDMETHODCALLTYPE RemoveAllComponents( void) = 0; }; #else /* C style interface */ typedef struct IVsSimpleBrowseComponentSetVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsSimpleBrowseComponentSet * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsSimpleBrowseComponentSet * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsSimpleBrowseComponentSet * This); HRESULT ( STDMETHODCALLTYPE *put_ComponentsListOptions )( __RPC__in IVsSimpleBrowseComponentSet * This, /* [in] */ BROWSE_COMPONENT_SET_OPTIONS dwOptions); HRESULT ( STDMETHODCALLTYPE *get_ComponentsListOptions )( __RPC__in IVsSimpleBrowseComponentSet * This, /* [retval][out] */ __RPC__out BROWSE_COMPONENT_SET_OPTIONS *pdwOptions); HRESULT ( STDMETHODCALLTYPE *put_ChildListOptions )( __RPC__in IVsSimpleBrowseComponentSet * This, /* [in] */ BROWSE_COMPONENT_SET_OPTIONS dwOptions); HRESULT ( STDMETHODCALLTYPE *get_ChildListOptions )( __RPC__in IVsSimpleBrowseComponentSet * This, /* [retval][out] */ __RPC__out BROWSE_COMPONENT_SET_OPTIONS *pdwOptions); HRESULT ( STDMETHODCALLTYPE *GetList2 )( __RPC__in IVsSimpleBrowseComponentSet * This, /* [in] */ LIB_LISTTYPE2 ListType, /* [in] */ LIB_LISTFLAGS Flags, /* [in] */ __RPC__in VSOBSEARCHCRITERIA2 *pobSrch, /* [in] */ __RPC__in_opt IVsObjectList2 *pExtraListToCombineWith, /* [retval][out] */ __RPC__deref_out_opt IVsObjectList2 **ppIVsObjectList2); HRESULT ( STDMETHODCALLTYPE *GetSupportedCategoryFields2 )( __RPC__in IVsSimpleBrowseComponentSet * This, /* [in] */ LIB_CATEGORY2 Category, /* [retval][out] */ __RPC__out DWORD *pgrfCatField); HRESULT ( STDMETHODCALLTYPE *CreateNavInfo )( __RPC__in IVsSimpleBrowseComponentSet * This, /* [in] */ __RPC__in REFGUID guidLib, /* [size_is][in] */ __RPC__in_ecount_full(ulcNodes) SYMBOL_DESCRIPTION_NODE rgSymbolNodes[ ], /* [in] */ ULONG ulcNodes, /* [retval][out] */ __RPC__deref_out_opt IVsNavInfo **ppNavInfo); HRESULT ( STDMETHODCALLTYPE *UpdateCounter )( __RPC__in IVsSimpleBrowseComponentSet * This, /* [out] */ __RPC__out ULONG *pCurUpdate); HRESULT ( STDMETHODCALLTYPE *put_RootNavInfo )( __RPC__in IVsSimpleBrowseComponentSet * This, /* [in] */ __RPC__in_opt IVsNavInfo *pRootNavInfo); HRESULT ( STDMETHODCALLTYPE *get_RootNavInfo )( __RPC__in IVsSimpleBrowseComponentSet * This, /* [retval][out] */ __RPC__deref_out_opt IVsNavInfo **pRootNavInfo); HRESULT ( STDMETHODCALLTYPE *put_Owner )( __RPC__in IVsSimpleBrowseComponentSet * This, /* [in] */ __RPC__in_opt IUnknown *pOwner); HRESULT ( STDMETHODCALLTYPE *get_Owner )( __RPC__in IVsSimpleBrowseComponentSet * This, /* [retval][out] */ __RPC__deref_out_opt IUnknown **ppOwner); HRESULT ( STDMETHODCALLTYPE *FindComponent )( __RPC__in IVsSimpleBrowseComponentSet * This, /* [in] */ __RPC__in REFGUID guidLib, /* [in] */ __RPC__in VSCOMPONENTSELECTORDATA *pcsdComponent, /* [out] */ __RPC__deref_out_opt IVsNavInfo **ppRealLibNavInfo, /* [out] */ __RPC__out VSCOMPONENTSELECTORDATA *pcsdExistingComponent); HRESULT ( STDMETHODCALLTYPE *AddComponent )( __RPC__in IVsSimpleBrowseComponentSet * This, /* [in] */ __RPC__in REFGUID guidLib, /* [in] */ __RPC__in VSCOMPONENTSELECTORDATA *pcsdComponent, /* [out] */ __RPC__deref_out_opt IVsNavInfo **ppRealLibNavInfo, /* [out] */ __RPC__out VSCOMPONENTSELECTORDATA *pcsdAddedComponent); HRESULT ( STDMETHODCALLTYPE *RemoveComponent )( __RPC__in IVsSimpleBrowseComponentSet * This, /* [in] */ __RPC__in_opt IVsNavInfo *pRealLibNavInfo); HRESULT ( STDMETHODCALLTYPE *RemoveAllComponents )( __RPC__in IVsSimpleBrowseComponentSet * This); END_INTERFACE } IVsSimpleBrowseComponentSetVtbl; interface IVsSimpleBrowseComponentSet { CONST_VTBL struct IVsSimpleBrowseComponentSetVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsSimpleBrowseComponentSet_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsSimpleBrowseComponentSet_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsSimpleBrowseComponentSet_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsSimpleBrowseComponentSet_put_ComponentsListOptions(This,dwOptions) \ ( (This)->lpVtbl -> put_ComponentsListOptions(This,dwOptions) ) #define IVsSimpleBrowseComponentSet_get_ComponentsListOptions(This,pdwOptions) \ ( (This)->lpVtbl -> get_ComponentsListOptions(This,pdwOptions) ) #define IVsSimpleBrowseComponentSet_put_ChildListOptions(This,dwOptions) \ ( (This)->lpVtbl -> put_ChildListOptions(This,dwOptions) ) #define IVsSimpleBrowseComponentSet_get_ChildListOptions(This,pdwOptions) \ ( (This)->lpVtbl -> get_ChildListOptions(This,pdwOptions) ) #define IVsSimpleBrowseComponentSet_GetList2(This,ListType,Flags,pobSrch,pExtraListToCombineWith,ppIVsObjectList2) \ ( (This)->lpVtbl -> GetList2(This,ListType,Flags,pobSrch,pExtraListToCombineWith,ppIVsObjectList2) ) #define IVsSimpleBrowseComponentSet_GetSupportedCategoryFields2(This,Category,pgrfCatField) \ ( (This)->lpVtbl -> GetSupportedCategoryFields2(This,Category,pgrfCatField) ) #define IVsSimpleBrowseComponentSet_CreateNavInfo(This,guidLib,rgSymbolNodes,ulcNodes,ppNavInfo) \ ( (This)->lpVtbl -> CreateNavInfo(This,guidLib,rgSymbolNodes,ulcNodes,ppNavInfo) ) #define IVsSimpleBrowseComponentSet_UpdateCounter(This,pCurUpdate) \ ( (This)->lpVtbl -> UpdateCounter(This,pCurUpdate) ) #define IVsSimpleBrowseComponentSet_put_RootNavInfo(This,pRootNavInfo) \ ( (This)->lpVtbl -> put_RootNavInfo(This,pRootNavInfo) ) #define IVsSimpleBrowseComponentSet_get_RootNavInfo(This,pRootNavInfo) \ ( (This)->lpVtbl -> get_RootNavInfo(This,pRootNavInfo) ) #define IVsSimpleBrowseComponentSet_put_Owner(This,pOwner) \ ( (This)->lpVtbl -> put_Owner(This,pOwner) ) #define IVsSimpleBrowseComponentSet_get_Owner(This,ppOwner) \ ( (This)->lpVtbl -> get_Owner(This,ppOwner) ) #define IVsSimpleBrowseComponentSet_FindComponent(This,guidLib,pcsdComponent,ppRealLibNavInfo,pcsdExistingComponent) \ ( (This)->lpVtbl -> FindComponent(This,guidLib,pcsdComponent,ppRealLibNavInfo,pcsdExistingComponent) ) #define IVsSimpleBrowseComponentSet_AddComponent(This,guidLib,pcsdComponent,ppRealLibNavInfo,pcsdAddedComponent) \ ( (This)->lpVtbl -> AddComponent(This,guidLib,pcsdComponent,ppRealLibNavInfo,pcsdAddedComponent) ) #define IVsSimpleBrowseComponentSet_RemoveComponent(This,pRealLibNavInfo) \ ( (This)->lpVtbl -> RemoveComponent(This,pRealLibNavInfo) ) #define IVsSimpleBrowseComponentSet_RemoveAllComponents(This) \ ( (This)->lpVtbl -> RemoveAllComponents(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsSimpleBrowseComponentSet_INTERFACE_DEFINED__ */ #ifndef __IVsCombinedBrowseComponentSet_INTERFACE_DEFINED__ #define __IVsCombinedBrowseComponentSet_INTERFACE_DEFINED__ /* interface IVsCombinedBrowseComponentSet */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsCombinedBrowseComponentSet; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("64CBD015-9D4B-4daf-8801-68EDA90B98C5") IVsCombinedBrowseComponentSet : public IVsBrowseComponentSet { public: virtual HRESULT STDMETHODCALLTYPE AddSet( /* [in] */ __RPC__in_opt IVsSimpleBrowseComponentSet *pSet) = 0; virtual HRESULT STDMETHODCALLTYPE GetSetCount( /* [in] */ __RPC__in ULONG *pulCount) = 0; virtual HRESULT STDMETHODCALLTYPE GetSetAt( /* [in] */ ULONG ulIndex, /* [retval][out] */ __RPC__deref_out_opt IVsSimpleBrowseComponentSet **ppSet) = 0; virtual HRESULT STDMETHODCALLTYPE RemoveSetAt( /* [in] */ ULONG ulIndex) = 0; virtual HRESULT STDMETHODCALLTYPE RemoveAllSets( void) = 0; virtual HRESULT STDMETHODCALLTYPE RemoveOwnerSets( /* [in] */ __RPC__in_opt IUnknown *pOwner) = 0; }; #else /* C style interface */ typedef struct IVsCombinedBrowseComponentSetVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsCombinedBrowseComponentSet * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsCombinedBrowseComponentSet * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsCombinedBrowseComponentSet * This); HRESULT ( STDMETHODCALLTYPE *put_ComponentsListOptions )( __RPC__in IVsCombinedBrowseComponentSet * This, /* [in] */ BROWSE_COMPONENT_SET_OPTIONS dwOptions); HRESULT ( STDMETHODCALLTYPE *get_ComponentsListOptions )( __RPC__in IVsCombinedBrowseComponentSet * This, /* [retval][out] */ __RPC__out BROWSE_COMPONENT_SET_OPTIONS *pdwOptions); HRESULT ( STDMETHODCALLTYPE *put_ChildListOptions )( __RPC__in IVsCombinedBrowseComponentSet * This, /* [in] */ BROWSE_COMPONENT_SET_OPTIONS dwOptions); HRESULT ( STDMETHODCALLTYPE *get_ChildListOptions )( __RPC__in IVsCombinedBrowseComponentSet * This, /* [retval][out] */ __RPC__out BROWSE_COMPONENT_SET_OPTIONS *pdwOptions); HRESULT ( STDMETHODCALLTYPE *GetList2 )( __RPC__in IVsCombinedBrowseComponentSet * This, /* [in] */ LIB_LISTTYPE2 ListType, /* [in] */ LIB_LISTFLAGS Flags, /* [in] */ __RPC__in VSOBSEARCHCRITERIA2 *pobSrch, /* [in] */ __RPC__in_opt IVsObjectList2 *pExtraListToCombineWith, /* [retval][out] */ __RPC__deref_out_opt IVsObjectList2 **ppIVsObjectList2); HRESULT ( STDMETHODCALLTYPE *GetSupportedCategoryFields2 )( __RPC__in IVsCombinedBrowseComponentSet * This, /* [in] */ LIB_CATEGORY2 Category, /* [retval][out] */ __RPC__out DWORD *pgrfCatField); HRESULT ( STDMETHODCALLTYPE *CreateNavInfo )( __RPC__in IVsCombinedBrowseComponentSet * This, /* [in] */ __RPC__in REFGUID guidLib, /* [size_is][in] */ __RPC__in_ecount_full(ulcNodes) SYMBOL_DESCRIPTION_NODE rgSymbolNodes[ ], /* [in] */ ULONG ulcNodes, /* [retval][out] */ __RPC__deref_out_opt IVsNavInfo **ppNavInfo); HRESULT ( STDMETHODCALLTYPE *UpdateCounter )( __RPC__in IVsCombinedBrowseComponentSet * This, /* [out] */ __RPC__out ULONG *pCurUpdate); HRESULT ( STDMETHODCALLTYPE *AddSet )( __RPC__in IVsCombinedBrowseComponentSet * This, /* [in] */ __RPC__in_opt IVsSimpleBrowseComponentSet *pSet); HRESULT ( STDMETHODCALLTYPE *GetSetCount )( __RPC__in IVsCombinedBrowseComponentSet * This, /* [in] */ __RPC__in ULONG *pulCount); HRESULT ( STDMETHODCALLTYPE *GetSetAt )( __RPC__in IVsCombinedBrowseComponentSet * This, /* [in] */ ULONG ulIndex, /* [retval][out] */ __RPC__deref_out_opt IVsSimpleBrowseComponentSet **ppSet); HRESULT ( STDMETHODCALLTYPE *RemoveSetAt )( __RPC__in IVsCombinedBrowseComponentSet * This, /* [in] */ ULONG ulIndex); HRESULT ( STDMETHODCALLTYPE *RemoveAllSets )( __RPC__in IVsCombinedBrowseComponentSet * This); HRESULT ( STDMETHODCALLTYPE *RemoveOwnerSets )( __RPC__in IVsCombinedBrowseComponentSet * This, /* [in] */ __RPC__in_opt IUnknown *pOwner); END_INTERFACE } IVsCombinedBrowseComponentSetVtbl; interface IVsCombinedBrowseComponentSet { CONST_VTBL struct IVsCombinedBrowseComponentSetVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsCombinedBrowseComponentSet_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsCombinedBrowseComponentSet_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsCombinedBrowseComponentSet_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsCombinedBrowseComponentSet_put_ComponentsListOptions(This,dwOptions) \ ( (This)->lpVtbl -> put_ComponentsListOptions(This,dwOptions) ) #define IVsCombinedBrowseComponentSet_get_ComponentsListOptions(This,pdwOptions) \ ( (This)->lpVtbl -> get_ComponentsListOptions(This,pdwOptions) ) #define IVsCombinedBrowseComponentSet_put_ChildListOptions(This,dwOptions) \ ( (This)->lpVtbl -> put_ChildListOptions(This,dwOptions) ) #define IVsCombinedBrowseComponentSet_get_ChildListOptions(This,pdwOptions) \ ( (This)->lpVtbl -> get_ChildListOptions(This,pdwOptions) ) #define IVsCombinedBrowseComponentSet_GetList2(This,ListType,Flags,pobSrch,pExtraListToCombineWith,ppIVsObjectList2) \ ( (This)->lpVtbl -> GetList2(This,ListType,Flags,pobSrch,pExtraListToCombineWith,ppIVsObjectList2) ) #define IVsCombinedBrowseComponentSet_GetSupportedCategoryFields2(This,Category,pgrfCatField) \ ( (This)->lpVtbl -> GetSupportedCategoryFields2(This,Category,pgrfCatField) ) #define IVsCombinedBrowseComponentSet_CreateNavInfo(This,guidLib,rgSymbolNodes,ulcNodes,ppNavInfo) \ ( (This)->lpVtbl -> CreateNavInfo(This,guidLib,rgSymbolNodes,ulcNodes,ppNavInfo) ) #define IVsCombinedBrowseComponentSet_UpdateCounter(This,pCurUpdate) \ ( (This)->lpVtbl -> UpdateCounter(This,pCurUpdate) ) #define IVsCombinedBrowseComponentSet_AddSet(This,pSet) \ ( (This)->lpVtbl -> AddSet(This,pSet) ) #define IVsCombinedBrowseComponentSet_GetSetCount(This,pulCount) \ ( (This)->lpVtbl -> GetSetCount(This,pulCount) ) #define IVsCombinedBrowseComponentSet_GetSetAt(This,ulIndex,ppSet) \ ( (This)->lpVtbl -> GetSetAt(This,ulIndex,ppSet) ) #define IVsCombinedBrowseComponentSet_RemoveSetAt(This,ulIndex) \ ( (This)->lpVtbl -> RemoveSetAt(This,ulIndex) ) #define IVsCombinedBrowseComponentSet_RemoveAllSets(This) \ ( (This)->lpVtbl -> RemoveAllSets(This) ) #define IVsCombinedBrowseComponentSet_RemoveOwnerSets(This,pOwner) \ ( (This)->lpVtbl -> RemoveOwnerSets(This,pOwner) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsCombinedBrowseComponentSet_INTERFACE_DEFINED__ */ #ifndef __IVsSelectedSymbol_INTERFACE_DEFINED__ #define __IVsSelectedSymbol_INTERFACE_DEFINED__ /* interface IVsSelectedSymbol */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsSelectedSymbol; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("9D86535E-5FE7-4aaf-8846-F1FB5556109A") IVsSelectedSymbol : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetNavInfo( /* [out] */ __RPC__deref_out_opt IVsNavInfo **ppNavInfo) = 0; virtual HRESULT STDMETHODCALLTYPE GetName( /* [out] */ __RPC__deref_out_opt BSTR *pbstrName) = 0; }; #else /* C style interface */ typedef struct IVsSelectedSymbolVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsSelectedSymbol * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsSelectedSymbol * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsSelectedSymbol * This); HRESULT ( STDMETHODCALLTYPE *GetNavInfo )( __RPC__in IVsSelectedSymbol * This, /* [out] */ __RPC__deref_out_opt IVsNavInfo **ppNavInfo); HRESULT ( STDMETHODCALLTYPE *GetName )( __RPC__in IVsSelectedSymbol * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrName); END_INTERFACE } IVsSelectedSymbolVtbl; interface IVsSelectedSymbol { CONST_VTBL struct IVsSelectedSymbolVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsSelectedSymbol_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsSelectedSymbol_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsSelectedSymbol_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsSelectedSymbol_GetNavInfo(This,ppNavInfo) \ ( (This)->lpVtbl -> GetNavInfo(This,ppNavInfo) ) #define IVsSelectedSymbol_GetName(This,pbstrName) \ ( (This)->lpVtbl -> GetName(This,pbstrName) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsSelectedSymbol_INTERFACE_DEFINED__ */ #ifndef __IVsEnumSelectedSymbols_INTERFACE_DEFINED__ #define __IVsEnumSelectedSymbols_INTERFACE_DEFINED__ /* interface IVsEnumSelectedSymbols */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsEnumSelectedSymbols; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("CAC67C59-301A-415d-B269-790F7D4731BC") IVsEnumSelectedSymbols : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE Next( /* [in] */ ULONG celt, /* [length_is][size_is][out] */ __RPC__out_ecount_part(celt, *pceltFetched) IVsSelectedSymbol **rgpIVsSelectedSymbol, /* [out] */ __RPC__out ULONG *pceltFetched) = 0; virtual HRESULT STDMETHODCALLTYPE Skip( /* [in] */ ULONG celt) = 0; virtual HRESULT STDMETHODCALLTYPE Reset( void) = 0; virtual HRESULT STDMETHODCALLTYPE Clone( /* [out] */ __RPC__deref_out_opt IVsEnumSelectedSymbols **ppIVsEnumSelectedSymbols) = 0; }; #else /* C style interface */ typedef struct IVsEnumSelectedSymbolsVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsEnumSelectedSymbols * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsEnumSelectedSymbols * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsEnumSelectedSymbols * This); HRESULT ( STDMETHODCALLTYPE *Next )( __RPC__in IVsEnumSelectedSymbols * This, /* [in] */ ULONG celt, /* [length_is][size_is][out] */ __RPC__out_ecount_part(celt, *pceltFetched) IVsSelectedSymbol **rgpIVsSelectedSymbol, /* [out] */ __RPC__out ULONG *pceltFetched); HRESULT ( STDMETHODCALLTYPE *Skip )( __RPC__in IVsEnumSelectedSymbols * This, /* [in] */ ULONG celt); HRESULT ( STDMETHODCALLTYPE *Reset )( __RPC__in IVsEnumSelectedSymbols * This); HRESULT ( STDMETHODCALLTYPE *Clone )( __RPC__in IVsEnumSelectedSymbols * This, /* [out] */ __RPC__deref_out_opt IVsEnumSelectedSymbols **ppIVsEnumSelectedSymbols); END_INTERFACE } IVsEnumSelectedSymbolsVtbl; interface IVsEnumSelectedSymbols { CONST_VTBL struct IVsEnumSelectedSymbolsVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsEnumSelectedSymbols_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsEnumSelectedSymbols_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsEnumSelectedSymbols_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsEnumSelectedSymbols_Next(This,celt,rgpIVsSelectedSymbol,pceltFetched) \ ( (This)->lpVtbl -> Next(This,celt,rgpIVsSelectedSymbol,pceltFetched) ) #define IVsEnumSelectedSymbols_Skip(This,celt) \ ( (This)->lpVtbl -> Skip(This,celt) ) #define IVsEnumSelectedSymbols_Reset(This) \ ( (This)->lpVtbl -> Reset(This) ) #define IVsEnumSelectedSymbols_Clone(This,ppIVsEnumSelectedSymbols) \ ( (This)->lpVtbl -> Clone(This,ppIVsEnumSelectedSymbols) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsEnumSelectedSymbols_INTERFACE_DEFINED__ */ #ifndef __IVsSelectedSymbols_INTERFACE_DEFINED__ #define __IVsSelectedSymbols_INTERFACE_DEFINED__ /* interface IVsSelectedSymbols */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsSelectedSymbols; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("8A8921BE-42C7-4984-82E9-C68B12C2B22E") IVsSelectedSymbols : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetCount( /* [out] */ __RPC__out ULONG *pcItems) = 0; virtual HRESULT STDMETHODCALLTYPE GetItem( /* [in] */ ULONG iItem, /* [out] */ __RPC__deref_out_opt IVsSelectedSymbol **ppIVsSelectedSymbol) = 0; virtual HRESULT STDMETHODCALLTYPE EnumSelectedSymbols( /* [out] */ __RPC__deref_out_opt IVsEnumSelectedSymbols **ppIVsEnumSelectedSymbols) = 0; virtual HRESULT STDMETHODCALLTYPE GetItemTypes( /* [out] */ __RPC__out DWORD *pgrfTypes) = 0; }; #else /* C style interface */ typedef struct IVsSelectedSymbolsVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsSelectedSymbols * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsSelectedSymbols * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsSelectedSymbols * This); HRESULT ( STDMETHODCALLTYPE *GetCount )( __RPC__in IVsSelectedSymbols * This, /* [out] */ __RPC__out ULONG *pcItems); HRESULT ( STDMETHODCALLTYPE *GetItem )( __RPC__in IVsSelectedSymbols * This, /* [in] */ ULONG iItem, /* [out] */ __RPC__deref_out_opt IVsSelectedSymbol **ppIVsSelectedSymbol); HRESULT ( STDMETHODCALLTYPE *EnumSelectedSymbols )( __RPC__in IVsSelectedSymbols * This, /* [out] */ __RPC__deref_out_opt IVsEnumSelectedSymbols **ppIVsEnumSelectedSymbols); HRESULT ( STDMETHODCALLTYPE *GetItemTypes )( __RPC__in IVsSelectedSymbols * This, /* [out] */ __RPC__out DWORD *pgrfTypes); END_INTERFACE } IVsSelectedSymbolsVtbl; interface IVsSelectedSymbols { CONST_VTBL struct IVsSelectedSymbolsVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsSelectedSymbols_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsSelectedSymbols_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsSelectedSymbols_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsSelectedSymbols_GetCount(This,pcItems) \ ( (This)->lpVtbl -> GetCount(This,pcItems) ) #define IVsSelectedSymbols_GetItem(This,iItem,ppIVsSelectedSymbol) \ ( (This)->lpVtbl -> GetItem(This,iItem,ppIVsSelectedSymbol) ) #define IVsSelectedSymbols_EnumSelectedSymbols(This,ppIVsEnumSelectedSymbols) \ ( (This)->lpVtbl -> EnumSelectedSymbols(This,ppIVsEnumSelectedSymbols) ) #define IVsSelectedSymbols_GetItemTypes(This,pgrfTypes) \ ( (This)->lpVtbl -> GetItemTypes(This,pgrfTypes) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsSelectedSymbols_INTERFACE_DEFINED__ */ #ifndef __IVsNavigationTool_INTERFACE_DEFINED__ #define __IVsNavigationTool_INTERFACE_DEFINED__ /* interface IVsNavigationTool */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsNavigationTool; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("FDAEB434-F941-4370-9B89-325249EFEC48") IVsNavigationTool : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE NavigateToSymbol( /* [in] */ __RPC__in REFGUID guidLib, /* [size_is][in] */ __RPC__in_ecount_full(ulcNodes) SYMBOL_DESCRIPTION_NODE rgSymbolNodes[ ], /* [in] */ ULONG ulcNodes) = 0; virtual HRESULT STDMETHODCALLTYPE NavigateToNavInfo( /* [in] */ __RPC__in_opt IVsNavInfo *pNavInfo) = 0; virtual HRESULT STDMETHODCALLTYPE GetSelectedSymbols( /* [out] */ __RPC__deref_out_opt IVsSelectedSymbols **ppIVsSelectedSymbols) = 0; }; #else /* C style interface */ typedef struct IVsNavigationToolVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsNavigationTool * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsNavigationTool * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsNavigationTool * This); HRESULT ( STDMETHODCALLTYPE *NavigateToSymbol )( __RPC__in IVsNavigationTool * This, /* [in] */ __RPC__in REFGUID guidLib, /* [size_is][in] */ __RPC__in_ecount_full(ulcNodes) SYMBOL_DESCRIPTION_NODE rgSymbolNodes[ ], /* [in] */ ULONG ulcNodes); HRESULT ( STDMETHODCALLTYPE *NavigateToNavInfo )( __RPC__in IVsNavigationTool * This, /* [in] */ __RPC__in_opt IVsNavInfo *pNavInfo); HRESULT ( STDMETHODCALLTYPE *GetSelectedSymbols )( __RPC__in IVsNavigationTool * This, /* [out] */ __RPC__deref_out_opt IVsSelectedSymbols **ppIVsSelectedSymbols); END_INTERFACE } IVsNavigationToolVtbl; interface IVsNavigationTool { CONST_VTBL struct IVsNavigationToolVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsNavigationTool_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsNavigationTool_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsNavigationTool_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsNavigationTool_NavigateToSymbol(This,guidLib,rgSymbolNodes,ulcNodes) \ ( (This)->lpVtbl -> NavigateToSymbol(This,guidLib,rgSymbolNodes,ulcNodes) ) #define IVsNavigationTool_NavigateToNavInfo(This,pNavInfo) \ ( (This)->lpVtbl -> NavigateToNavInfo(This,pNavInfo) ) #define IVsNavigationTool_GetSelectedSymbols(This,ppIVsSelectedSymbols) \ ( (This)->lpVtbl -> GetSelectedSymbols(This,ppIVsSelectedSymbols) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsNavigationTool_INTERFACE_DEFINED__ */ #ifndef __IVsFindSymbol_INTERFACE_DEFINED__ #define __IVsFindSymbol_INTERFACE_DEFINED__ /* interface IVsFindSymbol */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsFindSymbol; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("7FF85070-4667-4532-B149-63A7B205060B") IVsFindSymbol : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetUserOptions( /* [out] */ __RPC__out GUID *pguidScope, /* [out] */ __RPC__out VSOBSEARCHCRITERIA2 *pobSrch) = 0; virtual HRESULT STDMETHODCALLTYPE SetUserOptions( /* [in] */ __RPC__in REFGUID guidScope, /* [in] */ __RPC__in const VSOBSEARCHCRITERIA2 *pobSrch) = 0; virtual HRESULT STDMETHODCALLTYPE DoSearch( /* [in] */ __RPC__in REFGUID guidSymbolScope, /* [in] */ __RPC__in const VSOBSEARCHCRITERIA2 *pobSrch) = 0; }; #else /* C style interface */ typedef struct IVsFindSymbolVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsFindSymbol * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsFindSymbol * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsFindSymbol * This); HRESULT ( STDMETHODCALLTYPE *GetUserOptions )( __RPC__in IVsFindSymbol * This, /* [out] */ __RPC__out GUID *pguidScope, /* [out] */ __RPC__out VSOBSEARCHCRITERIA2 *pobSrch); HRESULT ( STDMETHODCALLTYPE *SetUserOptions )( __RPC__in IVsFindSymbol * This, /* [in] */ __RPC__in REFGUID guidScope, /* [in] */ __RPC__in const VSOBSEARCHCRITERIA2 *pobSrch); HRESULT ( STDMETHODCALLTYPE *DoSearch )( __RPC__in IVsFindSymbol * This, /* [in] */ __RPC__in REFGUID guidSymbolScope, /* [in] */ __RPC__in const VSOBSEARCHCRITERIA2 *pobSrch); END_INTERFACE } IVsFindSymbolVtbl; interface IVsFindSymbol { CONST_VTBL struct IVsFindSymbolVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsFindSymbol_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsFindSymbol_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsFindSymbol_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsFindSymbol_GetUserOptions(This,pguidScope,pobSrch) \ ( (This)->lpVtbl -> GetUserOptions(This,pguidScope,pobSrch) ) #define IVsFindSymbol_SetUserOptions(This,guidScope,pobSrch) \ ( (This)->lpVtbl -> SetUserOptions(This,guidScope,pobSrch) ) #define IVsFindSymbol_DoSearch(This,guidSymbolScope,pobSrch) \ ( (This)->lpVtbl -> DoSearch(This,guidSymbolScope,pobSrch) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsFindSymbol_INTERFACE_DEFINED__ */ #ifndef __IVsFindSymbolEvents_INTERFACE_DEFINED__ #define __IVsFindSymbolEvents_INTERFACE_DEFINED__ /* interface IVsFindSymbolEvents */ /* [object][version][uuid] */ EXTERN_C const IID IID_IVsFindSymbolEvents; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("18220DBE-1AEB-44ea-A924-F3571D202EF4") IVsFindSymbolEvents : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE OnUserOptionsChanged( /* [in] */ __RPC__in REFGUID guidSymbolScope, /* [in] */ __RPC__in const VSOBSEARCHCRITERIA2 *pobSrch) = 0; }; #else /* C style interface */ typedef struct IVsFindSymbolEventsVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsFindSymbolEvents * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsFindSymbolEvents * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsFindSymbolEvents * This); HRESULT ( STDMETHODCALLTYPE *OnUserOptionsChanged )( __RPC__in IVsFindSymbolEvents * This, /* [in] */ __RPC__in REFGUID guidSymbolScope, /* [in] */ __RPC__in const VSOBSEARCHCRITERIA2 *pobSrch); END_INTERFACE } IVsFindSymbolEventsVtbl; interface IVsFindSymbolEvents { CONST_VTBL struct IVsFindSymbolEventsVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsFindSymbolEvents_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsFindSymbolEvents_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsFindSymbolEvents_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsFindSymbolEvents_OnUserOptionsChanged(This,guidSymbolScope,pobSrch) \ ( (This)->lpVtbl -> OnUserOptionsChanged(This,guidSymbolScope,pobSrch) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsFindSymbolEvents_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0098 */ /* [local] */ DEFINE_GUID(GUID_VsSymbolScope_All, 0xa5a527ea, 0xcf0a, 0x4abf, 0xb5, 0x1, 0xea, 0xfe, 0x6b, 0x3b, 0xa5, 0xc6); DEFINE_GUID(GUID_VsSymbolScope_OBSelectedComponents, 0x41fd0b24, 0x8d2b, 0x48c1, 0xb1, 0xda, 0xaa, 0xcf, 0x13, 0xa5, 0x57, 0xf); DEFINE_GUID(GUID_VsSymbolScope_FSSelectedComponents, 0xc2146638, 0xc2fe, 0x4c1e, 0xa4, 0x9d, 0x64, 0xae, 0x97, 0x1e, 0xef, 0x39); DEFINE_GUID(GUID_VsSymbolScope_Frameworks, 0x3168518c, 0xb7c9, 0x4e0c, 0xbd, 0x51, 0xe3, 0x32, 0x1c, 0xa7, 0xb4, 0xd8); DEFINE_GUID(GUID_VsSymbolScope_Solution, 0xb1ba9461, 0xfc54, 0x45b3, 0xa4, 0x84, 0xcb, 0x6d, 0xd0, 0xb9, 0x5c, 0x94); enum __VSCALLBROWSERMODE { CBM_CALLSTO = 0, CBM_CALLSTO_NEWWINDOW = 1, CBM_CALLSFROM = 2, CBM_CALLSFROM_NEWWINDOW = 3 } ; typedef LONG CALLBROWSERMODE; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0098_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0098_v0_0_s_ifspec; #ifndef __IVsCallBrowser_INTERFACE_DEFINED__ #define __IVsCallBrowser_INTERFACE_DEFINED__ /* interface IVsCallBrowser */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsCallBrowser; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("6ED4E844-A0AF-4d6f-B108-8E655785BC88") IVsCallBrowser : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE SetRootAtSymbol( /* [in] */ CALLBROWSERMODE cbMode, /* [in] */ __RPC__in REFGUID guidLib, /* [size_is][in] */ __RPC__in_ecount_full(ulcNodes) SYMBOL_DESCRIPTION_NODE rgSymbolNodes[ ], /* [in] */ ULONG ulcNodes) = 0; virtual HRESULT STDMETHODCALLTYPE SetRootAtNavInfo( /* [in] */ CALLBROWSERMODE cbMode, /* [in] */ __RPC__in_opt IVsNavInfo *pNavInfo) = 0; virtual HRESULT STDMETHODCALLTYPE CanCreateNewInstance( /* [out] */ __RPC__out BOOL *pfOK) = 0; }; #else /* C style interface */ typedef struct IVsCallBrowserVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsCallBrowser * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsCallBrowser * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsCallBrowser * This); HRESULT ( STDMETHODCALLTYPE *SetRootAtSymbol )( __RPC__in IVsCallBrowser * This, /* [in] */ CALLBROWSERMODE cbMode, /* [in] */ __RPC__in REFGUID guidLib, /* [size_is][in] */ __RPC__in_ecount_full(ulcNodes) SYMBOL_DESCRIPTION_NODE rgSymbolNodes[ ], /* [in] */ ULONG ulcNodes); HRESULT ( STDMETHODCALLTYPE *SetRootAtNavInfo )( __RPC__in IVsCallBrowser * This, /* [in] */ CALLBROWSERMODE cbMode, /* [in] */ __RPC__in_opt IVsNavInfo *pNavInfo); HRESULT ( STDMETHODCALLTYPE *CanCreateNewInstance )( __RPC__in IVsCallBrowser * This, /* [out] */ __RPC__out BOOL *pfOK); END_INTERFACE } IVsCallBrowserVtbl; interface IVsCallBrowser { CONST_VTBL struct IVsCallBrowserVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsCallBrowser_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsCallBrowser_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsCallBrowser_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsCallBrowser_SetRootAtSymbol(This,cbMode,guidLib,rgSymbolNodes,ulcNodes) \ ( (This)->lpVtbl -> SetRootAtSymbol(This,cbMode,guidLib,rgSymbolNodes,ulcNodes) ) #define IVsCallBrowser_SetRootAtNavInfo(This,cbMode,pNavInfo) \ ( (This)->lpVtbl -> SetRootAtNavInfo(This,cbMode,pNavInfo) ) #define IVsCallBrowser_CanCreateNewInstance(This,pfOK) \ ( (This)->lpVtbl -> CanCreateNewInstance(This,pfOK) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsCallBrowser_INTERFACE_DEFINED__ */ #ifndef __SVsCallBrowser_INTERFACE_DEFINED__ #define __SVsCallBrowser_INTERFACE_DEFINED__ /* interface SVsCallBrowser */ /* [object][uuid] */ EXTERN_C const IID IID_SVsCallBrowser; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("F9D0F5FF-C093-4e80-A886-57610D58A728") SVsCallBrowser : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsCallBrowserVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsCallBrowser * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsCallBrowser * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsCallBrowser * This); END_INTERFACE } SVsCallBrowserVtbl; interface SVsCallBrowser { CONST_VTBL struct SVsCallBrowserVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsCallBrowser_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsCallBrowser_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsCallBrowser_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsCallBrowser_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0100 */ /* [local] */ #define SID_SVsCallBrowser IID_SVsCallBrowser extern const __declspec(selectany) GUID GUID_CallBrowser = { 0x5415ea3a, 0xd813, 0x4948, { 0xb5, 0x1e, 0x56, 0x20, 0x82, 0xce, 0x8, 0x87 } }; extern const __declspec(selectany) GUID GUID_CallBrowserSecondary = { 0xf78bcc56, 0x71f7, 0x4e7d, { 0x82, 0x15, 0xf6, 0x90, 0xca, 0xe4, 0xf4, 0x52 } }; enum __VSCOMPSELFLAGS2 { VSCOMSEL2_MultiSelectMode = 0x1, VSCOMSEL2_ShowSelectedList = 0x80, VSCOMSEL2_ShowAllPagesOfSpecifiedTypes = 0x100 } ; typedef DWORD VSCOMPSELFLAGS2; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0100_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0100_v0_0_s_ifspec; #ifndef __IVsComponentSelectorDlg2_INTERFACE_DEFINED__ #define __IVsComponentSelectorDlg2_INTERFACE_DEFINED__ /* interface IVsComponentSelectorDlg2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsComponentSelectorDlg2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("2D7CDC3D-FA79-4df3-9CD2-AACF65A2846E") IVsComponentSelectorDlg2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE ComponentSelectorDlg2( /* [in] */ VSCOMPSELFLAGS2 grfFlags, /* [in] */ __RPC__in_opt IVsComponentUser *pUser, /* [in] */ ULONG cComponents, /* [size_is][in] */ __RPC__in_ecount_full(cComponents) PVSCOMPONENTSELECTORDATA rgpcsdComponents[ ], /* [in] */ __RPC__in LPCOLESTR lpszDlgTitle, /* [in] */ __RPC__in LPCOLESTR lpszHelpTopic, /* [out][in] */ __RPC__inout ULONG *pxDlgSize, /* [out][in] */ __RPC__inout ULONG *pyDlgSize, /* [in] */ ULONG cTabInitializers, /* [size_is][in] */ __RPC__in_ecount_full(cTabInitializers) VSCOMPONENTSELECTORTABINIT rgcstiTabInitializers[ ], /* [out][in] */ __RPC__inout GUID *pguidStartOnThisTab, /* [in] */ __RPC__in LPCOLESTR pszBrowseFilters, /* [out][in] */ __RPC__deref_inout_opt BSTR *pbstrBrowseLocation) = 0; }; #else /* C style interface */ typedef struct IVsComponentSelectorDlg2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsComponentSelectorDlg2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsComponentSelectorDlg2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsComponentSelectorDlg2 * This); HRESULT ( STDMETHODCALLTYPE *ComponentSelectorDlg2 )( __RPC__in IVsComponentSelectorDlg2 * This, /* [in] */ VSCOMPSELFLAGS2 grfFlags, /* [in] */ __RPC__in_opt IVsComponentUser *pUser, /* [in] */ ULONG cComponents, /* [size_is][in] */ __RPC__in_ecount_full(cComponents) PVSCOMPONENTSELECTORDATA rgpcsdComponents[ ], /* [in] */ __RPC__in LPCOLESTR lpszDlgTitle, /* [in] */ __RPC__in LPCOLESTR lpszHelpTopic, /* [out][in] */ __RPC__inout ULONG *pxDlgSize, /* [out][in] */ __RPC__inout ULONG *pyDlgSize, /* [in] */ ULONG cTabInitializers, /* [size_is][in] */ __RPC__in_ecount_full(cTabInitializers) VSCOMPONENTSELECTORTABINIT rgcstiTabInitializers[ ], /* [out][in] */ __RPC__inout GUID *pguidStartOnThisTab, /* [in] */ __RPC__in LPCOLESTR pszBrowseFilters, /* [out][in] */ __RPC__deref_inout_opt BSTR *pbstrBrowseLocation); END_INTERFACE } IVsComponentSelectorDlg2Vtbl; interface IVsComponentSelectorDlg2 { CONST_VTBL struct IVsComponentSelectorDlg2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsComponentSelectorDlg2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsComponentSelectorDlg2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsComponentSelectorDlg2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsComponentSelectorDlg2_ComponentSelectorDlg2(This,grfFlags,pUser,cComponents,rgpcsdComponents,lpszDlgTitle,lpszHelpTopic,pxDlgSize,pyDlgSize,cTabInitializers,rgcstiTabInitializers,pguidStartOnThisTab,pszBrowseFilters,pbstrBrowseLocation) \ ( (This)->lpVtbl -> ComponentSelectorDlg2(This,grfFlags,pUser,cComponents,rgpcsdComponents,lpszDlgTitle,lpszHelpTopic,pxDlgSize,pyDlgSize,cTabInitializers,rgcstiTabInitializers,pguidStartOnThisTab,pszBrowseFilters,pbstrBrowseLocation) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsComponentSelectorDlg2_INTERFACE_DEFINED__ */ #ifndef __SVsComponentSelectorDlg2_INTERFACE_DEFINED__ #define __SVsComponentSelectorDlg2_INTERFACE_DEFINED__ /* interface SVsComponentSelectorDlg2 */ /* [object][uuid] */ EXTERN_C const IID IID_SVsComponentSelectorDlg2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("525D42EF-D7F6-412a-9D64-79E787E70E45") SVsComponentSelectorDlg2 : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsComponentSelectorDlg2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsComponentSelectorDlg2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsComponentSelectorDlg2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsComponentSelectorDlg2 * This); END_INTERFACE } SVsComponentSelectorDlg2Vtbl; interface SVsComponentSelectorDlg2 { CONST_VTBL struct SVsComponentSelectorDlg2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsComponentSelectorDlg2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsComponentSelectorDlg2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsComponentSelectorDlg2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsComponentSelectorDlg2_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0102 */ /* [local] */ #define SID_SVsComponentSelectorDlg2 IID_SVsComponentSelectorDlg2 DEFINE_GUID(GUID_BrowseFilesPage, 0x2483f435, 0x673d, 0x4fa3, 0x8a, 0xdd, 0xb5, 0x14, 0x42, 0xf6, 0x53, 0x49); DEFINE_GUID(GUID_MRUPage, 0x19b97f03, 0x9594, 0x4c1c, 0xbe, 0x28, 0x25, 0xff, 0x3, 0x1, 0x13, 0xb3); extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0102_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0102_v0_0_s_ifspec; #ifndef __IVsBuildMacroInfo_INTERFACE_DEFINED__ #define __IVsBuildMacroInfo_INTERFACE_DEFINED__ /* interface IVsBuildMacroInfo */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsBuildMacroInfo; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("9015B3AB-9FE2-430d-B79F-E0E581BD5B8B") IVsBuildMacroInfo : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetBuildMacroValue( /* [in] */ __RPC__in BSTR bstrBuildMacroName, /* [out] */ __RPC__deref_out_opt BSTR *pbstrBuildMacroValue) = 0; }; #else /* C style interface */ typedef struct IVsBuildMacroInfoVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsBuildMacroInfo * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsBuildMacroInfo * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsBuildMacroInfo * This); HRESULT ( STDMETHODCALLTYPE *GetBuildMacroValue )( __RPC__in IVsBuildMacroInfo * This, /* [in] */ __RPC__in BSTR bstrBuildMacroName, /* [out] */ __RPC__deref_out_opt BSTR *pbstrBuildMacroValue); END_INTERFACE } IVsBuildMacroInfoVtbl; interface IVsBuildMacroInfo { CONST_VTBL struct IVsBuildMacroInfoVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsBuildMacroInfo_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsBuildMacroInfo_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsBuildMacroInfo_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsBuildMacroInfo_GetBuildMacroValue(This,bstrBuildMacroName,pbstrBuildMacroValue) \ ( (This)->lpVtbl -> GetBuildMacroValue(This,bstrBuildMacroName,pbstrBuildMacroValue) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsBuildMacroInfo_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0103 */ /* [local] */ enum __PREVIEWCHANGESITEMCHECKSTATE { PCCS_None = 0, PCCS_Unchecked = 1, PCCS_PartiallyChecked = 2, PCCS_Checked = 3 } ; typedef LONG PREVIEWCHANGESITEMCHECKSTATE; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0103_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0103_v0_0_s_ifspec; #ifndef __IVsPreviewChangesList_INTERFACE_DEFINED__ #define __IVsPreviewChangesList_INTERFACE_DEFINED__ /* interface IVsPreviewChangesList */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsPreviewChangesList; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("B334F714-993B-4902-89E0-792213B538DB") IVsPreviewChangesList : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetFlags( /* [out] */ __RPC__out VSTREEFLAGS *pFlags) = 0; virtual HRESULT STDMETHODCALLTYPE GetItemCount( /* [out] */ __RPC__out ULONG *pCount) = 0; virtual HRESULT STDMETHODCALLTYPE GetExpandedList( /* [in] */ ULONG Index, /* [out] */ __RPC__out BOOL *pfCanRecurse, /* [out] */ __RPC__deref_out_opt IVsLiteTreeList **pptlNode) = 0; virtual HRESULT STDMETHODCALLTYPE LocateExpandedList( /* [in] */ __RPC__in_opt IVsLiteTreeList *ExpandedList, /* [out] */ __RPC__out ULONG *iIndex) = 0; virtual HRESULT STDMETHODCALLTYPE OnClose( /* [out] */ __RPC__out VSTREECLOSEACTIONS *ptca) = 0; virtual HRESULT STDMETHODCALLTYPE GetText( /* [in] */ ULONG Index, /* [in] */ VSTREETEXTOPTIONS tto, /* [string][out] */ __RPC__deref_out_opt_string const WCHAR **ppszText) = 0; virtual HRESULT STDMETHODCALLTYPE GetTipText( /* [in] */ ULONG Index, /* [in] */ VSTREETOOLTIPTYPE eTipType, /* [string][out] */ __RPC__deref_out_opt_string const WCHAR **ppszText) = 0; virtual HRESULT STDMETHODCALLTYPE GetExpandable( /* [in] */ ULONG Index, /* [out] */ __RPC__out BOOL *pfExpandable) = 0; virtual /* [local] */ HRESULT STDMETHODCALLTYPE GetDisplayData( /* [in] */ ULONG Index, /* [out] */ VSTREEDISPLAYDATA *pData) = 0; virtual HRESULT STDMETHODCALLTYPE UpdateCounter( /* [out] */ __RPC__out ULONG *pCurUpdate, /* [out] */ __RPC__out VSTREEITEMCHANGESMASK *pgrfChanges) = 0; virtual HRESULT STDMETHODCALLTYPE GetListChanges( /* [out][in] */ __RPC__inout ULONG *pcChanges, /* [size_is][in] */ __RPC__in_ecount_full(*pcChanges) VSTREELISTITEMCHANGE *prgListChanges) = 0; virtual HRESULT STDMETHODCALLTYPE ToggleState( /* [in] */ ULONG Index, /* [out] */ __RPC__out VSTREESTATECHANGEREFRESH *ptscr) = 0; virtual HRESULT STDMETHODCALLTYPE OnRequestSource( /* [in] */ ULONG Index, /* [in] */ __RPC__in_opt IUnknown *pIUnknownTextView) = 0; }; #else /* C style interface */ typedef struct IVsPreviewChangesListVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsPreviewChangesList * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsPreviewChangesList * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsPreviewChangesList * This); HRESULT ( STDMETHODCALLTYPE *GetFlags )( __RPC__in IVsPreviewChangesList * This, /* [out] */ __RPC__out VSTREEFLAGS *pFlags); HRESULT ( STDMETHODCALLTYPE *GetItemCount )( __RPC__in IVsPreviewChangesList * This, /* [out] */ __RPC__out ULONG *pCount); HRESULT ( STDMETHODCALLTYPE *GetExpandedList )( __RPC__in IVsPreviewChangesList * This, /* [in] */ ULONG Index, /* [out] */ __RPC__out BOOL *pfCanRecurse, /* [out] */ __RPC__deref_out_opt IVsLiteTreeList **pptlNode); HRESULT ( STDMETHODCALLTYPE *LocateExpandedList )( __RPC__in IVsPreviewChangesList * This, /* [in] */ __RPC__in_opt IVsLiteTreeList *ExpandedList, /* [out] */ __RPC__out ULONG *iIndex); HRESULT ( STDMETHODCALLTYPE *OnClose )( __RPC__in IVsPreviewChangesList * This, /* [out] */ __RPC__out VSTREECLOSEACTIONS *ptca); HRESULT ( STDMETHODCALLTYPE *GetText )( __RPC__in IVsPreviewChangesList * This, /* [in] */ ULONG Index, /* [in] */ VSTREETEXTOPTIONS tto, /* [string][out] */ __RPC__deref_out_opt_string const WCHAR **ppszText); HRESULT ( STDMETHODCALLTYPE *GetTipText )( __RPC__in IVsPreviewChangesList * This, /* [in] */ ULONG Index, /* [in] */ VSTREETOOLTIPTYPE eTipType, /* [string][out] */ __RPC__deref_out_opt_string const WCHAR **ppszText); HRESULT ( STDMETHODCALLTYPE *GetExpandable )( __RPC__in IVsPreviewChangesList * This, /* [in] */ ULONG Index, /* [out] */ __RPC__out BOOL *pfExpandable); /* [local] */ HRESULT ( STDMETHODCALLTYPE *GetDisplayData )( IVsPreviewChangesList * This, /* [in] */ ULONG Index, /* [out] */ VSTREEDISPLAYDATA *pData); HRESULT ( STDMETHODCALLTYPE *UpdateCounter )( __RPC__in IVsPreviewChangesList * This, /* [out] */ __RPC__out ULONG *pCurUpdate, /* [out] */ __RPC__out VSTREEITEMCHANGESMASK *pgrfChanges); HRESULT ( STDMETHODCALLTYPE *GetListChanges )( __RPC__in IVsPreviewChangesList * This, /* [out][in] */ __RPC__inout ULONG *pcChanges, /* [size_is][in] */ __RPC__in_ecount_full(*pcChanges) VSTREELISTITEMCHANGE *prgListChanges); HRESULT ( STDMETHODCALLTYPE *ToggleState )( __RPC__in IVsPreviewChangesList * This, /* [in] */ ULONG Index, /* [out] */ __RPC__out VSTREESTATECHANGEREFRESH *ptscr); HRESULT ( STDMETHODCALLTYPE *OnRequestSource )( __RPC__in IVsPreviewChangesList * This, /* [in] */ ULONG Index, /* [in] */ __RPC__in_opt IUnknown *pIUnknownTextView); END_INTERFACE } IVsPreviewChangesListVtbl; interface IVsPreviewChangesList { CONST_VTBL struct IVsPreviewChangesListVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsPreviewChangesList_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsPreviewChangesList_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsPreviewChangesList_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsPreviewChangesList_GetFlags(This,pFlags) \ ( (This)->lpVtbl -> GetFlags(This,pFlags) ) #define IVsPreviewChangesList_GetItemCount(This,pCount) \ ( (This)->lpVtbl -> GetItemCount(This,pCount) ) #define IVsPreviewChangesList_GetExpandedList(This,Index,pfCanRecurse,pptlNode) \ ( (This)->lpVtbl -> GetExpandedList(This,Index,pfCanRecurse,pptlNode) ) #define IVsPreviewChangesList_LocateExpandedList(This,ExpandedList,iIndex) \ ( (This)->lpVtbl -> LocateExpandedList(This,ExpandedList,iIndex) ) #define IVsPreviewChangesList_OnClose(This,ptca) \ ( (This)->lpVtbl -> OnClose(This,ptca) ) #define IVsPreviewChangesList_GetText(This,Index,tto,ppszText) \ ( (This)->lpVtbl -> GetText(This,Index,tto,ppszText) ) #define IVsPreviewChangesList_GetTipText(This,Index,eTipType,ppszText) \ ( (This)->lpVtbl -> GetTipText(This,Index,eTipType,ppszText) ) #define IVsPreviewChangesList_GetExpandable(This,Index,pfExpandable) \ ( (This)->lpVtbl -> GetExpandable(This,Index,pfExpandable) ) #define IVsPreviewChangesList_GetDisplayData(This,Index,pData) \ ( (This)->lpVtbl -> GetDisplayData(This,Index,pData) ) #define IVsPreviewChangesList_UpdateCounter(This,pCurUpdate,pgrfChanges) \ ( (This)->lpVtbl -> UpdateCounter(This,pCurUpdate,pgrfChanges) ) #define IVsPreviewChangesList_GetListChanges(This,pcChanges,prgListChanges) \ ( (This)->lpVtbl -> GetListChanges(This,pcChanges,prgListChanges) ) #define IVsPreviewChangesList_ToggleState(This,Index,ptscr) \ ( (This)->lpVtbl -> ToggleState(This,Index,ptscr) ) #define IVsPreviewChangesList_OnRequestSource(This,Index,pIUnknownTextView) \ ( (This)->lpVtbl -> OnRequestSource(This,Index,pIUnknownTextView) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsPreviewChangesList_INTERFACE_DEFINED__ */ #ifndef __IVsSimplePreviewChangesList_INTERFACE_DEFINED__ #define __IVsSimplePreviewChangesList_INTERFACE_DEFINED__ /* interface IVsSimplePreviewChangesList */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsSimplePreviewChangesList; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("C42D228E-B275-4FE6-8469-F3184663B883") IVsSimplePreviewChangesList : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetItemCount( /* [out] */ __RPC__out ULONG *pCount) = 0; virtual /* [local] */ HRESULT STDMETHODCALLTYPE GetDisplayData( /* [in] */ ULONG Index, /* [out] */ VSTREEDISPLAYDATA *pData) = 0; virtual HRESULT STDMETHODCALLTYPE GetTextWithOwnership( /* [in] */ ULONG Index, /* [in] */ VSTREETEXTOPTIONS tto, /* [out] */ __RPC__deref_out_opt BSTR *pbstrText) = 0; virtual HRESULT STDMETHODCALLTYPE GetTipTextWithOwnership( /* [in] */ ULONG Index, /* [in] */ VSTREETOOLTIPTYPE eTipType, /* [out] */ __RPC__deref_out_opt BSTR *pbstrText) = 0; virtual HRESULT STDMETHODCALLTYPE GetExpandable( /* [in] */ ULONG Index, /* [out] */ __RPC__out BOOL *pfExpandable) = 0; virtual HRESULT STDMETHODCALLTYPE GetExpandedList( /* [in] */ ULONG Index, /* [out] */ __RPC__out BOOL *pfCanRecurse, /* [out] */ __RPC__deref_out_opt IVsSimplePreviewChangesList **ppIVsSimplePreviewChangesList) = 0; virtual HRESULT STDMETHODCALLTYPE LocateExpandedList( /* [in] */ __RPC__in_opt IVsSimplePreviewChangesList *pIVsSimplePreviewChangesListChild, /* [out] */ __RPC__out ULONG *piIndex) = 0; virtual HRESULT STDMETHODCALLTYPE ToggleState( /* [in] */ ULONG Index, /* [out] */ __RPC__out VSTREESTATECHANGEREFRESH *ptscr) = 0; virtual HRESULT STDMETHODCALLTYPE OnRequestSource( /* [in] */ ULONG Index, /* [in] */ __RPC__in_opt IUnknown *pIUnknownTextView) = 0; virtual HRESULT STDMETHODCALLTYPE OnClose( /* [out] */ __RPC__out VSTREECLOSEACTIONS *ptca) = 0; }; #else /* C style interface */ typedef struct IVsSimplePreviewChangesListVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsSimplePreviewChangesList * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsSimplePreviewChangesList * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsSimplePreviewChangesList * This); HRESULT ( STDMETHODCALLTYPE *GetItemCount )( __RPC__in IVsSimplePreviewChangesList * This, /* [out] */ __RPC__out ULONG *pCount); /* [local] */ HRESULT ( STDMETHODCALLTYPE *GetDisplayData )( IVsSimplePreviewChangesList * This, /* [in] */ ULONG Index, /* [out] */ VSTREEDISPLAYDATA *pData); HRESULT ( STDMETHODCALLTYPE *GetTextWithOwnership )( __RPC__in IVsSimplePreviewChangesList * This, /* [in] */ ULONG Index, /* [in] */ VSTREETEXTOPTIONS tto, /* [out] */ __RPC__deref_out_opt BSTR *pbstrText); HRESULT ( STDMETHODCALLTYPE *GetTipTextWithOwnership )( __RPC__in IVsSimplePreviewChangesList * This, /* [in] */ ULONG Index, /* [in] */ VSTREETOOLTIPTYPE eTipType, /* [out] */ __RPC__deref_out_opt BSTR *pbstrText); HRESULT ( STDMETHODCALLTYPE *GetExpandable )( __RPC__in IVsSimplePreviewChangesList * This, /* [in] */ ULONG Index, /* [out] */ __RPC__out BOOL *pfExpandable); HRESULT ( STDMETHODCALLTYPE *GetExpandedList )( __RPC__in IVsSimplePreviewChangesList * This, /* [in] */ ULONG Index, /* [out] */ __RPC__out BOOL *pfCanRecurse, /* [out] */ __RPC__deref_out_opt IVsSimplePreviewChangesList **ppIVsSimplePreviewChangesList); HRESULT ( STDMETHODCALLTYPE *LocateExpandedList )( __RPC__in IVsSimplePreviewChangesList * This, /* [in] */ __RPC__in_opt IVsSimplePreviewChangesList *pIVsSimplePreviewChangesListChild, /* [out] */ __RPC__out ULONG *piIndex); HRESULT ( STDMETHODCALLTYPE *ToggleState )( __RPC__in IVsSimplePreviewChangesList * This, /* [in] */ ULONG Index, /* [out] */ __RPC__out VSTREESTATECHANGEREFRESH *ptscr); HRESULT ( STDMETHODCALLTYPE *OnRequestSource )( __RPC__in IVsSimplePreviewChangesList * This, /* [in] */ ULONG Index, /* [in] */ __RPC__in_opt IUnknown *pIUnknownTextView); HRESULT ( STDMETHODCALLTYPE *OnClose )( __RPC__in IVsSimplePreviewChangesList * This, /* [out] */ __RPC__out VSTREECLOSEACTIONS *ptca); END_INTERFACE } IVsSimplePreviewChangesListVtbl; interface IVsSimplePreviewChangesList { CONST_VTBL struct IVsSimplePreviewChangesListVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsSimplePreviewChangesList_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsSimplePreviewChangesList_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsSimplePreviewChangesList_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsSimplePreviewChangesList_GetItemCount(This,pCount) \ ( (This)->lpVtbl -> GetItemCount(This,pCount) ) #define IVsSimplePreviewChangesList_GetDisplayData(This,Index,pData) \ ( (This)->lpVtbl -> GetDisplayData(This,Index,pData) ) #define IVsSimplePreviewChangesList_GetTextWithOwnership(This,Index,tto,pbstrText) \ ( (This)->lpVtbl -> GetTextWithOwnership(This,Index,tto,pbstrText) ) #define IVsSimplePreviewChangesList_GetTipTextWithOwnership(This,Index,eTipType,pbstrText) \ ( (This)->lpVtbl -> GetTipTextWithOwnership(This,Index,eTipType,pbstrText) ) #define IVsSimplePreviewChangesList_GetExpandable(This,Index,pfExpandable) \ ( (This)->lpVtbl -> GetExpandable(This,Index,pfExpandable) ) #define IVsSimplePreviewChangesList_GetExpandedList(This,Index,pfCanRecurse,ppIVsSimplePreviewChangesList) \ ( (This)->lpVtbl -> GetExpandedList(This,Index,pfCanRecurse,ppIVsSimplePreviewChangesList) ) #define IVsSimplePreviewChangesList_LocateExpandedList(This,pIVsSimplePreviewChangesListChild,piIndex) \ ( (This)->lpVtbl -> LocateExpandedList(This,pIVsSimplePreviewChangesListChild,piIndex) ) #define IVsSimplePreviewChangesList_ToggleState(This,Index,ptscr) \ ( (This)->lpVtbl -> ToggleState(This,Index,ptscr) ) #define IVsSimplePreviewChangesList_OnRequestSource(This,Index,pIUnknownTextView) \ ( (This)->lpVtbl -> OnRequestSource(This,Index,pIUnknownTextView) ) #define IVsSimplePreviewChangesList_OnClose(This,ptca) \ ( (This)->lpVtbl -> OnClose(This,ptca) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsSimplePreviewChangesList_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0105 */ /* [local] */ enum __PREVIEWCHANGESWARNINGLEVEL { PCWL_None = 0, PCWL_Information = 1, PCWL_Warning = 2, PCWL_Error = 3 } ; typedef LONG PREVIEWCHANGESWARNINGLEVEL; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0105_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0105_v0_0_s_ifspec; #ifndef __IVsPreviewChangesEngine_INTERFACE_DEFINED__ #define __IVsPreviewChangesEngine_INTERFACE_DEFINED__ /* interface IVsPreviewChangesEngine */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsPreviewChangesEngine; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("6DE3E607-1E2C-4f56-B4A6-BCAF63A0BB9F") IVsPreviewChangesEngine : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetTitle( /* [out] */ __RPC__deref_out_opt BSTR *pbstrTitle) = 0; virtual HRESULT STDMETHODCALLTYPE GetDescription( /* [out] */ __RPC__deref_out_opt BSTR *pbstrDescription) = 0; virtual HRESULT STDMETHODCALLTYPE GetTextViewDescription( /* [out] */ __RPC__deref_out_opt BSTR *pbstrTextViewDescription) = 0; virtual HRESULT STDMETHODCALLTYPE GetWarning( /* [out] */ __RPC__deref_out_opt BSTR *pbstrWarning, /* [out] */ __RPC__out PREVIEWCHANGESWARNINGLEVEL *ppcwlWarningLevel) = 0; virtual HRESULT STDMETHODCALLTYPE GetHelpContext( /* [out] */ __RPC__deref_out_opt BSTR *pbstrHelpContext) = 0; virtual HRESULT STDMETHODCALLTYPE GetConfirmation( /* [out] */ __RPC__deref_out_opt BSTR *pbstrConfirmation) = 0; virtual HRESULT STDMETHODCALLTYPE GetRootChangesList( /* [out] */ __RPC__deref_out_opt IUnknown **ppIUnknownPreviewChangesList) = 0; virtual HRESULT STDMETHODCALLTYPE ApplyChanges( void) = 0; }; #else /* C style interface */ typedef struct IVsPreviewChangesEngineVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsPreviewChangesEngine * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsPreviewChangesEngine * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsPreviewChangesEngine * This); HRESULT ( STDMETHODCALLTYPE *GetTitle )( __RPC__in IVsPreviewChangesEngine * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrTitle); HRESULT ( STDMETHODCALLTYPE *GetDescription )( __RPC__in IVsPreviewChangesEngine * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrDescription); HRESULT ( STDMETHODCALLTYPE *GetTextViewDescription )( __RPC__in IVsPreviewChangesEngine * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrTextViewDescription); HRESULT ( STDMETHODCALLTYPE *GetWarning )( __RPC__in IVsPreviewChangesEngine * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrWarning, /* [out] */ __RPC__out PREVIEWCHANGESWARNINGLEVEL *ppcwlWarningLevel); HRESULT ( STDMETHODCALLTYPE *GetHelpContext )( __RPC__in IVsPreviewChangesEngine * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrHelpContext); HRESULT ( STDMETHODCALLTYPE *GetConfirmation )( __RPC__in IVsPreviewChangesEngine * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrConfirmation); HRESULT ( STDMETHODCALLTYPE *GetRootChangesList )( __RPC__in IVsPreviewChangesEngine * This, /* [out] */ __RPC__deref_out_opt IUnknown **ppIUnknownPreviewChangesList); HRESULT ( STDMETHODCALLTYPE *ApplyChanges )( __RPC__in IVsPreviewChangesEngine * This); END_INTERFACE } IVsPreviewChangesEngineVtbl; interface IVsPreviewChangesEngine { CONST_VTBL struct IVsPreviewChangesEngineVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsPreviewChangesEngine_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsPreviewChangesEngine_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsPreviewChangesEngine_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsPreviewChangesEngine_GetTitle(This,pbstrTitle) \ ( (This)->lpVtbl -> GetTitle(This,pbstrTitle) ) #define IVsPreviewChangesEngine_GetDescription(This,pbstrDescription) \ ( (This)->lpVtbl -> GetDescription(This,pbstrDescription) ) #define IVsPreviewChangesEngine_GetTextViewDescription(This,pbstrTextViewDescription) \ ( (This)->lpVtbl -> GetTextViewDescription(This,pbstrTextViewDescription) ) #define IVsPreviewChangesEngine_GetWarning(This,pbstrWarning,ppcwlWarningLevel) \ ( (This)->lpVtbl -> GetWarning(This,pbstrWarning,ppcwlWarningLevel) ) #define IVsPreviewChangesEngine_GetHelpContext(This,pbstrHelpContext) \ ( (This)->lpVtbl -> GetHelpContext(This,pbstrHelpContext) ) #define IVsPreviewChangesEngine_GetConfirmation(This,pbstrConfirmation) \ ( (This)->lpVtbl -> GetConfirmation(This,pbstrConfirmation) ) #define IVsPreviewChangesEngine_GetRootChangesList(This,ppIUnknownPreviewChangesList) \ ( (This)->lpVtbl -> GetRootChangesList(This,ppIUnknownPreviewChangesList) ) #define IVsPreviewChangesEngine_ApplyChanges(This) \ ( (This)->lpVtbl -> ApplyChanges(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsPreviewChangesEngine_INTERFACE_DEFINED__ */ #ifndef __IVsPreviewChangesService_INTERFACE_DEFINED__ #define __IVsPreviewChangesService_INTERFACE_DEFINED__ /* interface IVsPreviewChangesService */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsPreviewChangesService; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("AF142B19-FB37-40c0-9C28-6617ADBFFAC7") IVsPreviewChangesService : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE PreviewChanges( /* [in] */ __RPC__in_opt IVsPreviewChangesEngine *pIVsPreviewChangesEngine) = 0; }; #else /* C style interface */ typedef struct IVsPreviewChangesServiceVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsPreviewChangesService * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsPreviewChangesService * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsPreviewChangesService * This); HRESULT ( STDMETHODCALLTYPE *PreviewChanges )( __RPC__in IVsPreviewChangesService * This, /* [in] */ __RPC__in_opt IVsPreviewChangesEngine *pIVsPreviewChangesEngine); END_INTERFACE } IVsPreviewChangesServiceVtbl; interface IVsPreviewChangesService { CONST_VTBL struct IVsPreviewChangesServiceVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsPreviewChangesService_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsPreviewChangesService_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsPreviewChangesService_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsPreviewChangesService_PreviewChanges(This,pIVsPreviewChangesEngine) \ ( (This)->lpVtbl -> PreviewChanges(This,pIVsPreviewChangesEngine) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsPreviewChangesService_INTERFACE_DEFINED__ */ #ifndef __SVsPreviewChangesService_INTERFACE_DEFINED__ #define __SVsPreviewChangesService_INTERFACE_DEFINED__ /* interface SVsPreviewChangesService */ /* [object][uuid] */ EXTERN_C const IID IID_SVsPreviewChangesService; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("12143874-DA05-4d05-9F57-2D339C142220") SVsPreviewChangesService : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsPreviewChangesServiceVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsPreviewChangesService * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsPreviewChangesService * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsPreviewChangesService * This); END_INTERFACE } SVsPreviewChangesServiceVtbl; interface SVsPreviewChangesService { CONST_VTBL struct SVsPreviewChangesServiceVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsPreviewChangesService_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsPreviewChangesService_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsPreviewChangesService_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsPreviewChangesService_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0108 */ /* [local] */ #define SID_SVsPreviewChangesService IID_SVsPreviewChangesService extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0108_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0108_v0_0_s_ifspec; #ifndef __IVsCodeDefViewContext_INTERFACE_DEFINED__ #define __IVsCodeDefViewContext_INTERFACE_DEFINED__ /* interface IVsCodeDefViewContext */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsCodeDefViewContext; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("E7070F9A-502F-4454-B4A2-FE261C568C37") IVsCodeDefViewContext : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetCount( /* [out] */ __RPC__out ULONG *pcItems) = 0; virtual HRESULT STDMETHODCALLTYPE GetSymbolName( /* [in] */ ULONG iItem, /* [out] */ __RPC__deref_out_opt BSTR *pbstrSymbolName) = 0; virtual HRESULT STDMETHODCALLTYPE GetFileName( /* [in] */ ULONG iItem, /* [out] */ __RPC__deref_out_opt BSTR *pbstrFileName) = 0; virtual HRESULT STDMETHODCALLTYPE GetLine( /* [in] */ ULONG iItem, /* [out] */ __RPC__out ULONG *piLine) = 0; virtual HRESULT STDMETHODCALLTYPE GetCol( /* [in] */ ULONG iItem, /* [out] */ __RPC__out ULONG *piCol) = 0; }; #else /* C style interface */ typedef struct IVsCodeDefViewContextVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsCodeDefViewContext * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsCodeDefViewContext * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsCodeDefViewContext * This); HRESULT ( STDMETHODCALLTYPE *GetCount )( __RPC__in IVsCodeDefViewContext * This, /* [out] */ __RPC__out ULONG *pcItems); HRESULT ( STDMETHODCALLTYPE *GetSymbolName )( __RPC__in IVsCodeDefViewContext * This, /* [in] */ ULONG iItem, /* [out] */ __RPC__deref_out_opt BSTR *pbstrSymbolName); HRESULT ( STDMETHODCALLTYPE *GetFileName )( __RPC__in IVsCodeDefViewContext * This, /* [in] */ ULONG iItem, /* [out] */ __RPC__deref_out_opt BSTR *pbstrFileName); HRESULT ( STDMETHODCALLTYPE *GetLine )( __RPC__in IVsCodeDefViewContext * This, /* [in] */ ULONG iItem, /* [out] */ __RPC__out ULONG *piLine); HRESULT ( STDMETHODCALLTYPE *GetCol )( __RPC__in IVsCodeDefViewContext * This, /* [in] */ ULONG iItem, /* [out] */ __RPC__out ULONG *piCol); END_INTERFACE } IVsCodeDefViewContextVtbl; interface IVsCodeDefViewContext { CONST_VTBL struct IVsCodeDefViewContextVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsCodeDefViewContext_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsCodeDefViewContext_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsCodeDefViewContext_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsCodeDefViewContext_GetCount(This,pcItems) \ ( (This)->lpVtbl -> GetCount(This,pcItems) ) #define IVsCodeDefViewContext_GetSymbolName(This,iItem,pbstrSymbolName) \ ( (This)->lpVtbl -> GetSymbolName(This,iItem,pbstrSymbolName) ) #define IVsCodeDefViewContext_GetFileName(This,iItem,pbstrFileName) \ ( (This)->lpVtbl -> GetFileName(This,iItem,pbstrFileName) ) #define IVsCodeDefViewContext_GetLine(This,iItem,piLine) \ ( (This)->lpVtbl -> GetLine(This,iItem,piLine) ) #define IVsCodeDefViewContext_GetCol(This,iItem,piCol) \ ( (This)->lpVtbl -> GetCol(This,iItem,piCol) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsCodeDefViewContext_INTERFACE_DEFINED__ */ #ifndef __IVsCodeDefView_INTERFACE_DEFINED__ #define __IVsCodeDefView_INTERFACE_DEFINED__ /* interface IVsCodeDefView */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsCodeDefView; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("588470CC-84F8-4a57-9AC4-86BCA0625FF4") IVsCodeDefView : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE ShowWindow( void) = 0; virtual HRESULT STDMETHODCALLTYPE HideWindow( void) = 0; virtual HRESULT STDMETHODCALLTYPE IsVisible( void) = 0; virtual HRESULT STDMETHODCALLTYPE SetContext( /* [in] */ __RPC__in_opt IVsCodeDefViewContext *pIVsCodeDefViewContext) = 0; virtual HRESULT STDMETHODCALLTYPE GetRefreshDelay( /* [out] */ __RPC__out ULONG *pcMilliseconds) = 0; virtual HRESULT STDMETHODCALLTYPE ForceIdleProcessing( void) = 0; virtual HRESULT STDMETHODCALLTYPE IsCodeDefView( /* [in] */ __RPC__in_opt IVsTextView *pIVsTextView, /* [out] */ __RPC__out BOOL *pfIsCodeDefView) = 0; }; #else /* C style interface */ typedef struct IVsCodeDefViewVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsCodeDefView * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsCodeDefView * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsCodeDefView * This); HRESULT ( STDMETHODCALLTYPE *ShowWindow )( __RPC__in IVsCodeDefView * This); HRESULT ( STDMETHODCALLTYPE *HideWindow )( __RPC__in IVsCodeDefView * This); HRESULT ( STDMETHODCALLTYPE *IsVisible )( __RPC__in IVsCodeDefView * This); HRESULT ( STDMETHODCALLTYPE *SetContext )( __RPC__in IVsCodeDefView * This, /* [in] */ __RPC__in_opt IVsCodeDefViewContext *pIVsCodeDefViewContext); HRESULT ( STDMETHODCALLTYPE *GetRefreshDelay )( __RPC__in IVsCodeDefView * This, /* [out] */ __RPC__out ULONG *pcMilliseconds); HRESULT ( STDMETHODCALLTYPE *ForceIdleProcessing )( __RPC__in IVsCodeDefView * This); HRESULT ( STDMETHODCALLTYPE *IsCodeDefView )( __RPC__in IVsCodeDefView * This, /* [in] */ __RPC__in_opt IVsTextView *pIVsTextView, /* [out] */ __RPC__out BOOL *pfIsCodeDefView); END_INTERFACE } IVsCodeDefViewVtbl; interface IVsCodeDefView { CONST_VTBL struct IVsCodeDefViewVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsCodeDefView_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsCodeDefView_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsCodeDefView_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsCodeDefView_ShowWindow(This) \ ( (This)->lpVtbl -> ShowWindow(This) ) #define IVsCodeDefView_HideWindow(This) \ ( (This)->lpVtbl -> HideWindow(This) ) #define IVsCodeDefView_IsVisible(This) \ ( (This)->lpVtbl -> IsVisible(This) ) #define IVsCodeDefView_SetContext(This,pIVsCodeDefViewContext) \ ( (This)->lpVtbl -> SetContext(This,pIVsCodeDefViewContext) ) #define IVsCodeDefView_GetRefreshDelay(This,pcMilliseconds) \ ( (This)->lpVtbl -> GetRefreshDelay(This,pcMilliseconds) ) #define IVsCodeDefView_ForceIdleProcessing(This) \ ( (This)->lpVtbl -> ForceIdleProcessing(This) ) #define IVsCodeDefView_IsCodeDefView(This,pIVsTextView,pfIsCodeDefView) \ ( (This)->lpVtbl -> IsCodeDefView(This,pIVsTextView,pfIsCodeDefView) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsCodeDefView_INTERFACE_DEFINED__ */ #ifndef __IVsSupportCodeDefView_INTERFACE_DEFINED__ #define __IVsSupportCodeDefView_INTERFACE_DEFINED__ /* interface IVsSupportCodeDefView */ /* [object][uuid] */ EXTERN_C const IID IID_IVsSupportCodeDefView; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("D34E5A63-E990-472A-9852-45FB36AA67AB") IVsSupportCodeDefView : public IUnknown { public: }; #else /* C style interface */ typedef struct IVsSupportCodeDefViewVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsSupportCodeDefView * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsSupportCodeDefView * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsSupportCodeDefView * This); END_INTERFACE } IVsSupportCodeDefViewVtbl; interface IVsSupportCodeDefView { CONST_VTBL struct IVsSupportCodeDefViewVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsSupportCodeDefView_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsSupportCodeDefView_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsSupportCodeDefView_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsSupportCodeDefView_INTERFACE_DEFINED__ */ #ifndef __SVsCodeDefView_INTERFACE_DEFINED__ #define __SVsCodeDefView_INTERFACE_DEFINED__ /* interface SVsCodeDefView */ /* [object][uuid] */ EXTERN_C const IID IID_SVsCodeDefView; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("66230816-AC33-49b5-97DB-0F6DF2A83624") SVsCodeDefView : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsCodeDefViewVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsCodeDefView * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsCodeDefView * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsCodeDefView * This); END_INTERFACE } SVsCodeDefViewVtbl; interface SVsCodeDefView { CONST_VTBL struct SVsCodeDefViewVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsCodeDefView_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsCodeDefView_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsCodeDefView_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsCodeDefView_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0112 */ /* [local] */ #define SID_SVsCodeDefView IID_SVsCodeDefView extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0112_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0112_v0_0_s_ifspec; #ifndef __IVsCoTaskMemFreeMyStrings_INTERFACE_DEFINED__ #define __IVsCoTaskMemFreeMyStrings_INTERFACE_DEFINED__ /* interface IVsCoTaskMemFreeMyStrings */ /* [object][uuid] */ EXTERN_C const IID IID_IVsCoTaskMemFreeMyStrings; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("47811DA4-330F-4eb5-9D14-BBC82773DA66") IVsCoTaskMemFreeMyStrings : public IUnknown { public: }; #else /* C style interface */ typedef struct IVsCoTaskMemFreeMyStringsVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsCoTaskMemFreeMyStrings * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsCoTaskMemFreeMyStrings * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsCoTaskMemFreeMyStrings * This); END_INTERFACE } IVsCoTaskMemFreeMyStringsVtbl; interface IVsCoTaskMemFreeMyStrings { CONST_VTBL struct IVsCoTaskMemFreeMyStringsVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsCoTaskMemFreeMyStrings_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsCoTaskMemFreeMyStrings_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsCoTaskMemFreeMyStrings_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsCoTaskMemFreeMyStrings_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0113 */ /* [local] */ typedef enum __VSRDTFLAGS2 { RDT_Lock_WeakEditLock = 0x800, RDT_LOCKUNLOCKMASK = 0xf00 } _VSRDTFLAGS2; typedef DWORD VSRDTFLAGS2; enum __VSRDTSAVEOPTIONS2 { RDTSAVEOPT_SkipNewUnsaved = 0x20, RDTSAVEOPT_SaveAllButThis = 0x40, RDTSAVEOPT_FSaveAs = 0x20000000 } ; typedef DWORD VSRDTSAVEOPTIONS2; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0113_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0113_v0_0_s_ifspec; #ifndef __IVsRunningDocumentTable2_INTERFACE_DEFINED__ #define __IVsRunningDocumentTable2_INTERFACE_DEFINED__ /* interface IVsRunningDocumentTable2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsRunningDocumentTable2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("CD68D3CF-7124-4d3a-AFED-3E305C2B7D0B") IVsRunningDocumentTable2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE CloseDocuments( /* [in] */ FRAMECLOSE grfSaveOptions, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [in] */ VSCOOKIE docCookie) = 0; virtual HRESULT STDMETHODCALLTYPE QueryCloseRunningDocument( /* [in] */ __RPC__in LPCOLESTR pszMkDocument, /* [out] */ __RPC__out BOOL *pfFoundAndClosed) = 0; virtual HRESULT STDMETHODCALLTYPE FindAndLockDocumentEx( /* [in] */ VSRDTFLAGS grfRDTLockType, /* [in] */ __RPC__in LPCOLESTR pszMkDocument, /* [in] */ __RPC__in_opt IVsHierarchy *pHierPreferred, /* [in] */ VSITEMID itemidPreferred, /* [out] */ __RPC__deref_out_opt IVsHierarchy **ppHierActual, /* [out] */ __RPC__out VSITEMID *pitemidActual, /* [out] */ __RPC__deref_out_opt IUnknown **ppunkDocDataActual, /* [out] */ __RPC__out VSCOOKIE *pdwCookie) = 0; virtual HRESULT STDMETHODCALLTYPE FindOrRegisterAndLockDocument( /* [in] */ VSRDTFLAGS grfRDTLockType, /* [in] */ __RPC__in LPCOLESTR pszMkDocument, /* [in] */ __RPC__in_opt IVsHierarchy *pHierPreferred, /* [in] */ VSITEMID itemidPreferred, /* [in] */ __RPC__in_opt IUnknown *punkDocData, /* [out] */ __RPC__deref_out_opt IVsHierarchy **ppHierActual, /* [out] */ __RPC__out VSITEMID *pitemidActual, /* [out] */ __RPC__deref_out_opt IUnknown **ppunkDocDataActual, /* [out] */ __RPC__out VSCOOKIE *pdwCookie) = 0; }; #else /* C style interface */ typedef struct IVsRunningDocumentTable2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsRunningDocumentTable2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsRunningDocumentTable2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsRunningDocumentTable2 * This); HRESULT ( STDMETHODCALLTYPE *CloseDocuments )( __RPC__in IVsRunningDocumentTable2 * This, /* [in] */ FRAMECLOSE grfSaveOptions, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [in] */ VSCOOKIE docCookie); HRESULT ( STDMETHODCALLTYPE *QueryCloseRunningDocument )( __RPC__in IVsRunningDocumentTable2 * This, /* [in] */ __RPC__in LPCOLESTR pszMkDocument, /* [out] */ __RPC__out BOOL *pfFoundAndClosed); HRESULT ( STDMETHODCALLTYPE *FindAndLockDocumentEx )( __RPC__in IVsRunningDocumentTable2 * This, /* [in] */ VSRDTFLAGS grfRDTLockType, /* [in] */ __RPC__in LPCOLESTR pszMkDocument, /* [in] */ __RPC__in_opt IVsHierarchy *pHierPreferred, /* [in] */ VSITEMID itemidPreferred, /* [out] */ __RPC__deref_out_opt IVsHierarchy **ppHierActual, /* [out] */ __RPC__out VSITEMID *pitemidActual, /* [out] */ __RPC__deref_out_opt IUnknown **ppunkDocDataActual, /* [out] */ __RPC__out VSCOOKIE *pdwCookie); HRESULT ( STDMETHODCALLTYPE *FindOrRegisterAndLockDocument )( __RPC__in IVsRunningDocumentTable2 * This, /* [in] */ VSRDTFLAGS grfRDTLockType, /* [in] */ __RPC__in LPCOLESTR pszMkDocument, /* [in] */ __RPC__in_opt IVsHierarchy *pHierPreferred, /* [in] */ VSITEMID itemidPreferred, /* [in] */ __RPC__in_opt IUnknown *punkDocData, /* [out] */ __RPC__deref_out_opt IVsHierarchy **ppHierActual, /* [out] */ __RPC__out VSITEMID *pitemidActual, /* [out] */ __RPC__deref_out_opt IUnknown **ppunkDocDataActual, /* [out] */ __RPC__out VSCOOKIE *pdwCookie); END_INTERFACE } IVsRunningDocumentTable2Vtbl; interface IVsRunningDocumentTable2 { CONST_VTBL struct IVsRunningDocumentTable2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsRunningDocumentTable2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsRunningDocumentTable2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsRunningDocumentTable2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsRunningDocumentTable2_CloseDocuments(This,grfSaveOptions,pHierarchy,docCookie) \ ( (This)->lpVtbl -> CloseDocuments(This,grfSaveOptions,pHierarchy,docCookie) ) #define IVsRunningDocumentTable2_QueryCloseRunningDocument(This,pszMkDocument,pfFoundAndClosed) \ ( (This)->lpVtbl -> QueryCloseRunningDocument(This,pszMkDocument,pfFoundAndClosed) ) #define IVsRunningDocumentTable2_FindAndLockDocumentEx(This,grfRDTLockType,pszMkDocument,pHierPreferred,itemidPreferred,ppHierActual,pitemidActual,ppunkDocDataActual,pdwCookie) \ ( (This)->lpVtbl -> FindAndLockDocumentEx(This,grfRDTLockType,pszMkDocument,pHierPreferred,itemidPreferred,ppHierActual,pitemidActual,ppunkDocDataActual,pdwCookie) ) #define IVsRunningDocumentTable2_FindOrRegisterAndLockDocument(This,grfRDTLockType,pszMkDocument,pHierPreferred,itemidPreferred,punkDocData,ppHierActual,pitemidActual,ppunkDocDataActual,pdwCookie) \ ( (This)->lpVtbl -> FindOrRegisterAndLockDocument(This,grfRDTLockType,pszMkDocument,pHierPreferred,itemidPreferred,punkDocData,ppHierActual,pitemidActual,ppunkDocDataActual,pdwCookie) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsRunningDocumentTable2_INTERFACE_DEFINED__ */ #ifndef __IVsRunningDocTableEvents4_INTERFACE_DEFINED__ #define __IVsRunningDocTableEvents4_INTERFACE_DEFINED__ /* interface IVsRunningDocTableEvents4 */ /* [object][version][uuid] */ EXTERN_C const IID IID_IVsRunningDocTableEvents4; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("79A342F3-D637-4d54-83DC-DDD511743A49") IVsRunningDocTableEvents4 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE OnBeforeFirstDocumentLock( /* [in] */ __RPC__in_opt IVsHierarchy *pHier, /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR pszMkDocument) = 0; virtual HRESULT STDMETHODCALLTYPE OnAfterSaveAll( void) = 0; virtual HRESULT STDMETHODCALLTYPE OnAfterLastDocumentUnlock( /* [in] */ __RPC__in_opt IVsHierarchy *pHier, /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR pszMkDocument, /* [in] */ BOOL fClosedWithoutSaving) = 0; }; #else /* C style interface */ typedef struct IVsRunningDocTableEvents4Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsRunningDocTableEvents4 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsRunningDocTableEvents4 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsRunningDocTableEvents4 * This); HRESULT ( STDMETHODCALLTYPE *OnBeforeFirstDocumentLock )( __RPC__in IVsRunningDocTableEvents4 * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHier, /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR pszMkDocument); HRESULT ( STDMETHODCALLTYPE *OnAfterSaveAll )( __RPC__in IVsRunningDocTableEvents4 * This); HRESULT ( STDMETHODCALLTYPE *OnAfterLastDocumentUnlock )( __RPC__in IVsRunningDocTableEvents4 * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHier, /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR pszMkDocument, /* [in] */ BOOL fClosedWithoutSaving); END_INTERFACE } IVsRunningDocTableEvents4Vtbl; interface IVsRunningDocTableEvents4 { CONST_VTBL struct IVsRunningDocTableEvents4Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsRunningDocTableEvents4_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsRunningDocTableEvents4_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsRunningDocTableEvents4_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsRunningDocTableEvents4_OnBeforeFirstDocumentLock(This,pHier,itemid,pszMkDocument) \ ( (This)->lpVtbl -> OnBeforeFirstDocumentLock(This,pHier,itemid,pszMkDocument) ) #define IVsRunningDocTableEvents4_OnAfterSaveAll(This) \ ( (This)->lpVtbl -> OnAfterSaveAll(This) ) #define IVsRunningDocTableEvents4_OnAfterLastDocumentUnlock(This,pHier,itemid,pszMkDocument,fClosedWithoutSaving) \ ( (This)->lpVtbl -> OnAfterLastDocumentUnlock(This,pHier,itemid,pszMkDocument,fClosedWithoutSaving) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsRunningDocTableEvents4_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0115 */ /* [local] */ extern const __declspec(selectany) GUID UICONTEXT_NotBuildingAndNotDebugging = { 0x48ea4a80, 0xf14e, 0x4107, { 0x88, 0xfa, 0x8d, 0x0, 0x16, 0xf3, 0xb, 0x9c } }; extern const __declspec(selectany) GUID UICONTEXT_SolutionOrProjectUpgrading = { 0xef4f870b, 0x7b85, 0x4f29, { 0x9d, 0x15, 0xce, 0x1a, 0xbf, 0xbe, 0x73, 0x3b } }; extern const __declspec(selectany) GUID UICONTEXT_DataSourceWindowSupported = { 0x95c314c4, 0x660b, 0x4627, { 0x9f, 0x82, 0x1b, 0xaf, 0x1c, 0x76, 0x4b, 0xbf } }; extern const __declspec(selectany) GUID UICONTEXT_DataSourceWindowAutoVisible = { 0x2e78870d, 0xac7c, 0x4460, { 0xa4, 0xa1, 0x3f, 0xe3, 0x7d, 0x00, 0xef, 0x81 } }; extern const __declspec(selectany) GUID UICONTEXT_ToolboxInitialized = { 0xdc5db425, 0xf0fd, 0x4403, { 0x96, 0xa1, 0xf4, 0x75, 0xcd, 0xba, 0x9e, 0xe0 } }; extern const __declspec(selectany) GUID UICONTEXT_SolutionExistsAndNotBuildingAndNotDebugging = { 0xd0e4deec, 0x1b53, 0x4cda, { 0x85, 0x59, 0xd4, 0x54, 0x58, 0x3a, 0xd2, 0x3b } }; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0115_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0115_v0_0_s_ifspec; #ifndef __IVsToolboxDataProviderRegistry_INTERFACE_DEFINED__ #define __IVsToolboxDataProviderRegistry_INTERFACE_DEFINED__ /* interface IVsToolboxDataProviderRegistry */ /* [object][version][uuid] */ EXTERN_C const IID IID_IVsToolboxDataProviderRegistry; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("653BE2DA-BA98-41b7-8ABC-7A38B0E1C01A") IVsToolboxDataProviderRegistry : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE RegisterDataProvider( /* [in] */ __RPC__in_opt IVsToolboxDataProvider *pDP, /* [retval][out] */ __RPC__out VSCOOKIE *pdwProvider) = 0; virtual HRESULT STDMETHODCALLTYPE UnregisterDataProvider( /* [in] */ VSCOOKIE dwProvider) = 0; }; #else /* C style interface */ typedef struct IVsToolboxDataProviderRegistryVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsToolboxDataProviderRegistry * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsToolboxDataProviderRegistry * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsToolboxDataProviderRegistry * This); HRESULT ( STDMETHODCALLTYPE *RegisterDataProvider )( __RPC__in IVsToolboxDataProviderRegistry * This, /* [in] */ __RPC__in_opt IVsToolboxDataProvider *pDP, /* [retval][out] */ __RPC__out VSCOOKIE *pdwProvider); HRESULT ( STDMETHODCALLTYPE *UnregisterDataProvider )( __RPC__in IVsToolboxDataProviderRegistry * This, /* [in] */ VSCOOKIE dwProvider); END_INTERFACE } IVsToolboxDataProviderRegistryVtbl; interface IVsToolboxDataProviderRegistry { CONST_VTBL struct IVsToolboxDataProviderRegistryVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsToolboxDataProviderRegistry_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsToolboxDataProviderRegistry_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsToolboxDataProviderRegistry_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsToolboxDataProviderRegistry_RegisterDataProvider(This,pDP,pdwProvider) \ ( (This)->lpVtbl -> RegisterDataProvider(This,pDP,pdwProvider) ) #define IVsToolboxDataProviderRegistry_UnregisterDataProvider(This,dwProvider) \ ( (This)->lpVtbl -> UnregisterDataProvider(This,dwProvider) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsToolboxDataProviderRegistry_INTERFACE_DEFINED__ */ #ifndef __SVsToolboxDataProviderRegistry_INTERFACE_DEFINED__ #define __SVsToolboxDataProviderRegistry_INTERFACE_DEFINED__ /* interface SVsToolboxDataProviderRegistry */ /* [object][uuid] */ EXTERN_C const IID IID_SVsToolboxDataProviderRegistry; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("3AF9E499-91B8-4b54-BD1D-81F414A587C9") SVsToolboxDataProviderRegistry : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsToolboxDataProviderRegistryVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsToolboxDataProviderRegistry * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsToolboxDataProviderRegistry * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsToolboxDataProviderRegistry * This); END_INTERFACE } SVsToolboxDataProviderRegistryVtbl; interface SVsToolboxDataProviderRegistry { CONST_VTBL struct SVsToolboxDataProviderRegistryVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsToolboxDataProviderRegistry_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsToolboxDataProviderRegistry_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsToolboxDataProviderRegistry_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsToolboxDataProviderRegistry_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0117 */ /* [local] */ #define SID_SVsToolboxDataProviderRegistry IID_SVsToolboxDataProviderRegistry extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0117_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0117_v0_0_s_ifspec; #ifndef __IVsFontAndColorCacheManager_INTERFACE_DEFINED__ #define __IVsFontAndColorCacheManager_INTERFACE_DEFINED__ /* interface IVsFontAndColorCacheManager */ /* [object][version][uuid] */ EXTERN_C const IID IID_IVsFontAndColorCacheManager; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("55D3D8C8-F08C-4b31-B70D-FCC52468A5B2") IVsFontAndColorCacheManager : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE CheckCache( /* [in] */ __RPC__in REFGUID rguidCategory, /* [out] */ __RPC__out BOOL *pfHasData) = 0; virtual HRESULT STDMETHODCALLTYPE ClearCache( /* [in] */ __RPC__in REFGUID rguidCategory) = 0; virtual HRESULT STDMETHODCALLTYPE RefreshCache( /* [in] */ __RPC__in REFGUID rguidCategory) = 0; virtual HRESULT STDMETHODCALLTYPE CheckCacheable( /* [in] */ __RPC__in REFGUID rguidCategory, /* [out] */ __RPC__out BOOL *pfCacheable) = 0; virtual HRESULT STDMETHODCALLTYPE ClearAllCaches( void) = 0; }; #else /* C style interface */ typedef struct IVsFontAndColorCacheManagerVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsFontAndColorCacheManager * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsFontAndColorCacheManager * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsFontAndColorCacheManager * This); HRESULT ( STDMETHODCALLTYPE *CheckCache )( __RPC__in IVsFontAndColorCacheManager * This, /* [in] */ __RPC__in REFGUID rguidCategory, /* [out] */ __RPC__out BOOL *pfHasData); HRESULT ( STDMETHODCALLTYPE *ClearCache )( __RPC__in IVsFontAndColorCacheManager * This, /* [in] */ __RPC__in REFGUID rguidCategory); HRESULT ( STDMETHODCALLTYPE *RefreshCache )( __RPC__in IVsFontAndColorCacheManager * This, /* [in] */ __RPC__in REFGUID rguidCategory); HRESULT ( STDMETHODCALLTYPE *CheckCacheable )( __RPC__in IVsFontAndColorCacheManager * This, /* [in] */ __RPC__in REFGUID rguidCategory, /* [out] */ __RPC__out BOOL *pfCacheable); HRESULT ( STDMETHODCALLTYPE *ClearAllCaches )( __RPC__in IVsFontAndColorCacheManager * This); END_INTERFACE } IVsFontAndColorCacheManagerVtbl; interface IVsFontAndColorCacheManager { CONST_VTBL struct IVsFontAndColorCacheManagerVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsFontAndColorCacheManager_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsFontAndColorCacheManager_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsFontAndColorCacheManager_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsFontAndColorCacheManager_CheckCache(This,rguidCategory,pfHasData) \ ( (This)->lpVtbl -> CheckCache(This,rguidCategory,pfHasData) ) #define IVsFontAndColorCacheManager_ClearCache(This,rguidCategory) \ ( (This)->lpVtbl -> ClearCache(This,rguidCategory) ) #define IVsFontAndColorCacheManager_RefreshCache(This,rguidCategory) \ ( (This)->lpVtbl -> RefreshCache(This,rguidCategory) ) #define IVsFontAndColorCacheManager_CheckCacheable(This,rguidCategory,pfCacheable) \ ( (This)->lpVtbl -> CheckCacheable(This,rguidCategory,pfCacheable) ) #define IVsFontAndColorCacheManager_ClearAllCaches(This) \ ( (This)->lpVtbl -> ClearAllCaches(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsFontAndColorCacheManager_INTERFACE_DEFINED__ */ #ifndef __SVsFontAndColorCacheManager_INTERFACE_DEFINED__ #define __SVsFontAndColorCacheManager_INTERFACE_DEFINED__ /* interface SVsFontAndColorCacheManager */ /* [object][uuid] */ EXTERN_C const IID IID_SVsFontAndColorCacheManager; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("FB5F088F-1C86-4648-B01C-0A1C40840C51") SVsFontAndColorCacheManager : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsFontAndColorCacheManagerVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsFontAndColorCacheManager * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsFontAndColorCacheManager * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsFontAndColorCacheManager * This); END_INTERFACE } SVsFontAndColorCacheManagerVtbl; interface SVsFontAndColorCacheManager { CONST_VTBL struct SVsFontAndColorCacheManagerVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsFontAndColorCacheManager_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsFontAndColorCacheManager_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsFontAndColorCacheManager_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsFontAndColorCacheManager_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0119 */ /* [local] */ #define SID_SVsFontAndColorCacheManager IID_SVsFontAndColorCacheManager enum __VSUL_ERRORLEVEL { VSUL_INFORMATIONAL = 0, VSUL_WARNING = 0x1, VSUL_ERROR = 0x2, VSUL_STATUSMSG = 0x3, VSUL_PROJECT_HYPERLINK = 0x4 } ; typedef DWORD VSUL_ERRORLEVEL; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0119_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0119_v0_0_s_ifspec; #ifndef __IVsUpgradeLogger_INTERFACE_DEFINED__ #define __IVsUpgradeLogger_INTERFACE_DEFINED__ /* interface IVsUpgradeLogger */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsUpgradeLogger; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("AE88C42E-B3D6-4fec-9C63-C9F1B28233EA") IVsUpgradeLogger : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE LogMessage( /* [in] */ VSUL_ERRORLEVEL ErrorLevel, /* [in] */ __RPC__in BSTR bstrProject, /* [in] */ __RPC__in BSTR bstrSource, /* [in] */ __RPC__in BSTR bstrDescription) = 0; virtual HRESULT STDMETHODCALLTYPE Flush( void) = 0; }; #else /* C style interface */ typedef struct IVsUpgradeLoggerVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsUpgradeLogger * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsUpgradeLogger * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsUpgradeLogger * This); HRESULT ( STDMETHODCALLTYPE *LogMessage )( __RPC__in IVsUpgradeLogger * This, /* [in] */ VSUL_ERRORLEVEL ErrorLevel, /* [in] */ __RPC__in BSTR bstrProject, /* [in] */ __RPC__in BSTR bstrSource, /* [in] */ __RPC__in BSTR bstrDescription); HRESULT ( STDMETHODCALLTYPE *Flush )( __RPC__in IVsUpgradeLogger * This); END_INTERFACE } IVsUpgradeLoggerVtbl; interface IVsUpgradeLogger { CONST_VTBL struct IVsUpgradeLoggerVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsUpgradeLogger_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsUpgradeLogger_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsUpgradeLogger_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsUpgradeLogger_LogMessage(This,ErrorLevel,bstrProject,bstrSource,bstrDescription) \ ( (This)->lpVtbl -> LogMessage(This,ErrorLevel,bstrProject,bstrSource,bstrDescription) ) #define IVsUpgradeLogger_Flush(This) \ ( (This)->lpVtbl -> Flush(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsUpgradeLogger_INTERFACE_DEFINED__ */ #ifndef __SVsUpgradeLogger_INTERFACE_DEFINED__ #define __SVsUpgradeLogger_INTERFACE_DEFINED__ /* interface SVsUpgradeLogger */ /* [object][uuid] */ EXTERN_C const IID IID_SVsUpgradeLogger; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("DFB0136F-202E-40b5-872E-AE8289A45B59") SVsUpgradeLogger : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsUpgradeLoggerVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsUpgradeLogger * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsUpgradeLogger * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsUpgradeLogger * This); END_INTERFACE } SVsUpgradeLoggerVtbl; interface SVsUpgradeLogger { CONST_VTBL struct SVsUpgradeLoggerVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsUpgradeLogger_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsUpgradeLogger_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsUpgradeLogger_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsUpgradeLogger_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0121 */ /* [local] */ #define SID_SVsUpgradeLogger IID_SVsUpgradeLogger #define SID_IVsUpgradeLogger IID_SVsUpgradeLogger extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0121_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0121_v0_0_s_ifspec; #ifndef __IVsFileUpgrade_INTERFACE_DEFINED__ #define __IVsFileUpgrade_INTERFACE_DEFINED__ /* interface IVsFileUpgrade */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsFileUpgrade; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("5D2D55F2-E545-4301-9C22-52BC694CA76C") IVsFileUpgrade : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE UpgradeFile( /* [in] */ __RPC__in BSTR bstrProjectName, /* [in] */ __RPC__in BSTR bstrFileName, /* [in] */ BOOL bNoBackup, /* [in] */ __RPC__in_opt IVsUpgradeLogger *pLogger, /* [out] */ __RPC__out BOOL *pUpgradeRequired) = 0; virtual HRESULT STDMETHODCALLTYPE UpgradeFile_CheckOnly( /* [in] */ __RPC__in BSTR bstrProjectName, /* [in] */ __RPC__in BSTR bstrFileName, /* [in] */ BOOL bNoBackup, /* [in] */ __RPC__in_opt IVsUpgradeLogger *pLogger, /* [out] */ __RPC__out BOOL *pUpgradeRequired) = 0; }; #else /* C style interface */ typedef struct IVsFileUpgradeVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsFileUpgrade * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsFileUpgrade * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsFileUpgrade * This); HRESULT ( STDMETHODCALLTYPE *UpgradeFile )( __RPC__in IVsFileUpgrade * This, /* [in] */ __RPC__in BSTR bstrProjectName, /* [in] */ __RPC__in BSTR bstrFileName, /* [in] */ BOOL bNoBackup, /* [in] */ __RPC__in_opt IVsUpgradeLogger *pLogger, /* [out] */ __RPC__out BOOL *pUpgradeRequired); HRESULT ( STDMETHODCALLTYPE *UpgradeFile_CheckOnly )( __RPC__in IVsFileUpgrade * This, /* [in] */ __RPC__in BSTR bstrProjectName, /* [in] */ __RPC__in BSTR bstrFileName, /* [in] */ BOOL bNoBackup, /* [in] */ __RPC__in_opt IVsUpgradeLogger *pLogger, /* [out] */ __RPC__out BOOL *pUpgradeRequired); END_INTERFACE } IVsFileUpgradeVtbl; interface IVsFileUpgrade { CONST_VTBL struct IVsFileUpgradeVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsFileUpgrade_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsFileUpgrade_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsFileUpgrade_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsFileUpgrade_UpgradeFile(This,bstrProjectName,bstrFileName,bNoBackup,pLogger,pUpgradeRequired) \ ( (This)->lpVtbl -> UpgradeFile(This,bstrProjectName,bstrFileName,bNoBackup,pLogger,pUpgradeRequired) ) #define IVsFileUpgrade_UpgradeFile_CheckOnly(This,bstrProjectName,bstrFileName,bNoBackup,pLogger,pUpgradeRequired) \ ( (This)->lpVtbl -> UpgradeFile_CheckOnly(This,bstrProjectName,bstrFileName,bNoBackup,pLogger,pUpgradeRequired) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsFileUpgrade_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0122 */ /* [local] */ enum __VSPPROJECTUPGRADEVIAFACTORYFLAGS { PUVFF_SXSBACKUP = 0x20, PUVFF_COPYBACKUP = 0x40, PUVFF_BACKUPSUPPORTED = 0x80, PUVFF_USE_ALT_BACKUP_LOCATION = 0x100 } ; typedef DWORD VSPUVF_FLAGS; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0122_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0122_v0_0_s_ifspec; #ifndef __IVsProjectUpgradeViaFactory_INTERFACE_DEFINED__ #define __IVsProjectUpgradeViaFactory_INTERFACE_DEFINED__ /* interface IVsProjectUpgradeViaFactory */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsProjectUpgradeViaFactory; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("0DBA1379-5D67-4a6c-8C06-A5795AF7364B") IVsProjectUpgradeViaFactory : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE UpgradeProject( /* [in] */ __RPC__in BSTR bstrFileName, /* [in] */ VSPUVF_FLAGS fUpgradeFlag, /* [in] */ __RPC__in BSTR bstrCopyLocation, /* [out] */ __RPC__deref_out_opt BSTR *pbstrUpgradedFullyQualifiedFileName, /* [in] */ __RPC__in_opt IVsUpgradeLogger *pLogger, /* [out] */ __RPC__out BOOL *pUpgradeRequired, /* [out] */ __RPC__out GUID *pguidNewProjectFactory) = 0; virtual HRESULT STDMETHODCALLTYPE UpgradeProject_CheckOnly( /* [in] */ __RPC__in BSTR bstrFileName, /* [in] */ __RPC__in_opt IVsUpgradeLogger *pLogger, /* [out] */ __RPC__out BOOL *pUpgradeRequired, /* [out] */ __RPC__out GUID *pguidNewProjectFactory, /* [out] */ __RPC__out VSPUVF_FLAGS *pUpgradeProjectCapabilityFlags) = 0; virtual HRESULT STDMETHODCALLTYPE GetSccInfo( /* [in] */ __RPC__in BSTR bstrProjectFileName, /* [out] */ __RPC__deref_out_opt BSTR *pbstrSccProjectName, /* [out] */ __RPC__deref_out_opt BSTR *pbstrSccAuxPath, /* [out] */ __RPC__deref_out_opt BSTR *pbstrSccLocalPath, /* [out] */ __RPC__deref_out_opt BSTR *pbstrProvider) = 0; }; #else /* C style interface */ typedef struct IVsProjectUpgradeViaFactoryVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsProjectUpgradeViaFactory * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsProjectUpgradeViaFactory * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsProjectUpgradeViaFactory * This); HRESULT ( STDMETHODCALLTYPE *UpgradeProject )( __RPC__in IVsProjectUpgradeViaFactory * This, /* [in] */ __RPC__in BSTR bstrFileName, /* [in] */ VSPUVF_FLAGS fUpgradeFlag, /* [in] */ __RPC__in BSTR bstrCopyLocation, /* [out] */ __RPC__deref_out_opt BSTR *pbstrUpgradedFullyQualifiedFileName, /* [in] */ __RPC__in_opt IVsUpgradeLogger *pLogger, /* [out] */ __RPC__out BOOL *pUpgradeRequired, /* [out] */ __RPC__out GUID *pguidNewProjectFactory); HRESULT ( STDMETHODCALLTYPE *UpgradeProject_CheckOnly )( __RPC__in IVsProjectUpgradeViaFactory * This, /* [in] */ __RPC__in BSTR bstrFileName, /* [in] */ __RPC__in_opt IVsUpgradeLogger *pLogger, /* [out] */ __RPC__out BOOL *pUpgradeRequired, /* [out] */ __RPC__out GUID *pguidNewProjectFactory, /* [out] */ __RPC__out VSPUVF_FLAGS *pUpgradeProjectCapabilityFlags); HRESULT ( STDMETHODCALLTYPE *GetSccInfo )( __RPC__in IVsProjectUpgradeViaFactory * This, /* [in] */ __RPC__in BSTR bstrProjectFileName, /* [out] */ __RPC__deref_out_opt BSTR *pbstrSccProjectName, /* [out] */ __RPC__deref_out_opt BSTR *pbstrSccAuxPath, /* [out] */ __RPC__deref_out_opt BSTR *pbstrSccLocalPath, /* [out] */ __RPC__deref_out_opt BSTR *pbstrProvider); END_INTERFACE } IVsProjectUpgradeViaFactoryVtbl; interface IVsProjectUpgradeViaFactory { CONST_VTBL struct IVsProjectUpgradeViaFactoryVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsProjectUpgradeViaFactory_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsProjectUpgradeViaFactory_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsProjectUpgradeViaFactory_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsProjectUpgradeViaFactory_UpgradeProject(This,bstrFileName,fUpgradeFlag,bstrCopyLocation,pbstrUpgradedFullyQualifiedFileName,pLogger,pUpgradeRequired,pguidNewProjectFactory) \ ( (This)->lpVtbl -> UpgradeProject(This,bstrFileName,fUpgradeFlag,bstrCopyLocation,pbstrUpgradedFullyQualifiedFileName,pLogger,pUpgradeRequired,pguidNewProjectFactory) ) #define IVsProjectUpgradeViaFactory_UpgradeProject_CheckOnly(This,bstrFileName,pLogger,pUpgradeRequired,pguidNewProjectFactory,pUpgradeProjectCapabilityFlags) \ ( (This)->lpVtbl -> UpgradeProject_CheckOnly(This,bstrFileName,pLogger,pUpgradeRequired,pguidNewProjectFactory,pUpgradeProjectCapabilityFlags) ) #define IVsProjectUpgradeViaFactory_GetSccInfo(This,bstrProjectFileName,pbstrSccProjectName,pbstrSccAuxPath,pbstrSccLocalPath,pbstrProvider) \ ( (This)->lpVtbl -> GetSccInfo(This,bstrProjectFileName,pbstrSccProjectName,pbstrSccAuxPath,pbstrSccLocalPath,pbstrProvider) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsProjectUpgradeViaFactory_INTERFACE_DEFINED__ */ #ifndef __IVsProjectUpgradeViaFactory2_INTERFACE_DEFINED__ #define __IVsProjectUpgradeViaFactory2_INTERFACE_DEFINED__ /* interface IVsProjectUpgradeViaFactory2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsProjectUpgradeViaFactory2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("E5F6CFF6-C3E1-45bc-9559-C03F94FDF15B") IVsProjectUpgradeViaFactory2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE OnUpgradeProjectCancelled( /* [in] */ __RPC__in BSTR bstrFileName) = 0; }; #else /* C style interface */ typedef struct IVsProjectUpgradeViaFactory2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsProjectUpgradeViaFactory2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsProjectUpgradeViaFactory2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsProjectUpgradeViaFactory2 * This); HRESULT ( STDMETHODCALLTYPE *OnUpgradeProjectCancelled )( __RPC__in IVsProjectUpgradeViaFactory2 * This, /* [in] */ __RPC__in BSTR bstrFileName); END_INTERFACE } IVsProjectUpgradeViaFactory2Vtbl; interface IVsProjectUpgradeViaFactory2 { CONST_VTBL struct IVsProjectUpgradeViaFactory2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsProjectUpgradeViaFactory2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsProjectUpgradeViaFactory2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsProjectUpgradeViaFactory2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsProjectUpgradeViaFactory2_OnUpgradeProjectCancelled(This,bstrFileName) \ ( (This)->lpVtbl -> OnUpgradeProjectCancelled(This,bstrFileName) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsProjectUpgradeViaFactory2_INTERFACE_DEFINED__ */ #ifndef __IVsSolutionEventsProjectUpgrade_INTERFACE_DEFINED__ #define __IVsSolutionEventsProjectUpgrade_INTERFACE_DEFINED__ /* interface IVsSolutionEventsProjectUpgrade */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsSolutionEventsProjectUpgrade; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("7B1D55C6-4F6A-4865-B9B3-1A696E233065") IVsSolutionEventsProjectUpgrade : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE OnAfterUpgradeProject( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [in] */ VSPUVF_FLAGS fUpgradeFlag, /* [in] */ __RPC__in BSTR bstrCopyLocation, /* [in] */ SYSTEMTIME stUpgradeTime, /* [in] */ __RPC__in_opt IVsUpgradeLogger *pLogger) = 0; }; #else /* C style interface */ typedef struct IVsSolutionEventsProjectUpgradeVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsSolutionEventsProjectUpgrade * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsSolutionEventsProjectUpgrade * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsSolutionEventsProjectUpgrade * This); HRESULT ( STDMETHODCALLTYPE *OnAfterUpgradeProject )( __RPC__in IVsSolutionEventsProjectUpgrade * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [in] */ VSPUVF_FLAGS fUpgradeFlag, /* [in] */ __RPC__in BSTR bstrCopyLocation, /* [in] */ SYSTEMTIME stUpgradeTime, /* [in] */ __RPC__in_opt IVsUpgradeLogger *pLogger); END_INTERFACE } IVsSolutionEventsProjectUpgradeVtbl; interface IVsSolutionEventsProjectUpgrade { CONST_VTBL struct IVsSolutionEventsProjectUpgradeVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsSolutionEventsProjectUpgrade_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsSolutionEventsProjectUpgrade_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsSolutionEventsProjectUpgrade_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsSolutionEventsProjectUpgrade_OnAfterUpgradeProject(This,pHierarchy,fUpgradeFlag,bstrCopyLocation,stUpgradeTime,pLogger) \ ( (This)->lpVtbl -> OnAfterUpgradeProject(This,pHierarchy,fUpgradeFlag,bstrCopyLocation,stUpgradeTime,pLogger) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsSolutionEventsProjectUpgrade_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0125 */ /* [local] */ typedef enum __tagACTIVITYLOG_ENTRYTYPE { ALE_ERROR = 1, ALE_WARNING = 2, ALE_INFORMATION = 3 } __ACTIVITYLOG_ENTRYTYPE; typedef DWORD ACTIVITYLOG_ENTRYTYPE; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0125_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0125_v0_0_s_ifspec; #ifndef __IVsActivityLog_INTERFACE_DEFINED__ #define __IVsActivityLog_INTERFACE_DEFINED__ /* interface IVsActivityLog */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsActivityLog; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("76AF73F9-A322-42b0-A515-D4D7553508FE") IVsActivityLog : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE LogEntry( /* [in] */ ACTIVITYLOG_ENTRYTYPE actType, /* [in] */ __RPC__in LPCOLESTR pszSource, /* [in] */ __RPC__in LPCOLESTR pszDescription) = 0; virtual HRESULT STDMETHODCALLTYPE LogEntryGuid( /* [in] */ ACTIVITYLOG_ENTRYTYPE actType, /* [in] */ __RPC__in LPCOLESTR pszSource, /* [in] */ __RPC__in LPCOLESTR pszDescription, /* [in] */ GUID guid) = 0; virtual HRESULT STDMETHODCALLTYPE LogEntryHr( /* [in] */ ACTIVITYLOG_ENTRYTYPE actType, /* [in] */ __RPC__in LPCOLESTR pszSource, /* [in] */ __RPC__in LPCOLESTR pszDescription, /* [in] */ HRESULT hr) = 0; virtual HRESULT STDMETHODCALLTYPE LogEntryGuidHr( /* [in] */ ACTIVITYLOG_ENTRYTYPE actType, /* [in] */ __RPC__in LPCOLESTR pszSource, /* [in] */ __RPC__in LPCOLESTR pszDescription, /* [in] */ GUID guid, /* [in] */ HRESULT hr) = 0; virtual HRESULT STDMETHODCALLTYPE LogEntryPath( /* [in] */ ACTIVITYLOG_ENTRYTYPE actType, /* [in] */ __RPC__in LPCOLESTR pszSource, /* [in] */ __RPC__in LPCOLESTR pszDescription, /* [in] */ __RPC__in LPCOLESTR pszPath) = 0; virtual HRESULT STDMETHODCALLTYPE LogEntryGuidPath( /* [in] */ ACTIVITYLOG_ENTRYTYPE actType, /* [in] */ __RPC__in LPCOLESTR pszSource, /* [in] */ __RPC__in LPCOLESTR pszDescription, /* [in] */ GUID guid, /* [in] */ __RPC__in LPCOLESTR pszPath) = 0; virtual HRESULT STDMETHODCALLTYPE LogEntryHrPath( /* [in] */ ACTIVITYLOG_ENTRYTYPE actType, /* [in] */ __RPC__in LPCOLESTR pszSource, /* [in] */ __RPC__in LPCOLESTR pszDescription, /* [in] */ HRESULT hr, /* [in] */ __RPC__in LPCOLESTR pszPath) = 0; virtual HRESULT STDMETHODCALLTYPE LogEntryGuidHrPath( /* [in] */ ACTIVITYLOG_ENTRYTYPE actType, /* [in] */ __RPC__in LPCOLESTR pszSource, /* [in] */ __RPC__in LPCOLESTR pszDescription, /* [in] */ GUID guid, /* [in] */ HRESULT hr, /* [in] */ __RPC__in LPCOLESTR pszPath) = 0; }; #else /* C style interface */ typedef struct IVsActivityLogVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsActivityLog * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsActivityLog * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsActivityLog * This); HRESULT ( STDMETHODCALLTYPE *LogEntry )( __RPC__in IVsActivityLog * This, /* [in] */ ACTIVITYLOG_ENTRYTYPE actType, /* [in] */ __RPC__in LPCOLESTR pszSource, /* [in] */ __RPC__in LPCOLESTR pszDescription); HRESULT ( STDMETHODCALLTYPE *LogEntryGuid )( __RPC__in IVsActivityLog * This, /* [in] */ ACTIVITYLOG_ENTRYTYPE actType, /* [in] */ __RPC__in LPCOLESTR pszSource, /* [in] */ __RPC__in LPCOLESTR pszDescription, /* [in] */ GUID guid); HRESULT ( STDMETHODCALLTYPE *LogEntryHr )( __RPC__in IVsActivityLog * This, /* [in] */ ACTIVITYLOG_ENTRYTYPE actType, /* [in] */ __RPC__in LPCOLESTR pszSource, /* [in] */ __RPC__in LPCOLESTR pszDescription, /* [in] */ HRESULT hr); HRESULT ( STDMETHODCALLTYPE *LogEntryGuidHr )( __RPC__in IVsActivityLog * This, /* [in] */ ACTIVITYLOG_ENTRYTYPE actType, /* [in] */ __RPC__in LPCOLESTR pszSource, /* [in] */ __RPC__in LPCOLESTR pszDescription, /* [in] */ GUID guid, /* [in] */ HRESULT hr); HRESULT ( STDMETHODCALLTYPE *LogEntryPath )( __RPC__in IVsActivityLog * This, /* [in] */ ACTIVITYLOG_ENTRYTYPE actType, /* [in] */ __RPC__in LPCOLESTR pszSource, /* [in] */ __RPC__in LPCOLESTR pszDescription, /* [in] */ __RPC__in LPCOLESTR pszPath); HRESULT ( STDMETHODCALLTYPE *LogEntryGuidPath )( __RPC__in IVsActivityLog * This, /* [in] */ ACTIVITYLOG_ENTRYTYPE actType, /* [in] */ __RPC__in LPCOLESTR pszSource, /* [in] */ __RPC__in LPCOLESTR pszDescription, /* [in] */ GUID guid, /* [in] */ __RPC__in LPCOLESTR pszPath); HRESULT ( STDMETHODCALLTYPE *LogEntryHrPath )( __RPC__in IVsActivityLog * This, /* [in] */ ACTIVITYLOG_ENTRYTYPE actType, /* [in] */ __RPC__in LPCOLESTR pszSource, /* [in] */ __RPC__in LPCOLESTR pszDescription, /* [in] */ HRESULT hr, /* [in] */ __RPC__in LPCOLESTR pszPath); HRESULT ( STDMETHODCALLTYPE *LogEntryGuidHrPath )( __RPC__in IVsActivityLog * This, /* [in] */ ACTIVITYLOG_ENTRYTYPE actType, /* [in] */ __RPC__in LPCOLESTR pszSource, /* [in] */ __RPC__in LPCOLESTR pszDescription, /* [in] */ GUID guid, /* [in] */ HRESULT hr, /* [in] */ __RPC__in LPCOLESTR pszPath); END_INTERFACE } IVsActivityLogVtbl; interface IVsActivityLog { CONST_VTBL struct IVsActivityLogVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsActivityLog_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsActivityLog_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsActivityLog_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsActivityLog_LogEntry(This,actType,pszSource,pszDescription) \ ( (This)->lpVtbl -> LogEntry(This,actType,pszSource,pszDescription) ) #define IVsActivityLog_LogEntryGuid(This,actType,pszSource,pszDescription,guid) \ ( (This)->lpVtbl -> LogEntryGuid(This,actType,pszSource,pszDescription,guid) ) #define IVsActivityLog_LogEntryHr(This,actType,pszSource,pszDescription,hr) \ ( (This)->lpVtbl -> LogEntryHr(This,actType,pszSource,pszDescription,hr) ) #define IVsActivityLog_LogEntryGuidHr(This,actType,pszSource,pszDescription,guid,hr) \ ( (This)->lpVtbl -> LogEntryGuidHr(This,actType,pszSource,pszDescription,guid,hr) ) #define IVsActivityLog_LogEntryPath(This,actType,pszSource,pszDescription,pszPath) \ ( (This)->lpVtbl -> LogEntryPath(This,actType,pszSource,pszDescription,pszPath) ) #define IVsActivityLog_LogEntryGuidPath(This,actType,pszSource,pszDescription,guid,pszPath) \ ( (This)->lpVtbl -> LogEntryGuidPath(This,actType,pszSource,pszDescription,guid,pszPath) ) #define IVsActivityLog_LogEntryHrPath(This,actType,pszSource,pszDescription,hr,pszPath) \ ( (This)->lpVtbl -> LogEntryHrPath(This,actType,pszSource,pszDescription,hr,pszPath) ) #define IVsActivityLog_LogEntryGuidHrPath(This,actType,pszSource,pszDescription,guid,hr,pszPath) \ ( (This)->lpVtbl -> LogEntryGuidHrPath(This,actType,pszSource,pszDescription,guid,hr,pszPath) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsActivityLog_INTERFACE_DEFINED__ */ #ifndef __SVsActivityLog_INTERFACE_DEFINED__ #define __SVsActivityLog_INTERFACE_DEFINED__ /* interface SVsActivityLog */ /* [object][uuid] */ EXTERN_C const IID IID_SVsActivityLog; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("24367A32-EF56-405b-A395-5CF2BCCB2283") SVsActivityLog : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsActivityLogVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsActivityLog * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsActivityLog * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsActivityLog * This); END_INTERFACE } SVsActivityLogVtbl; interface SVsActivityLog { CONST_VTBL struct SVsActivityLogVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsActivityLog_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsActivityLog_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsActivityLog_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsActivityLog_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0127 */ /* [local] */ #define SID_SVsActivityLog IID_SVsActivityLog extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0127_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0127_v0_0_s_ifspec; #ifndef __IVsPersistDocData3_INTERFACE_DEFINED__ #define __IVsPersistDocData3_INTERFACE_DEFINED__ /* interface IVsPersistDocData3 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsPersistDocData3; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("DEC057F4-46D1-4BD3-9D63-21E5E3F19368") IVsPersistDocData3 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE HandsOffDocDataStorage( void) = 0; virtual HRESULT STDMETHODCALLTYPE HandsOnDocDataStorage( void) = 0; }; #else /* C style interface */ typedef struct IVsPersistDocData3Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsPersistDocData3 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsPersistDocData3 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsPersistDocData3 * This); HRESULT ( STDMETHODCALLTYPE *HandsOffDocDataStorage )( __RPC__in IVsPersistDocData3 * This); HRESULT ( STDMETHODCALLTYPE *HandsOnDocDataStorage )( __RPC__in IVsPersistDocData3 * This); END_INTERFACE } IVsPersistDocData3Vtbl; interface IVsPersistDocData3 { CONST_VTBL struct IVsPersistDocData3Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsPersistDocData3_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsPersistDocData3_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsPersistDocData3_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsPersistDocData3_HandsOffDocDataStorage(This) \ ( (This)->lpVtbl -> HandsOffDocDataStorage(This) ) #define IVsPersistDocData3_HandsOnDocDataStorage(This) \ ( (This)->lpVtbl -> HandsOnDocDataStorage(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsPersistDocData3_INTERFACE_DEFINED__ */ #ifndef __IVsWindowFrame2_INTERFACE_DEFINED__ #define __IVsWindowFrame2_INTERFACE_DEFINED__ /* interface IVsWindowFrame2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsWindowFrame2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("801885A0-9DC6-4e34-B064-1C3228F66794") IVsWindowFrame2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE Advise( /* [in] */ __RPC__in_opt IVsWindowFrameNotify *pNotify, /* [out] */ __RPC__out VSCOOKIE *pdwCookie) = 0; virtual HRESULT STDMETHODCALLTYPE Unadvise( /* [in] */ VSCOOKIE dwCookie) = 0; virtual HRESULT STDMETHODCALLTYPE ActivateOwnerDockedWindow( void) = 0; }; #else /* C style interface */ typedef struct IVsWindowFrame2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsWindowFrame2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsWindowFrame2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsWindowFrame2 * This); HRESULT ( STDMETHODCALLTYPE *Advise )( __RPC__in IVsWindowFrame2 * This, /* [in] */ __RPC__in_opt IVsWindowFrameNotify *pNotify, /* [out] */ __RPC__out VSCOOKIE *pdwCookie); HRESULT ( STDMETHODCALLTYPE *Unadvise )( __RPC__in IVsWindowFrame2 * This, /* [in] */ VSCOOKIE dwCookie); HRESULT ( STDMETHODCALLTYPE *ActivateOwnerDockedWindow )( __RPC__in IVsWindowFrame2 * This); END_INTERFACE } IVsWindowFrame2Vtbl; interface IVsWindowFrame2 { CONST_VTBL struct IVsWindowFrame2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsWindowFrame2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsWindowFrame2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsWindowFrame2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsWindowFrame2_Advise(This,pNotify,pdwCookie) \ ( (This)->lpVtbl -> Advise(This,pNotify,pdwCookie) ) #define IVsWindowFrame2_Unadvise(This,dwCookie) \ ( (This)->lpVtbl -> Unadvise(This,dwCookie) ) #define IVsWindowFrame2_ActivateOwnerDockedWindow(This) \ ( (This)->lpVtbl -> ActivateOwnerDockedWindow(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsWindowFrame2_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0129 */ /* [local] */ enum __VSPPPID { VSPPPID_FIRST = 1, VSPPPID_PAGENAME = 1, VSPPPID_LAST = 1 } ; typedef DWORD VSPPPID; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0129_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0129_v0_0_s_ifspec; #ifndef __IVsPropertyPage2_INTERFACE_DEFINED__ #define __IVsPropertyPage2_INTERFACE_DEFINED__ /* interface IVsPropertyPage2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsPropertyPage2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("6FC6A958-B2E7-441b-823C-10EA30B24EEC") IVsPropertyPage2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetProperty( /* [in] */ VSPPPID propid, /* [out] */ __RPC__out VARIANT *pvar) = 0; virtual HRESULT STDMETHODCALLTYPE SetProperty( /* [in] */ VSPPPID propid, /* [in] */ VARIANT var) = 0; }; #else /* C style interface */ typedef struct IVsPropertyPage2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsPropertyPage2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsPropertyPage2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsPropertyPage2 * This); HRESULT ( STDMETHODCALLTYPE *GetProperty )( __RPC__in IVsPropertyPage2 * This, /* [in] */ VSPPPID propid, /* [out] */ __RPC__out VARIANT *pvar); HRESULT ( STDMETHODCALLTYPE *SetProperty )( __RPC__in IVsPropertyPage2 * This, /* [in] */ VSPPPID propid, /* [in] */ VARIANT var); END_INTERFACE } IVsPropertyPage2Vtbl; interface IVsPropertyPage2 { CONST_VTBL struct IVsPropertyPage2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsPropertyPage2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsPropertyPage2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsPropertyPage2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsPropertyPage2_GetProperty(This,propid,pvar) \ ( (This)->lpVtbl -> GetProperty(This,propid,pvar) ) #define IVsPropertyPage2_SetProperty(This,propid,var) \ ( (This)->lpVtbl -> SetProperty(This,propid,var) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsPropertyPage2_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0130 */ /* [local] */ enum __FRAMESHOW2 { FRAMESHOW_BeforeWinHidden = 10, FRAMESHOW_AutoHideSlideEnd = 11 } ; typedef BOOL FRAMESHOW2; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0130_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0130_v0_0_s_ifspec; #ifndef __IVsWindowFrameNotify3_INTERFACE_DEFINED__ #define __IVsWindowFrameNotify3_INTERFACE_DEFINED__ /* interface IVsWindowFrameNotify3 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsWindowFrameNotify3; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("8C213AC2-FF13-4361-9FC5-39D368D26CD3") IVsWindowFrameNotify3 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE OnShow( /* [in] */ FRAMESHOW2 fShow) = 0; virtual HRESULT STDMETHODCALLTYPE OnMove( /* [in] */ int x, /* [in] */ int y, /* [in] */ int w, /* [in] */ int h) = 0; virtual HRESULT STDMETHODCALLTYPE OnSize( /* [in] */ int x, /* [in] */ int y, /* [in] */ int w, /* [in] */ int h) = 0; virtual HRESULT STDMETHODCALLTYPE OnDockableChange( /* [in] */ BOOL fDockable, /* [in] */ int x, /* [in] */ int y, /* [in] */ int w, /* [in] */ int h) = 0; virtual HRESULT STDMETHODCALLTYPE OnClose( /* [out][in] */ __RPC__inout FRAMECLOSE *pgrfSaveOptions) = 0; }; #else /* C style interface */ typedef struct IVsWindowFrameNotify3Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsWindowFrameNotify3 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsWindowFrameNotify3 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsWindowFrameNotify3 * This); HRESULT ( STDMETHODCALLTYPE *OnShow )( __RPC__in IVsWindowFrameNotify3 * This, /* [in] */ FRAMESHOW2 fShow); HRESULT ( STDMETHODCALLTYPE *OnMove )( __RPC__in IVsWindowFrameNotify3 * This, /* [in] */ int x, /* [in] */ int y, /* [in] */ int w, /* [in] */ int h); HRESULT ( STDMETHODCALLTYPE *OnSize )( __RPC__in IVsWindowFrameNotify3 * This, /* [in] */ int x, /* [in] */ int y, /* [in] */ int w, /* [in] */ int h); HRESULT ( STDMETHODCALLTYPE *OnDockableChange )( __RPC__in IVsWindowFrameNotify3 * This, /* [in] */ BOOL fDockable, /* [in] */ int x, /* [in] */ int y, /* [in] */ int w, /* [in] */ int h); HRESULT ( STDMETHODCALLTYPE *OnClose )( __RPC__in IVsWindowFrameNotify3 * This, /* [out][in] */ __RPC__inout FRAMECLOSE *pgrfSaveOptions); END_INTERFACE } IVsWindowFrameNotify3Vtbl; interface IVsWindowFrameNotify3 { CONST_VTBL struct IVsWindowFrameNotify3Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsWindowFrameNotify3_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsWindowFrameNotify3_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsWindowFrameNotify3_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsWindowFrameNotify3_OnShow(This,fShow) \ ( (This)->lpVtbl -> OnShow(This,fShow) ) #define IVsWindowFrameNotify3_OnMove(This,x,y,w,h) \ ( (This)->lpVtbl -> OnMove(This,x,y,w,h) ) #define IVsWindowFrameNotify3_OnSize(This,x,y,w,h) \ ( (This)->lpVtbl -> OnSize(This,x,y,w,h) ) #define IVsWindowFrameNotify3_OnDockableChange(This,fDockable,x,y,w,h) \ ( (This)->lpVtbl -> OnDockableChange(This,fDockable,x,y,w,h) ) #define IVsWindowFrameNotify3_OnClose(This,pgrfSaveOptions) \ ( (This)->lpVtbl -> OnClose(This,pgrfSaveOptions) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsWindowFrameNotify3_INTERFACE_DEFINED__ */ #ifndef __IVsPackageDynamicToolOwnerEx_INTERFACE_DEFINED__ #define __IVsPackageDynamicToolOwnerEx_INTERFACE_DEFINED__ /* interface IVsPackageDynamicToolOwnerEx */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsPackageDynamicToolOwnerEx; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("91C30F81-E72A-4997-9B07-A0AECB8C9169") IVsPackageDynamicToolOwnerEx : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE QueryShowTool( /* [in] */ __RPC__in REFGUID rguidPersistenceSlot, /* [in] */ DWORD dwID, /* [out] */ __RPC__out BOOL *pfShowTool) = 0; }; #else /* C style interface */ typedef struct IVsPackageDynamicToolOwnerExVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsPackageDynamicToolOwnerEx * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsPackageDynamicToolOwnerEx * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsPackageDynamicToolOwnerEx * This); HRESULT ( STDMETHODCALLTYPE *QueryShowTool )( __RPC__in IVsPackageDynamicToolOwnerEx * This, /* [in] */ __RPC__in REFGUID rguidPersistenceSlot, /* [in] */ DWORD dwID, /* [out] */ __RPC__out BOOL *pfShowTool); END_INTERFACE } IVsPackageDynamicToolOwnerExVtbl; interface IVsPackageDynamicToolOwnerEx { CONST_VTBL struct IVsPackageDynamicToolOwnerExVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsPackageDynamicToolOwnerEx_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsPackageDynamicToolOwnerEx_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsPackageDynamicToolOwnerEx_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsPackageDynamicToolOwnerEx_QueryShowTool(This,rguidPersistenceSlot,dwID,pfShowTool) \ ( (This)->lpVtbl -> QueryShowTool(This,rguidPersistenceSlot,dwID,pfShowTool) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsPackageDynamicToolOwnerEx_INTERFACE_DEFINED__ */ #ifndef __IVsContextualIntellisenseFilter_INTERFACE_DEFINED__ #define __IVsContextualIntellisenseFilter_INTERFACE_DEFINED__ /* interface IVsContextualIntellisenseFilter */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsContextualIntellisenseFilter; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("C0C5974A-288D-4719-AB48-9CB812B5E895") IVsContextualIntellisenseFilter : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE Initialize( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy) = 0; virtual HRESULT STDMETHODCALLTYPE IsTypeVisible( /* [in] */ __RPC__in LPCOLESTR szTypeName, /* [out] */ __RPC__out BOOL *pfVisible) = 0; virtual HRESULT STDMETHODCALLTYPE IsMemberVisible( /* [in] */ __RPC__in LPCOLESTR szMemberSignature, /* [out] */ __RPC__out BOOL *pfVisible) = 0; virtual HRESULT STDMETHODCALLTYPE Close( void) = 0; }; #else /* C style interface */ typedef struct IVsContextualIntellisenseFilterVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsContextualIntellisenseFilter * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsContextualIntellisenseFilter * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsContextualIntellisenseFilter * This); HRESULT ( STDMETHODCALLTYPE *Initialize )( __RPC__in IVsContextualIntellisenseFilter * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy); HRESULT ( STDMETHODCALLTYPE *IsTypeVisible )( __RPC__in IVsContextualIntellisenseFilter * This, /* [in] */ __RPC__in LPCOLESTR szTypeName, /* [out] */ __RPC__out BOOL *pfVisible); HRESULT ( STDMETHODCALLTYPE *IsMemberVisible )( __RPC__in IVsContextualIntellisenseFilter * This, /* [in] */ __RPC__in LPCOLESTR szMemberSignature, /* [out] */ __RPC__out BOOL *pfVisible); HRESULT ( STDMETHODCALLTYPE *Close )( __RPC__in IVsContextualIntellisenseFilter * This); END_INTERFACE } IVsContextualIntellisenseFilterVtbl; interface IVsContextualIntellisenseFilter { CONST_VTBL struct IVsContextualIntellisenseFilterVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsContextualIntellisenseFilter_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsContextualIntellisenseFilter_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsContextualIntellisenseFilter_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsContextualIntellisenseFilter_Initialize(This,pHierarchy) \ ( (This)->lpVtbl -> Initialize(This,pHierarchy) ) #define IVsContextualIntellisenseFilter_IsTypeVisible(This,szTypeName,pfVisible) \ ( (This)->lpVtbl -> IsTypeVisible(This,szTypeName,pfVisible) ) #define IVsContextualIntellisenseFilter_IsMemberVisible(This,szMemberSignature,pfVisible) \ ( (This)->lpVtbl -> IsMemberVisible(This,szMemberSignature,pfVisible) ) #define IVsContextualIntellisenseFilter_Close(This) \ ( (This)->lpVtbl -> Close(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsContextualIntellisenseFilter_INTERFACE_DEFINED__ */ #ifndef __IVsContextualIntellisenseFilterProvider_INTERFACE_DEFINED__ #define __IVsContextualIntellisenseFilterProvider_INTERFACE_DEFINED__ /* interface IVsContextualIntellisenseFilterProvider */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsContextualIntellisenseFilterProvider; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("F7827DCE-0B39-474d-8D48-FE8100C9044C") IVsContextualIntellisenseFilterProvider : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetFilter( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [out] */ __RPC__deref_out_opt IVsContextualIntellisenseFilter **ppFilter) = 0; }; #else /* C style interface */ typedef struct IVsContextualIntellisenseFilterProviderVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsContextualIntellisenseFilterProvider * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsContextualIntellisenseFilterProvider * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsContextualIntellisenseFilterProvider * This); HRESULT ( STDMETHODCALLTYPE *GetFilter )( __RPC__in IVsContextualIntellisenseFilterProvider * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [out] */ __RPC__deref_out_opt IVsContextualIntellisenseFilter **ppFilter); END_INTERFACE } IVsContextualIntellisenseFilterProviderVtbl; interface IVsContextualIntellisenseFilterProvider { CONST_VTBL struct IVsContextualIntellisenseFilterProviderVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsContextualIntellisenseFilterProvider_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsContextualIntellisenseFilterProvider_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsContextualIntellisenseFilterProvider_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsContextualIntellisenseFilterProvider_GetFilter(This,pHierarchy,ppFilter) \ ( (This)->lpVtbl -> GetFilter(This,pHierarchy,ppFilter) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsContextualIntellisenseFilterProvider_INTERFACE_DEFINED__ */ #ifndef __IVsToolboxActiveUserHook_INTERFACE_DEFINED__ #define __IVsToolboxActiveUserHook_INTERFACE_DEFINED__ /* interface IVsToolboxActiveUserHook */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsToolboxActiveUserHook; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("A00C298A-6520-4822-ABD8-C5CD03846599") IVsToolboxActiveUserHook : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE InterceptDataObject( /* [in] */ __RPC__in_opt IDataObject *pIn, /* [out] */ __RPC__deref_out_opt IDataObject **ppOut) = 0; virtual HRESULT STDMETHODCALLTYPE ToolboxSelectionChanged( /* [in] */ __RPC__in_opt IDataObject *pSelected) = 0; }; #else /* C style interface */ typedef struct IVsToolboxActiveUserHookVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsToolboxActiveUserHook * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsToolboxActiveUserHook * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsToolboxActiveUserHook * This); HRESULT ( STDMETHODCALLTYPE *InterceptDataObject )( __RPC__in IVsToolboxActiveUserHook * This, /* [in] */ __RPC__in_opt IDataObject *pIn, /* [out] */ __RPC__deref_out_opt IDataObject **ppOut); HRESULT ( STDMETHODCALLTYPE *ToolboxSelectionChanged )( __RPC__in IVsToolboxActiveUserHook * This, /* [in] */ __RPC__in_opt IDataObject *pSelected); END_INTERFACE } IVsToolboxActiveUserHookVtbl; interface IVsToolboxActiveUserHook { CONST_VTBL struct IVsToolboxActiveUserHookVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsToolboxActiveUserHook_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsToolboxActiveUserHook_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsToolboxActiveUserHook_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsToolboxActiveUserHook_InterceptDataObject(This,pIn,ppOut) \ ( (This)->lpVtbl -> InterceptDataObject(This,pIn,ppOut) ) #define IVsToolboxActiveUserHook_ToolboxSelectionChanged(This,pSelected) \ ( (This)->lpVtbl -> ToolboxSelectionChanged(This,pSelected) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsToolboxActiveUserHook_INTERFACE_DEFINED__ */ #ifndef __IVsDefaultToolboxTabState_INTERFACE_DEFINED__ #define __IVsDefaultToolboxTabState_INTERFACE_DEFINED__ /* interface IVsDefaultToolboxTabState */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsDefaultToolboxTabState; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("1749A33B-2099-4a22-B32A-E96ADD887142") IVsDefaultToolboxTabState : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetDefaultTabExpansion( /* [in] */ __RPC__in LPCOLESTR pszTabID, /* [out] */ __RPC__out BOOL *pfExpanded) = 0; }; #else /* C style interface */ typedef struct IVsDefaultToolboxTabStateVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsDefaultToolboxTabState * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsDefaultToolboxTabState * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsDefaultToolboxTabState * This); HRESULT ( STDMETHODCALLTYPE *GetDefaultTabExpansion )( __RPC__in IVsDefaultToolboxTabState * This, /* [in] */ __RPC__in LPCOLESTR pszTabID, /* [out] */ __RPC__out BOOL *pfExpanded); END_INTERFACE } IVsDefaultToolboxTabStateVtbl; interface IVsDefaultToolboxTabState { CONST_VTBL struct IVsDefaultToolboxTabStateVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsDefaultToolboxTabState_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsDefaultToolboxTabState_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsDefaultToolboxTabState_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsDefaultToolboxTabState_GetDefaultTabExpansion(This,pszTabID,pfExpanded) \ ( (This)->lpVtbl -> GetDefaultTabExpansion(This,pszTabID,pfExpanded) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsDefaultToolboxTabState_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0136 */ /* [local] */ enum __VSPROFILEPATHRESOLVERFLAGS { VSPPR_None = 0, VSPPR_OnlyForProfiles = 0x1 } ; typedef DWORD VSPROFILEPATHRESOLVERFLAGS; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0136_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0136_v0_0_s_ifspec; #ifndef __IVsPathVariableResolver_INTERFACE_DEFINED__ #define __IVsPathVariableResolver_INTERFACE_DEFINED__ /* interface IVsPathVariableResolver */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsPathVariableResolver; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("17A4EF87-4472-47f6-B066-FE96036678D0") IVsPathVariableResolver : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE ResolvePath( /* [in] */ __RPC__in LPCOLESTR strEncodedPath, /* [in] */ VSPROFILEPATHRESOLVERFLAGS dwFlags, /* [out] */ __RPC__deref_out_opt BSTR *pbstrPath) = 0; virtual HRESULT STDMETHODCALLTYPE EncodePath( /* [in] */ __RPC__in LPCOLESTR strPath, /* [in] */ VSPROFILEPATHRESOLVERFLAGS dwFlags, /* [out] */ __RPC__deref_out_opt BSTR *pbstrEncodedPath) = 0; }; #else /* C style interface */ typedef struct IVsPathVariableResolverVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsPathVariableResolver * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsPathVariableResolver * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsPathVariableResolver * This); HRESULT ( STDMETHODCALLTYPE *ResolvePath )( __RPC__in IVsPathVariableResolver * This, /* [in] */ __RPC__in LPCOLESTR strEncodedPath, /* [in] */ VSPROFILEPATHRESOLVERFLAGS dwFlags, /* [out] */ __RPC__deref_out_opt BSTR *pbstrPath); HRESULT ( STDMETHODCALLTYPE *EncodePath )( __RPC__in IVsPathVariableResolver * This, /* [in] */ __RPC__in LPCOLESTR strPath, /* [in] */ VSPROFILEPATHRESOLVERFLAGS dwFlags, /* [out] */ __RPC__deref_out_opt BSTR *pbstrEncodedPath); END_INTERFACE } IVsPathVariableResolverVtbl; interface IVsPathVariableResolver { CONST_VTBL struct IVsPathVariableResolverVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsPathVariableResolver_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsPathVariableResolver_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsPathVariableResolver_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsPathVariableResolver_ResolvePath(This,strEncodedPath,dwFlags,pbstrPath) \ ( (This)->lpVtbl -> ResolvePath(This,strEncodedPath,dwFlags,pbstrPath) ) #define IVsPathVariableResolver_EncodePath(This,strPath,dwFlags,pbstrEncodedPath) \ ( (This)->lpVtbl -> EncodePath(This,strPath,dwFlags,pbstrEncodedPath) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsPathVariableResolver_INTERFACE_DEFINED__ */ #ifndef __SVsPathVariableResolver_INTERFACE_DEFINED__ #define __SVsPathVariableResolver_INTERFACE_DEFINED__ /* interface SVsPathVariableResolver */ /* [object][uuid] */ EXTERN_C const IID IID_SVsPathVariableResolver; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("89DB7429-F4A4-4f26-B832-2EB963A19AAA") SVsPathVariableResolver : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsPathVariableResolverVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsPathVariableResolver * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsPathVariableResolver * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsPathVariableResolver * This); END_INTERFACE } SVsPathVariableResolverVtbl; interface SVsPathVariableResolver { CONST_VTBL struct SVsPathVariableResolverVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsPathVariableResolver_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsPathVariableResolver_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsPathVariableResolver_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsPathVariableResolver_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0138 */ /* [local] */ #define SID_SVsPathVariableResolver IID_SVsPathVariableResolver enum __VSASYNCHOPENPROJECTTYPE { AOPT_SYNCHRONOUS = 0, AOPT_ASYNCHRONOUS = 0x1 } ; typedef DWORD VSASYNCHOPENPROJECTTYPE; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0138_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0138_v0_0_s_ifspec; #ifndef __IVsProjectFactory2_INTERFACE_DEFINED__ #define __IVsProjectFactory2_INTERFACE_DEFINED__ /* interface IVsProjectFactory2 */ /* [object][version][uuid] */ EXTERN_C const IID IID_IVsProjectFactory2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("55E1A1E1-ECAC-46e0-BDE3-1E35BC68C31C") IVsProjectFactory2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetAsynchOpenProjectType( /* [retval][out] */ __RPC__out VSASYNCHOPENPROJECTTYPE *pType) = 0; }; #else /* C style interface */ typedef struct IVsProjectFactory2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsProjectFactory2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsProjectFactory2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsProjectFactory2 * This); HRESULT ( STDMETHODCALLTYPE *GetAsynchOpenProjectType )( __RPC__in IVsProjectFactory2 * This, /* [retval][out] */ __RPC__out VSASYNCHOPENPROJECTTYPE *pType); END_INTERFACE } IVsProjectFactory2Vtbl; interface IVsProjectFactory2 { CONST_VTBL struct IVsProjectFactory2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsProjectFactory2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsProjectFactory2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsProjectFactory2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsProjectFactory2_GetAsynchOpenProjectType(This,pType) \ ( (This)->lpVtbl -> GetAsynchOpenProjectType(This,pType) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsProjectFactory2_INTERFACE_DEFINED__ */ #ifndef __IVsAsynchOpenFromSccProjectEvents_INTERFACE_DEFINED__ #define __IVsAsynchOpenFromSccProjectEvents_INTERFACE_DEFINED__ /* interface IVsAsynchOpenFromSccProjectEvents */ /* [object][version][uuid] */ EXTERN_C const IID IID_IVsAsynchOpenFromSccProjectEvents; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("C31C30EF-3B22-4f02-93BB-BCDA5FA192AA") IVsAsynchOpenFromSccProjectEvents : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE OnFilesDownloaded( /* [in] */ int cFiles, /* [size_is][in] */ __RPC__in_ecount_full(cFiles) const LPCOLESTR rgpszFullPaths[ ]) = 0; virtual HRESULT STDMETHODCALLTYPE OnLoadComplete( void) = 0; virtual HRESULT STDMETHODCALLTYPE OnLoadFailed( void) = 0; }; #else /* C style interface */ typedef struct IVsAsynchOpenFromSccProjectEventsVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsAsynchOpenFromSccProjectEvents * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsAsynchOpenFromSccProjectEvents * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsAsynchOpenFromSccProjectEvents * This); HRESULT ( STDMETHODCALLTYPE *OnFilesDownloaded )( __RPC__in IVsAsynchOpenFromSccProjectEvents * This, /* [in] */ int cFiles, /* [size_is][in] */ __RPC__in_ecount_full(cFiles) const LPCOLESTR rgpszFullPaths[ ]); HRESULT ( STDMETHODCALLTYPE *OnLoadComplete )( __RPC__in IVsAsynchOpenFromSccProjectEvents * This); HRESULT ( STDMETHODCALLTYPE *OnLoadFailed )( __RPC__in IVsAsynchOpenFromSccProjectEvents * This); END_INTERFACE } IVsAsynchOpenFromSccProjectEventsVtbl; interface IVsAsynchOpenFromSccProjectEvents { CONST_VTBL struct IVsAsynchOpenFromSccProjectEventsVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsAsynchOpenFromSccProjectEvents_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsAsynchOpenFromSccProjectEvents_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsAsynchOpenFromSccProjectEvents_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsAsynchOpenFromSccProjectEvents_OnFilesDownloaded(This,cFiles,rgpszFullPaths) \ ( (This)->lpVtbl -> OnFilesDownloaded(This,cFiles,rgpszFullPaths) ) #define IVsAsynchOpenFromSccProjectEvents_OnLoadComplete(This) \ ( (This)->lpVtbl -> OnLoadComplete(This) ) #define IVsAsynchOpenFromSccProjectEvents_OnLoadFailed(This) \ ( (This)->lpVtbl -> OnLoadFailed(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsAsynchOpenFromSccProjectEvents_INTERFACE_DEFINED__ */ #ifndef __IVsAsynchOpenFromScc_INTERFACE_DEFINED__ #define __IVsAsynchOpenFromScc_INTERFACE_DEFINED__ /* interface IVsAsynchOpenFromScc */ /* [object][version][uuid] */ EXTERN_C const IID IID_IVsAsynchOpenFromScc; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("99871A31-DB02-4da9-98FB-89D8EDC700CE") IVsAsynchOpenFromScc : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE LoadProjectAsynchronously( /* [in] */ __RPC__in LPCOLESTR lpszProjectPath, /* [out] */ __RPC__out BOOL *pReturnValue) = 0; virtual HRESULT STDMETHODCALLTYPE LoadProject( /* [in] */ __RPC__in LPCOLESTR lpszProjectPath) = 0; virtual HRESULT STDMETHODCALLTYPE IsLoadingContent( /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [out] */ __RPC__out BOOL *pfIsLoading) = 0; }; #else /* C style interface */ typedef struct IVsAsynchOpenFromSccVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsAsynchOpenFromScc * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsAsynchOpenFromScc * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsAsynchOpenFromScc * This); HRESULT ( STDMETHODCALLTYPE *LoadProjectAsynchronously )( __RPC__in IVsAsynchOpenFromScc * This, /* [in] */ __RPC__in LPCOLESTR lpszProjectPath, /* [out] */ __RPC__out BOOL *pReturnValue); HRESULT ( STDMETHODCALLTYPE *LoadProject )( __RPC__in IVsAsynchOpenFromScc * This, /* [in] */ __RPC__in LPCOLESTR lpszProjectPath); HRESULT ( STDMETHODCALLTYPE *IsLoadingContent )( __RPC__in IVsAsynchOpenFromScc * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHierarchy, /* [out] */ __RPC__out BOOL *pfIsLoading); END_INTERFACE } IVsAsynchOpenFromSccVtbl; interface IVsAsynchOpenFromScc { CONST_VTBL struct IVsAsynchOpenFromSccVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsAsynchOpenFromScc_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsAsynchOpenFromScc_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsAsynchOpenFromScc_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsAsynchOpenFromScc_LoadProjectAsynchronously(This,lpszProjectPath,pReturnValue) \ ( (This)->lpVtbl -> LoadProjectAsynchronously(This,lpszProjectPath,pReturnValue) ) #define IVsAsynchOpenFromScc_LoadProject(This,lpszProjectPath) \ ( (This)->lpVtbl -> LoadProject(This,lpszProjectPath) ) #define IVsAsynchOpenFromScc_IsLoadingContent(This,pHierarchy,pfIsLoading) \ ( (This)->lpVtbl -> IsLoadingContent(This,pHierarchy,pfIsLoading) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsAsynchOpenFromScc_INTERFACE_DEFINED__ */ #ifndef __IVsHierarchyDeleteHandler2_INTERFACE_DEFINED__ #define __IVsHierarchyDeleteHandler2_INTERFACE_DEFINED__ /* interface IVsHierarchyDeleteHandler2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsHierarchyDeleteHandler2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("78FD1CBD-387B-4262-BD7B-65C34F86356E") IVsHierarchyDeleteHandler2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE ShowSpecificDeleteRemoveMessage( /* [in] */ DWORD dwDelItemOps, /* [in] */ ULONG cDelItems, /* [size_is][in] */ __RPC__in_ecount_full(cDelItems) VSITEMID rgDelItems[ ], /* [out] */ __RPC__out BOOL *pfShowStandardMessage, /* [out] */ __RPC__out VSDELETEITEMOPERATION *pdwDelItemOp) = 0; virtual HRESULT STDMETHODCALLTYPE ShowMultiSelDeleteOrRemoveMessage( /* [in] */ VSDELETEITEMOPERATION dwDelItemOp, /* [in] */ ULONG cDelItems, /* [size_is][in] */ __RPC__in_ecount_full(cDelItems) VSITEMID rgDelItems[ ], /* [out] */ __RPC__out BOOL *pfCancelOperation) = 0; }; #else /* C style interface */ typedef struct IVsHierarchyDeleteHandler2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsHierarchyDeleteHandler2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsHierarchyDeleteHandler2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsHierarchyDeleteHandler2 * This); HRESULT ( STDMETHODCALLTYPE *ShowSpecificDeleteRemoveMessage )( __RPC__in IVsHierarchyDeleteHandler2 * This, /* [in] */ DWORD dwDelItemOps, /* [in] */ ULONG cDelItems, /* [size_is][in] */ __RPC__in_ecount_full(cDelItems) VSITEMID rgDelItems[ ], /* [out] */ __RPC__out BOOL *pfShowStandardMessage, /* [out] */ __RPC__out VSDELETEITEMOPERATION *pdwDelItemOp); HRESULT ( STDMETHODCALLTYPE *ShowMultiSelDeleteOrRemoveMessage )( __RPC__in IVsHierarchyDeleteHandler2 * This, /* [in] */ VSDELETEITEMOPERATION dwDelItemOp, /* [in] */ ULONG cDelItems, /* [size_is][in] */ __RPC__in_ecount_full(cDelItems) VSITEMID rgDelItems[ ], /* [out] */ __RPC__out BOOL *pfCancelOperation); END_INTERFACE } IVsHierarchyDeleteHandler2Vtbl; interface IVsHierarchyDeleteHandler2 { CONST_VTBL struct IVsHierarchyDeleteHandler2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsHierarchyDeleteHandler2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsHierarchyDeleteHandler2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsHierarchyDeleteHandler2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsHierarchyDeleteHandler2_ShowSpecificDeleteRemoveMessage(This,dwDelItemOps,cDelItems,rgDelItems,pfShowStandardMessage,pdwDelItemOp) \ ( (This)->lpVtbl -> ShowSpecificDeleteRemoveMessage(This,dwDelItemOps,cDelItems,rgDelItems,pfShowStandardMessage,pdwDelItemOp) ) #define IVsHierarchyDeleteHandler2_ShowMultiSelDeleteOrRemoveMessage(This,dwDelItemOp,cDelItems,rgDelItems,pfCancelOperation) \ ( (This)->lpVtbl -> ShowMultiSelDeleteOrRemoveMessage(This,dwDelItemOp,cDelItems,rgDelItems,pfCancelOperation) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsHierarchyDeleteHandler2_INTERFACE_DEFINED__ */ #ifndef __IVsToolbox3_INTERFACE_DEFINED__ #define __IVsToolbox3_INTERFACE_DEFINED__ /* interface IVsToolbox3 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsToolbox3; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("5C67B771-43AD-4bcf-9342-E82CF8E4CBFD") IVsToolbox3 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE SetIDOfTab( /* [in] */ __RPC__in LPCOLESTR lpszTabName, /* [in] */ __RPC__in LPCOLESTR lpszTabID) = 0; virtual HRESULT STDMETHODCALLTYPE GetIDOfTab( /* [in] */ __RPC__in LPCOLESTR lpszTabName, /* [out] */ __RPC__deref_out_opt BSTR *pbstrTabID) = 0; virtual HRESULT STDMETHODCALLTYPE GetTabOfID( /* [in] */ __RPC__in LPCOLESTR lpszTabID, /* [out] */ __RPC__deref_out_opt BSTR *pbstrTabName) = 0; virtual HRESULT STDMETHODCALLTYPE GetGeneralTabID( /* [out] */ __RPC__deref_out_opt BSTR *pbstrTabID) = 0; virtual HRESULT STDMETHODCALLTYPE GetItemID( /* [in] */ __RPC__in_opt IDataObject *pDO, /* [out] */ __RPC__deref_out_opt BSTR *pbstrID) = 0; virtual HRESULT STDMETHODCALLTYPE GetItemDisplayName( /* [in] */ __RPC__in_opt IDataObject *pDO, /* [out] */ __RPC__deref_out_opt BSTR *pbstrName) = 0; virtual HRESULT STDMETHODCALLTYPE GetLastModifiedTime( /* [out] */ __RPC__out SYSTEMTIME *pst) = 0; }; #else /* C style interface */ typedef struct IVsToolbox3Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsToolbox3 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsToolbox3 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsToolbox3 * This); HRESULT ( STDMETHODCALLTYPE *SetIDOfTab )( __RPC__in IVsToolbox3 * This, /* [in] */ __RPC__in LPCOLESTR lpszTabName, /* [in] */ __RPC__in LPCOLESTR lpszTabID); HRESULT ( STDMETHODCALLTYPE *GetIDOfTab )( __RPC__in IVsToolbox3 * This, /* [in] */ __RPC__in LPCOLESTR lpszTabName, /* [out] */ __RPC__deref_out_opt BSTR *pbstrTabID); HRESULT ( STDMETHODCALLTYPE *GetTabOfID )( __RPC__in IVsToolbox3 * This, /* [in] */ __RPC__in LPCOLESTR lpszTabID, /* [out] */ __RPC__deref_out_opt BSTR *pbstrTabName); HRESULT ( STDMETHODCALLTYPE *GetGeneralTabID )( __RPC__in IVsToolbox3 * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrTabID); HRESULT ( STDMETHODCALLTYPE *GetItemID )( __RPC__in IVsToolbox3 * This, /* [in] */ __RPC__in_opt IDataObject *pDO, /* [out] */ __RPC__deref_out_opt BSTR *pbstrID); HRESULT ( STDMETHODCALLTYPE *GetItemDisplayName )( __RPC__in IVsToolbox3 * This, /* [in] */ __RPC__in_opt IDataObject *pDO, /* [out] */ __RPC__deref_out_opt BSTR *pbstrName); HRESULT ( STDMETHODCALLTYPE *GetLastModifiedTime )( __RPC__in IVsToolbox3 * This, /* [out] */ __RPC__out SYSTEMTIME *pst); END_INTERFACE } IVsToolbox3Vtbl; interface IVsToolbox3 { CONST_VTBL struct IVsToolbox3Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsToolbox3_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsToolbox3_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsToolbox3_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsToolbox3_SetIDOfTab(This,lpszTabName,lpszTabID) \ ( (This)->lpVtbl -> SetIDOfTab(This,lpszTabName,lpszTabID) ) #define IVsToolbox3_GetIDOfTab(This,lpszTabName,pbstrTabID) \ ( (This)->lpVtbl -> GetIDOfTab(This,lpszTabName,pbstrTabID) ) #define IVsToolbox3_GetTabOfID(This,lpszTabID,pbstrTabName) \ ( (This)->lpVtbl -> GetTabOfID(This,lpszTabID,pbstrTabName) ) #define IVsToolbox3_GetGeneralTabID(This,pbstrTabID) \ ( (This)->lpVtbl -> GetGeneralTabID(This,pbstrTabID) ) #define IVsToolbox3_GetItemID(This,pDO,pbstrID) \ ( (This)->lpVtbl -> GetItemID(This,pDO,pbstrID) ) #define IVsToolbox3_GetItemDisplayName(This,pDO,pbstrName) \ ( (This)->lpVtbl -> GetItemDisplayName(This,pDO,pbstrName) ) #define IVsToolbox3_GetLastModifiedTime(This,pst) \ ( (This)->lpVtbl -> GetLastModifiedTime(This,pst) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsToolbox3_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0143 */ /* [local] */ #define lpszToolboxTipFieldName ( L"Name" ) #define lpszToolboxTipFieldVersion ( L"Version" ) #define lpszToolboxTipFieldCompany ( L"Company" ) #define lpszToolboxTipFieldComponentType ( L"ComponentType" ) #define lpszToolboxTipFieldDescription ( L"Description" ) extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0143_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0143_v0_0_s_ifspec; #ifndef __IVsToolboxDataProvider2_INTERFACE_DEFINED__ #define __IVsToolboxDataProvider2_INTERFACE_DEFINED__ /* interface IVsToolboxDataProvider2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsToolboxDataProvider2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("1CD73232-A3C7-48fa-8B0A-2E35804097BF") IVsToolboxDataProvider2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetPackageGUID( /* [out] */ __RPC__out GUID *pguidPkg) = 0; virtual HRESULT STDMETHODCALLTYPE GetUniqueID( /* [out] */ __RPC__out GUID *pguidID) = 0; virtual HRESULT STDMETHODCALLTYPE GetDisplayName( /* [out] */ __RPC__deref_out_opt BSTR *pbstrName) = 0; virtual HRESULT STDMETHODCALLTYPE GetItemTipInfo( /* [in] */ __RPC__in_opt IDataObject *pDO, /* [in] */ __RPC__in LPCOLESTR lpszCurrentName, /* [in] */ __RPC__in_opt IPropertyBag *pStrings) = 0; virtual HRESULT STDMETHODCALLTYPE GetProfileData( /* [in] */ __RPC__in_opt IDataObject *pDO, /* [out] */ __RPC__deref_out_opt BSTR *pbstrData) = 0; virtual HRESULT STDMETHODCALLTYPE GetItemID( /* [in] */ __RPC__in_opt IDataObject *pDO, /* [out] */ __RPC__deref_out_opt BSTR *pbstrID) = 0; virtual HRESULT STDMETHODCALLTYPE ReconstituteItem( /* [in] */ __RPC__in LPCOLESTR lpszCurrentName, /* [in] */ __RPC__in LPCOLESTR lpszID, /* [in] */ __RPC__in LPCOLESTR lpszData, /* [out] */ __RPC__deref_out_opt IDataObject **ppDO, /* [out] */ __RPC__out TBXITEMINFO *ptif) = 0; }; #else /* C style interface */ typedef struct IVsToolboxDataProvider2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsToolboxDataProvider2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsToolboxDataProvider2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsToolboxDataProvider2 * This); HRESULT ( STDMETHODCALLTYPE *GetPackageGUID )( __RPC__in IVsToolboxDataProvider2 * This, /* [out] */ __RPC__out GUID *pguidPkg); HRESULT ( STDMETHODCALLTYPE *GetUniqueID )( __RPC__in IVsToolboxDataProvider2 * This, /* [out] */ __RPC__out GUID *pguidID); HRESULT ( STDMETHODCALLTYPE *GetDisplayName )( __RPC__in IVsToolboxDataProvider2 * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrName); HRESULT ( STDMETHODCALLTYPE *GetItemTipInfo )( __RPC__in IVsToolboxDataProvider2 * This, /* [in] */ __RPC__in_opt IDataObject *pDO, /* [in] */ __RPC__in LPCOLESTR lpszCurrentName, /* [in] */ __RPC__in_opt IPropertyBag *pStrings); HRESULT ( STDMETHODCALLTYPE *GetProfileData )( __RPC__in IVsToolboxDataProvider2 * This, /* [in] */ __RPC__in_opt IDataObject *pDO, /* [out] */ __RPC__deref_out_opt BSTR *pbstrData); HRESULT ( STDMETHODCALLTYPE *GetItemID )( __RPC__in IVsToolboxDataProvider2 * This, /* [in] */ __RPC__in_opt IDataObject *pDO, /* [out] */ __RPC__deref_out_opt BSTR *pbstrID); HRESULT ( STDMETHODCALLTYPE *ReconstituteItem )( __RPC__in IVsToolboxDataProvider2 * This, /* [in] */ __RPC__in LPCOLESTR lpszCurrentName, /* [in] */ __RPC__in LPCOLESTR lpszID, /* [in] */ __RPC__in LPCOLESTR lpszData, /* [out] */ __RPC__deref_out_opt IDataObject **ppDO, /* [out] */ __RPC__out TBXITEMINFO *ptif); END_INTERFACE } IVsToolboxDataProvider2Vtbl; interface IVsToolboxDataProvider2 { CONST_VTBL struct IVsToolboxDataProvider2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsToolboxDataProvider2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsToolboxDataProvider2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsToolboxDataProvider2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsToolboxDataProvider2_GetPackageGUID(This,pguidPkg) \ ( (This)->lpVtbl -> GetPackageGUID(This,pguidPkg) ) #define IVsToolboxDataProvider2_GetUniqueID(This,pguidID) \ ( (This)->lpVtbl -> GetUniqueID(This,pguidID) ) #define IVsToolboxDataProvider2_GetDisplayName(This,pbstrName) \ ( (This)->lpVtbl -> GetDisplayName(This,pbstrName) ) #define IVsToolboxDataProvider2_GetItemTipInfo(This,pDO,lpszCurrentName,pStrings) \ ( (This)->lpVtbl -> GetItemTipInfo(This,pDO,lpszCurrentName,pStrings) ) #define IVsToolboxDataProvider2_GetProfileData(This,pDO,pbstrData) \ ( (This)->lpVtbl -> GetProfileData(This,pDO,pbstrData) ) #define IVsToolboxDataProvider2_GetItemID(This,pDO,pbstrID) \ ( (This)->lpVtbl -> GetItemID(This,pDO,pbstrID) ) #define IVsToolboxDataProvider2_ReconstituteItem(This,lpszCurrentName,lpszID,lpszData,ppDO,ptif) \ ( (This)->lpVtbl -> ReconstituteItem(This,lpszCurrentName,lpszID,lpszData,ppDO,ptif) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsToolboxDataProvider2_INTERFACE_DEFINED__ */ #ifndef __IVsResourceManager_INTERFACE_DEFINED__ #define __IVsResourceManager_INTERFACE_DEFINED__ /* interface IVsResourceManager */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsResourceManager; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("F0D7A6F0-C722-4AB6-A5D9-C7FF13027410") IVsResourceManager : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE LoadResourceString( /* [in] */ __RPC__in REFGUID guidPackage, /* [in] */ int culture, /* [string][in] */ __RPC__in_string LPCOLESTR pszResourceName, /* [retval][out] */ __RPC__deref_out_opt BSTR *pbstrValue) = 0; virtual /* [local] */ HRESULT STDMETHODCALLTYPE LoadResourceBitmap( /* [in] */ REFGUID guidPackage, /* [in] */ int culture, /* [string][in] */ LPCOLESTR pszResourceName, /* [retval][out] */ HBITMAP *hbmpValue) = 0; virtual /* [local] */ HRESULT STDMETHODCALLTYPE LoadResourceIcon( /* [in] */ REFGUID guidPackage, /* [in] */ int culture, /* [string][in] */ LPCOLESTR pszResourceName, /* [in] */ int cx, /* [in] */ int cy, /* [retval][out] */ HICON *hicoValue) = 0; virtual HRESULT STDMETHODCALLTYPE LoadResourceBlob( /* [in] */ __RPC__in REFGUID guidPackage, /* [in] */ int culture, /* [string][in] */ __RPC__in_string LPCOLESTR pszResourceName, /* [out] */ __RPC__deref_out_opt BYTE **pBytes, /* [out] */ __RPC__out long *lAllocated) = 0; virtual HRESULT STDMETHODCALLTYPE LoadResourceString2( /* [string][in] */ __RPC__in_string LPCOLESTR pszAssemblyPath, /* [in] */ int culture, /* [string][in] */ __RPC__in_string LPCOLESTR pszResourceName, /* [retval][out] */ __RPC__deref_out_opt BSTR *pbstrValue) = 0; virtual /* [local] */ HRESULT STDMETHODCALLTYPE LoadResourceBitmap2( /* [string][in] */ LPCOLESTR pszAssemblyPath, /* [in] */ int culture, /* [string][in] */ LPCOLESTR szResourceName, /* [retval][out] */ HBITMAP *hbmpValue) = 0; virtual /* [local] */ HRESULT STDMETHODCALLTYPE LoadResourceIcon2( /* [string][in] */ LPCOLESTR pszAssemblyPath, /* [in] */ int culture, /* [string][in] */ LPCOLESTR pszResourceName, /* [in] */ int cx, /* [in] */ int cy, /* [retval][out] */ HICON *hicoValue) = 0; virtual HRESULT STDMETHODCALLTYPE LoadResourceBlob2( /* [string][in] */ __RPC__in_string LPCOLESTR pszAssemblyPath, /* [in] */ int culture, /* [string][in] */ __RPC__in_string LPCOLESTR pszResourceName, /* [out] */ __RPC__deref_out_opt BYTE **pBytes, /* [out] */ __RPC__out long *lAllocated) = 0; virtual HRESULT STDMETHODCALLTYPE GetSatelliteAssemblyPath( /* [string][in] */ __RPC__in_string LPCOLESTR assemblyPath, /* [in] */ int lcid, /* [retval][out] */ __RPC__deref_out_opt BSTR *pbstrPath) = 0; }; #else /* C style interface */ typedef struct IVsResourceManagerVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsResourceManager * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsResourceManager * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsResourceManager * This); HRESULT ( STDMETHODCALLTYPE *LoadResourceString )( __RPC__in IVsResourceManager * This, /* [in] */ __RPC__in REFGUID guidPackage, /* [in] */ int culture, /* [string][in] */ __RPC__in_string LPCOLESTR pszResourceName, /* [retval][out] */ __RPC__deref_out_opt BSTR *pbstrValue); /* [local] */ HRESULT ( STDMETHODCALLTYPE *LoadResourceBitmap )( IVsResourceManager * This, /* [in] */ REFGUID guidPackage, /* [in] */ int culture, /* [string][in] */ LPCOLESTR pszResourceName, /* [retval][out] */ HBITMAP *hbmpValue); /* [local] */ HRESULT ( STDMETHODCALLTYPE *LoadResourceIcon )( IVsResourceManager * This, /* [in] */ REFGUID guidPackage, /* [in] */ int culture, /* [string][in] */ LPCOLESTR pszResourceName, /* [in] */ int cx, /* [in] */ int cy, /* [retval][out] */ HICON *hicoValue); HRESULT ( STDMETHODCALLTYPE *LoadResourceBlob )( __RPC__in IVsResourceManager * This, /* [in] */ __RPC__in REFGUID guidPackage, /* [in] */ int culture, /* [string][in] */ __RPC__in_string LPCOLESTR pszResourceName, /* [out] */ __RPC__deref_out_opt BYTE **pBytes, /* [out] */ __RPC__out long *lAllocated); HRESULT ( STDMETHODCALLTYPE *LoadResourceString2 )( __RPC__in IVsResourceManager * This, /* [string][in] */ __RPC__in_string LPCOLESTR pszAssemblyPath, /* [in] */ int culture, /* [string][in] */ __RPC__in_string LPCOLESTR pszResourceName, /* [retval][out] */ __RPC__deref_out_opt BSTR *pbstrValue); /* [local] */ HRESULT ( STDMETHODCALLTYPE *LoadResourceBitmap2 )( IVsResourceManager * This, /* [string][in] */ LPCOLESTR pszAssemblyPath, /* [in] */ int culture, /* [string][in] */ LPCOLESTR szResourceName, /* [retval][out] */ HBITMAP *hbmpValue); /* [local] */ HRESULT ( STDMETHODCALLTYPE *LoadResourceIcon2 )( IVsResourceManager * This, /* [string][in] */ LPCOLESTR pszAssemblyPath, /* [in] */ int culture, /* [string][in] */ LPCOLESTR pszResourceName, /* [in] */ int cx, /* [in] */ int cy, /* [retval][out] */ HICON *hicoValue); HRESULT ( STDMETHODCALLTYPE *LoadResourceBlob2 )( __RPC__in IVsResourceManager * This, /* [string][in] */ __RPC__in_string LPCOLESTR pszAssemblyPath, /* [in] */ int culture, /* [string][in] */ __RPC__in_string LPCOLESTR pszResourceName, /* [out] */ __RPC__deref_out_opt BYTE **pBytes, /* [out] */ __RPC__out long *lAllocated); HRESULT ( STDMETHODCALLTYPE *GetSatelliteAssemblyPath )( __RPC__in IVsResourceManager * This, /* [string][in] */ __RPC__in_string LPCOLESTR assemblyPath, /* [in] */ int lcid, /* [retval][out] */ __RPC__deref_out_opt BSTR *pbstrPath); END_INTERFACE } IVsResourceManagerVtbl; interface IVsResourceManager { CONST_VTBL struct IVsResourceManagerVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsResourceManager_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsResourceManager_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsResourceManager_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsResourceManager_LoadResourceString(This,guidPackage,culture,pszResourceName,pbstrValue) \ ( (This)->lpVtbl -> LoadResourceString(This,guidPackage,culture,pszResourceName,pbstrValue) ) #define IVsResourceManager_LoadResourceBitmap(This,guidPackage,culture,pszResourceName,hbmpValue) \ ( (This)->lpVtbl -> LoadResourceBitmap(This,guidPackage,culture,pszResourceName,hbmpValue) ) #define IVsResourceManager_LoadResourceIcon(This,guidPackage,culture,pszResourceName,cx,cy,hicoValue) \ ( (This)->lpVtbl -> LoadResourceIcon(This,guidPackage,culture,pszResourceName,cx,cy,hicoValue) ) #define IVsResourceManager_LoadResourceBlob(This,guidPackage,culture,pszResourceName,pBytes,lAllocated) \ ( (This)->lpVtbl -> LoadResourceBlob(This,guidPackage,culture,pszResourceName,pBytes,lAllocated) ) #define IVsResourceManager_LoadResourceString2(This,pszAssemblyPath,culture,pszResourceName,pbstrValue) \ ( (This)->lpVtbl -> LoadResourceString2(This,pszAssemblyPath,culture,pszResourceName,pbstrValue) ) #define IVsResourceManager_LoadResourceBitmap2(This,pszAssemblyPath,culture,szResourceName,hbmpValue) \ ( (This)->lpVtbl -> LoadResourceBitmap2(This,pszAssemblyPath,culture,szResourceName,hbmpValue) ) #define IVsResourceManager_LoadResourceIcon2(This,pszAssemblyPath,culture,pszResourceName,cx,cy,hicoValue) \ ( (This)->lpVtbl -> LoadResourceIcon2(This,pszAssemblyPath,culture,pszResourceName,cx,cy,hicoValue) ) #define IVsResourceManager_LoadResourceBlob2(This,pszAssemblyPath,culture,pszResourceName,pBytes,lAllocated) \ ( (This)->lpVtbl -> LoadResourceBlob2(This,pszAssemblyPath,culture,pszResourceName,pBytes,lAllocated) ) #define IVsResourceManager_GetSatelliteAssemblyPath(This,assemblyPath,lcid,pbstrPath) \ ( (This)->lpVtbl -> GetSatelliteAssemblyPath(This,assemblyPath,lcid,pbstrPath) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsResourceManager_INTERFACE_DEFINED__ */ #ifndef __SVsResourceManager_INTERFACE_DEFINED__ #define __SVsResourceManager_INTERFACE_DEFINED__ /* interface SVsResourceManager */ /* [object][uuid] */ EXTERN_C const IID IID_SVsResourceManager; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("E9706EF6-4F76-4c6e-8BF0-6E448550470B") SVsResourceManager : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsResourceManagerVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsResourceManager * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsResourceManager * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsResourceManager * This); END_INTERFACE } SVsResourceManagerVtbl; interface SVsResourceManager { CONST_VTBL struct SVsResourceManagerVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsResourceManager_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsResourceManager_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsResourceManager_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsResourceManager_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0146 */ /* [local] */ #define SID_SVsResourceManager IID_SVsResourceManager enum __VSADDNEWWEBITEMOPTIONS { VSADDWEBITEM_SelectMaster = 0x1, VSADDWEBITEM_SeparateCodeFile = 0x2, VSADDWEBITEM_SelectMasterIsValid = 0x80000000, VSADDWEBITEM_SeparateCodeFileIsValid = 0x40000000, VSADDWEBITEM_IsValidMask = 0xf0000000 } ; typedef DWORD VSADDNEWWEBITEMOPTIONS; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0146_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0146_v0_0_s_ifspec; #ifndef __IVsAddNewWebProjectItemDlg_INTERFACE_DEFINED__ #define __IVsAddNewWebProjectItemDlg_INTERFACE_DEFINED__ /* interface IVsAddNewWebProjectItemDlg */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsAddNewWebProjectItemDlg; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("41F92AB8-98B0-4cf4-907B-C5CE4403A570") IVsAddNewWebProjectItemDlg : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE AddNewWebProjectItemDlg( /* [in] */ VSITEMID itemidLoc, /* [in] */ __RPC__in REFGUID rguidProject, /* [in] */ __RPC__in_opt IVsProject *pProject, /* [in] */ __RPC__in LPCOLESTR pszDlgTitle, /* [in] */ __RPC__in LPCOLESTR lpszHelpTopic, /* [in] */ __RPC__in LPCOLESTR lpszLanguage, /* [in] */ __RPC__in LPCOLESTR lpszSelect, /* [in] */ VSADDNEWWEBITEMOPTIONS options) = 0; }; #else /* C style interface */ typedef struct IVsAddNewWebProjectItemDlgVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsAddNewWebProjectItemDlg * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsAddNewWebProjectItemDlg * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsAddNewWebProjectItemDlg * This); HRESULT ( STDMETHODCALLTYPE *AddNewWebProjectItemDlg )( __RPC__in IVsAddNewWebProjectItemDlg * This, /* [in] */ VSITEMID itemidLoc, /* [in] */ __RPC__in REFGUID rguidProject, /* [in] */ __RPC__in_opt IVsProject *pProject, /* [in] */ __RPC__in LPCOLESTR pszDlgTitle, /* [in] */ __RPC__in LPCOLESTR lpszHelpTopic, /* [in] */ __RPC__in LPCOLESTR lpszLanguage, /* [in] */ __RPC__in LPCOLESTR lpszSelect, /* [in] */ VSADDNEWWEBITEMOPTIONS options); END_INTERFACE } IVsAddNewWebProjectItemDlgVtbl; interface IVsAddNewWebProjectItemDlg { CONST_VTBL struct IVsAddNewWebProjectItemDlgVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsAddNewWebProjectItemDlg_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsAddNewWebProjectItemDlg_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsAddNewWebProjectItemDlg_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsAddNewWebProjectItemDlg_AddNewWebProjectItemDlg(This,itemidLoc,rguidProject,pProject,pszDlgTitle,lpszHelpTopic,lpszLanguage,lpszSelect,options) \ ( (This)->lpVtbl -> AddNewWebProjectItemDlg(This,itemidLoc,rguidProject,pProject,pszDlgTitle,lpszHelpTopic,lpszLanguage,lpszSelect,options) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsAddNewWebProjectItemDlg_INTERFACE_DEFINED__ */ #ifndef __IVsWebProject_INTERFACE_DEFINED__ #define __IVsWebProject_INTERFACE_DEFINED__ /* interface IVsWebProject */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsWebProject; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("0BD8000A-F537-4889-9FBC-C5F63B313956") IVsWebProject : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE AddNewWebItem( /* [in] */ VSITEMID itemidLoc, /* [in] */ VSADDITEMOPERATION dwAddItemOperation, /* [in] */ __RPC__in LPCOLESTR pszItemName, /* [in] */ __RPC__in LPCOLESTR pszFileTemplate, /* [in] */ VSADDNEWWEBITEMOPTIONS options, /* [in] */ __RPC__in LPCOLESTR pszSelectedLanguage, /* [in] */ __RPC__in HWND hwndDlgOwner, /* [retval][out] */ __RPC__out VSADDRESULT *pResult) = 0; }; #else /* C style interface */ typedef struct IVsWebProjectVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsWebProject * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsWebProject * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsWebProject * This); HRESULT ( STDMETHODCALLTYPE *AddNewWebItem )( __RPC__in IVsWebProject * This, /* [in] */ VSITEMID itemidLoc, /* [in] */ VSADDITEMOPERATION dwAddItemOperation, /* [in] */ __RPC__in LPCOLESTR pszItemName, /* [in] */ __RPC__in LPCOLESTR pszFileTemplate, /* [in] */ VSADDNEWWEBITEMOPTIONS options, /* [in] */ __RPC__in LPCOLESTR pszSelectedLanguage, /* [in] */ __RPC__in HWND hwndDlgOwner, /* [retval][out] */ __RPC__out VSADDRESULT *pResult); END_INTERFACE } IVsWebProjectVtbl; interface IVsWebProject { CONST_VTBL struct IVsWebProjectVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsWebProject_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsWebProject_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsWebProject_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsWebProject_AddNewWebItem(This,itemidLoc,dwAddItemOperation,pszItemName,pszFileTemplate,options,pszSelectedLanguage,hwndDlgOwner,pResult) \ ( (This)->lpVtbl -> AddNewWebItem(This,itemidLoc,dwAddItemOperation,pszItemName,pszFileTemplate,options,pszSelectedLanguage,hwndDlgOwner,pResult) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsWebProject_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0148 */ /* [local] */ enum __VSHIERITEMATTRIBUTE { VSHIERITEMATTRIBUTE_Bold = 1 } ; typedef DWORD VSHIERITEMATTRIBUTE; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0148_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0148_v0_0_s_ifspec; #ifndef __IVsUIHierarchyWindow2_INTERFACE_DEFINED__ #define __IVsUIHierarchyWindow2_INTERFACE_DEFINED__ /* interface IVsUIHierarchyWindow2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsUIHierarchyWindow2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("5B8C06A0-4379-4218-A046-B1DC466E5818") IVsUIHierarchyWindow2 : public IVsUIHierarchyWindow { public: virtual HRESULT STDMETHODCALLTYPE SetItemAttribute( /* [in] */ __RPC__in_opt IVsUIHierarchy *pUIH, /* [in] */ VSITEMID itemid, /* [in] */ VSHIERITEMATTRIBUTE attribute, /* [in] */ VARIANT value) = 0; }; #else /* C style interface */ typedef struct IVsUIHierarchyWindow2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsUIHierarchyWindow2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsUIHierarchyWindow2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsUIHierarchyWindow2 * This); HRESULT ( STDMETHODCALLTYPE *Init )( __RPC__in IVsUIHierarchyWindow2 * This, /* [in] */ __RPC__in_opt IVsUIHierarchy *pUIH, /* [in] */ UIHWINFLAGS grfUIHWF, /* [out] */ __RPC__deref_out_opt IUnknown **ppunkOut); HRESULT ( STDMETHODCALLTYPE *ExpandItem )( __RPC__in IVsUIHierarchyWindow2 * This, /* [in] */ __RPC__in_opt IVsUIHierarchy *pUIH, /* [in] */ VSITEMID itemid, /* [in] */ EXPANDFLAGS expf); HRESULT ( STDMETHODCALLTYPE *AddUIHierarchy )( __RPC__in IVsUIHierarchyWindow2 * This, /* [in] */ __RPC__in_opt IVsUIHierarchy *pUIH, /* [in] */ VSADDHIEROPTIONS grfAddOptions); HRESULT ( STDMETHODCALLTYPE *RemoveUIHierarchy )( __RPC__in IVsUIHierarchyWindow2 * This, /* [in] */ __RPC__in_opt IVsUIHierarchy *pUIH); HRESULT ( STDMETHODCALLTYPE *SetWindowHelpTopic )( __RPC__in IVsUIHierarchyWindow2 * This, /* [in] */ __RPC__in LPCOLESTR lpszHelpFile, /* [in] */ DWORD dwContext); HRESULT ( STDMETHODCALLTYPE *GetItemState )( __RPC__in IVsUIHierarchyWindow2 * This, /* [in] */ __RPC__in_opt IVsUIHierarchy *pHier, /* [in] */ VSITEMID itemid, /* [in] */ VSHIERARCHYITEMSTATE dwStateMask, /* [retval][out] */ __RPC__out VSHIERARCHYITEMSTATE *pdwState); HRESULT ( STDMETHODCALLTYPE *FindCommonSelectedHierarchy )( __RPC__in IVsUIHierarchyWindow2 * This, /* [in] */ VSCOMHIEROPTIONS grfOpt, /* [retval][out] */ __RPC__deref_out_opt IVsUIHierarchy **lppCommonUIH); /* [local] */ HRESULT ( STDMETHODCALLTYPE *SetCursor )( IVsUIHierarchyWindow2 * This, /* [in] */ HCURSOR hNewCursor, /* [retval][out] */ HCURSOR *phOldCursor); HRESULT ( STDMETHODCALLTYPE *GetCurrentSelection )( __RPC__in IVsUIHierarchyWindow2 * This, /* [out] */ __RPC__deref_out_opt IVsHierarchy **ppHier, /* [out] */ __RPC__out VSITEMID *pitemid, /* [out] */ __RPC__deref_out_opt IVsMultiItemSelect **ppMIS); HRESULT ( STDMETHODCALLTYPE *SetItemAttribute )( __RPC__in IVsUIHierarchyWindow2 * This, /* [in] */ __RPC__in_opt IVsUIHierarchy *pUIH, /* [in] */ VSITEMID itemid, /* [in] */ VSHIERITEMATTRIBUTE attribute, /* [in] */ VARIANT value); END_INTERFACE } IVsUIHierarchyWindow2Vtbl; interface IVsUIHierarchyWindow2 { CONST_VTBL struct IVsUIHierarchyWindow2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsUIHierarchyWindow2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsUIHierarchyWindow2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsUIHierarchyWindow2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsUIHierarchyWindow2_Init(This,pUIH,grfUIHWF,ppunkOut) \ ( (This)->lpVtbl -> Init(This,pUIH,grfUIHWF,ppunkOut) ) #define IVsUIHierarchyWindow2_ExpandItem(This,pUIH,itemid,expf) \ ( (This)->lpVtbl -> ExpandItem(This,pUIH,itemid,expf) ) #define IVsUIHierarchyWindow2_AddUIHierarchy(This,pUIH,grfAddOptions) \ ( (This)->lpVtbl -> AddUIHierarchy(This,pUIH,grfAddOptions) ) #define IVsUIHierarchyWindow2_RemoveUIHierarchy(This,pUIH) \ ( (This)->lpVtbl -> RemoveUIHierarchy(This,pUIH) ) #define IVsUIHierarchyWindow2_SetWindowHelpTopic(This,lpszHelpFile,dwContext) \ ( (This)->lpVtbl -> SetWindowHelpTopic(This,lpszHelpFile,dwContext) ) #define IVsUIHierarchyWindow2_GetItemState(This,pHier,itemid,dwStateMask,pdwState) \ ( (This)->lpVtbl -> GetItemState(This,pHier,itemid,dwStateMask,pdwState) ) #define IVsUIHierarchyWindow2_FindCommonSelectedHierarchy(This,grfOpt,lppCommonUIH) \ ( (This)->lpVtbl -> FindCommonSelectedHierarchy(This,grfOpt,lppCommonUIH) ) #define IVsUIHierarchyWindow2_SetCursor(This,hNewCursor,phOldCursor) \ ( (This)->lpVtbl -> SetCursor(This,hNewCursor,phOldCursor) ) #define IVsUIHierarchyWindow2_GetCurrentSelection(This,ppHier,pitemid,ppMIS) \ ( (This)->lpVtbl -> GetCurrentSelection(This,ppHier,pitemid,ppMIS) ) #define IVsUIHierarchyWindow2_SetItemAttribute(This,pUIH,itemid,attribute,value) \ ( (This)->lpVtbl -> SetItemAttribute(This,pUIH,itemid,attribute,value) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsUIHierarchyWindow2_INTERFACE_DEFINED__ */ #ifndef __IVsProjectDataConnection_INTERFACE_DEFINED__ #define __IVsProjectDataConnection_INTERFACE_DEFINED__ /* interface IVsProjectDataConnection */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsProjectDataConnection; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("8E40D748-F682-4951-B465-16D0C252A69D") IVsProjectDataConnection : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetProjectSqlConnection( /* [out] */ __RPC__deref_out_opt IUnknown **pConnection) = 0; }; #else /* C style interface */ typedef struct IVsProjectDataConnectionVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsProjectDataConnection * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsProjectDataConnection * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsProjectDataConnection * This); HRESULT ( STDMETHODCALLTYPE *GetProjectSqlConnection )( __RPC__in IVsProjectDataConnection * This, /* [out] */ __RPC__deref_out_opt IUnknown **pConnection); END_INTERFACE } IVsProjectDataConnectionVtbl; interface IVsProjectDataConnection { CONST_VTBL struct IVsProjectDataConnectionVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsProjectDataConnection_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsProjectDataConnection_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsProjectDataConnection_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsProjectDataConnection_GetProjectSqlConnection(This,pConnection) \ ( (This)->lpVtbl -> GetProjectSqlConnection(This,pConnection) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsProjectDataConnection_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0150 */ /* [local] */ typedef enum __tagVSTASKLISTSELECTIONSCROLLPOS { TSSP_NOSCROLL = 0, TSSP_CENTERCARET = 1, TSSP_CARETATTOP = 2, TSSP_CARETATBOTTOM = 3, TSSP_MINSCROLL = 4, TSSP_SHOWALL = 5 } __VSTASKLISTSELECTIONSCROLLPOS; typedef DWORD VSTASKLISTSELECTIONSCROLLPOS; typedef enum __tagVSTASKLISTSELECTIONTYPE { TST_REPLACESEL = 0, TST_EXTENDSEL = 1, TST_ADDTOSEL = 2 } __VSTASKLISTSELECTIONTYPE; typedef DWORD VSTASKLISTSELECTIONTYPE; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0150_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0150_v0_0_s_ifspec; #ifndef __IVsTaskList2_INTERFACE_DEFINED__ #define __IVsTaskList2_INTERFACE_DEFINED__ /* interface IVsTaskList2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsTaskList2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("62357211-57FD-4425-A9E5-9A6E0D3B731C") IVsTaskList2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetSelectionCount( /* [out] */ __RPC__out int *pnItems) = 0; virtual HRESULT STDMETHODCALLTYPE GetCaretPos( /* [out] */ __RPC__deref_out_opt IVsTaskItem **ppItem) = 0; virtual HRESULT STDMETHODCALLTYPE EnumSelectedItems( /* [out] */ __RPC__deref_out_opt IVsEnumTaskItems **ppEnum) = 0; virtual HRESULT STDMETHODCALLTYPE SelectItems( /* [in] */ int nItems, /* [size_is][in] */ __RPC__in_ecount_full(nItems) IVsTaskItem *pItems[ ], /* [in] */ VSTASKLISTSELECTIONTYPE tsfSelType, /* [in] */ VSTASKLISTSELECTIONSCROLLPOS tsspScrollPos) = 0; virtual HRESULT STDMETHODCALLTYPE BeginTaskEdit( /* [in] */ __RPC__in_opt IVsTaskItem *pItem, /* [in] */ int iFocusField) = 0; virtual HRESULT STDMETHODCALLTYPE GetActiveProvider( /* [out] */ __RPC__deref_out_opt IVsTaskProvider **ppProvider) = 0; virtual HRESULT STDMETHODCALLTYPE SetActiveProvider( /* [in] */ __RPC__in REFGUID rguidProvider) = 0; virtual HRESULT STDMETHODCALLTYPE RefreshOrAddTasks( /* [in] */ VSCOOKIE vsProviderCookie, /* [in] */ int nTasks, /* [size_is][in] */ __RPC__in_ecount_full(nTasks) IVsTaskItem *prgTasks[ ]) = 0; virtual HRESULT STDMETHODCALLTYPE RemoveTasks( /* [in] */ VSCOOKIE vsProviderCookie, /* [in] */ int nTasks, /* [size_is][in] */ __RPC__in_ecount_full(nTasks) IVsTaskItem *prgTasks[ ]) = 0; virtual HRESULT STDMETHODCALLTYPE RefreshAllProviders( void) = 0; }; #else /* C style interface */ typedef struct IVsTaskList2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsTaskList2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsTaskList2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsTaskList2 * This); HRESULT ( STDMETHODCALLTYPE *GetSelectionCount )( __RPC__in IVsTaskList2 * This, /* [out] */ __RPC__out int *pnItems); HRESULT ( STDMETHODCALLTYPE *GetCaretPos )( __RPC__in IVsTaskList2 * This, /* [out] */ __RPC__deref_out_opt IVsTaskItem **ppItem); HRESULT ( STDMETHODCALLTYPE *EnumSelectedItems )( __RPC__in IVsTaskList2 * This, /* [out] */ __RPC__deref_out_opt IVsEnumTaskItems **ppEnum); HRESULT ( STDMETHODCALLTYPE *SelectItems )( __RPC__in IVsTaskList2 * This, /* [in] */ int nItems, /* [size_is][in] */ __RPC__in_ecount_full(nItems) IVsTaskItem *pItems[ ], /* [in] */ VSTASKLISTSELECTIONTYPE tsfSelType, /* [in] */ VSTASKLISTSELECTIONSCROLLPOS tsspScrollPos); HRESULT ( STDMETHODCALLTYPE *BeginTaskEdit )( __RPC__in IVsTaskList2 * This, /* [in] */ __RPC__in_opt IVsTaskItem *pItem, /* [in] */ int iFocusField); HRESULT ( STDMETHODCALLTYPE *GetActiveProvider )( __RPC__in IVsTaskList2 * This, /* [out] */ __RPC__deref_out_opt IVsTaskProvider **ppProvider); HRESULT ( STDMETHODCALLTYPE *SetActiveProvider )( __RPC__in IVsTaskList2 * This, /* [in] */ __RPC__in REFGUID rguidProvider); HRESULT ( STDMETHODCALLTYPE *RefreshOrAddTasks )( __RPC__in IVsTaskList2 * This, /* [in] */ VSCOOKIE vsProviderCookie, /* [in] */ int nTasks, /* [size_is][in] */ __RPC__in_ecount_full(nTasks) IVsTaskItem *prgTasks[ ]); HRESULT ( STDMETHODCALLTYPE *RemoveTasks )( __RPC__in IVsTaskList2 * This, /* [in] */ VSCOOKIE vsProviderCookie, /* [in] */ int nTasks, /* [size_is][in] */ __RPC__in_ecount_full(nTasks) IVsTaskItem *prgTasks[ ]); HRESULT ( STDMETHODCALLTYPE *RefreshAllProviders )( __RPC__in IVsTaskList2 * This); END_INTERFACE } IVsTaskList2Vtbl; interface IVsTaskList2 { CONST_VTBL struct IVsTaskList2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsTaskList2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsTaskList2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsTaskList2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsTaskList2_GetSelectionCount(This,pnItems) \ ( (This)->lpVtbl -> GetSelectionCount(This,pnItems) ) #define IVsTaskList2_GetCaretPos(This,ppItem) \ ( (This)->lpVtbl -> GetCaretPos(This,ppItem) ) #define IVsTaskList2_EnumSelectedItems(This,ppEnum) \ ( (This)->lpVtbl -> EnumSelectedItems(This,ppEnum) ) #define IVsTaskList2_SelectItems(This,nItems,pItems,tsfSelType,tsspScrollPos) \ ( (This)->lpVtbl -> SelectItems(This,nItems,pItems,tsfSelType,tsspScrollPos) ) #define IVsTaskList2_BeginTaskEdit(This,pItem,iFocusField) \ ( (This)->lpVtbl -> BeginTaskEdit(This,pItem,iFocusField) ) #define IVsTaskList2_GetActiveProvider(This,ppProvider) \ ( (This)->lpVtbl -> GetActiveProvider(This,ppProvider) ) #define IVsTaskList2_SetActiveProvider(This,rguidProvider) \ ( (This)->lpVtbl -> SetActiveProvider(This,rguidProvider) ) #define IVsTaskList2_RefreshOrAddTasks(This,vsProviderCookie,nTasks,prgTasks) \ ( (This)->lpVtbl -> RefreshOrAddTasks(This,vsProviderCookie,nTasks,prgTasks) ) #define IVsTaskList2_RemoveTasks(This,vsProviderCookie,nTasks,prgTasks) \ ( (This)->lpVtbl -> RemoveTasks(This,vsProviderCookie,nTasks,prgTasks) ) #define IVsTaskList2_RefreshAllProviders(This) \ ( (This)->lpVtbl -> RefreshAllProviders(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsTaskList2_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0151 */ /* [local] */ typedef struct _VSTASKCOLUMN { int iField; BSTR bstrHeading; int iImage; BOOL fShowSortArrow; BOOL fAllowUserSort; BOOL fVisibleByDefault; BOOL fAllowHide; BOOL fSizeable; BOOL fMoveable; int iDefaultSortPriority; BOOL fDescendingSort; int cxMinWidth; int cxDefaultWidth; BOOL fDynamicSize; BSTR bstrCanonicalName; BSTR bstrLocalizedName; BSTR bstrTip; BOOL fFitContent; } VSTASKCOLUMN; enum __VSTASKPROVIDERFLAGS { TPF_ALWAYSVISIBLE = 0x1, TPF_NOAUTOROUTING = 0x2 } ; typedef DWORD VSTASKPROVIDERFLAGS; DEFINE_GUID(GUID_Comment_TaskProvider, 0x5a2d2729, 0xadff, 0x4a2e, 0xa4, 0x4f, 0x55, 0xeb, 0xbf, 0x5d, 0xf6, 0x4b); extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0151_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0151_v0_0_s_ifspec; #ifndef __IVsTaskProvider3_INTERFACE_DEFINED__ #define __IVsTaskProvider3_INTERFACE_DEFINED__ /* interface IVsTaskProvider3 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsTaskProvider3; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("AFA6B21D-D599-43f9-A3AB-0840359F11C3") IVsTaskProvider3 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetProviderFlags( /* [out] */ __RPC__out VSTASKPROVIDERFLAGS *tpfFlags) = 0; virtual HRESULT STDMETHODCALLTYPE GetProviderName( /* [out] */ __RPC__deref_out_opt BSTR *pbstrName) = 0; virtual HRESULT STDMETHODCALLTYPE GetProviderGuid( /* [out] */ __RPC__out GUID *pguidProvider) = 0; virtual HRESULT STDMETHODCALLTYPE GetSurrogateProviderGuid( /* [out] */ __RPC__out GUID *pguidProvider) = 0; virtual HRESULT STDMETHODCALLTYPE GetProviderToolbar( /* [out] */ __RPC__out GUID *pguidGroup, /* [out] */ __RPC__out DWORD *pdwID) = 0; virtual HRESULT STDMETHODCALLTYPE GetColumnCount( /* [out] */ __RPC__out int *pnColumns) = 0; virtual HRESULT STDMETHODCALLTYPE GetColumn( /* [in] */ int iColumn, /* [out] */ __RPC__out VSTASKCOLUMN *pColumn) = 0; virtual HRESULT STDMETHODCALLTYPE OnBeginTaskEdit( /* [in] */ __RPC__in_opt IVsTaskItem *pItem) = 0; virtual HRESULT STDMETHODCALLTYPE OnEndTaskEdit( /* [in] */ __RPC__in_opt IVsTaskItem *pItem, /* [in] */ BOOL fCommitChanges, /* [out] */ __RPC__out BOOL *pfAllowChanges) = 0; }; #else /* C style interface */ typedef struct IVsTaskProvider3Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsTaskProvider3 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsTaskProvider3 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsTaskProvider3 * This); HRESULT ( STDMETHODCALLTYPE *GetProviderFlags )( __RPC__in IVsTaskProvider3 * This, /* [out] */ __RPC__out VSTASKPROVIDERFLAGS *tpfFlags); HRESULT ( STDMETHODCALLTYPE *GetProviderName )( __RPC__in IVsTaskProvider3 * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrName); HRESULT ( STDMETHODCALLTYPE *GetProviderGuid )( __RPC__in IVsTaskProvider3 * This, /* [out] */ __RPC__out GUID *pguidProvider); HRESULT ( STDMETHODCALLTYPE *GetSurrogateProviderGuid )( __RPC__in IVsTaskProvider3 * This, /* [out] */ __RPC__out GUID *pguidProvider); HRESULT ( STDMETHODCALLTYPE *GetProviderToolbar )( __RPC__in IVsTaskProvider3 * This, /* [out] */ __RPC__out GUID *pguidGroup, /* [out] */ __RPC__out DWORD *pdwID); HRESULT ( STDMETHODCALLTYPE *GetColumnCount )( __RPC__in IVsTaskProvider3 * This, /* [out] */ __RPC__out int *pnColumns); HRESULT ( STDMETHODCALLTYPE *GetColumn )( __RPC__in IVsTaskProvider3 * This, /* [in] */ int iColumn, /* [out] */ __RPC__out VSTASKCOLUMN *pColumn); HRESULT ( STDMETHODCALLTYPE *OnBeginTaskEdit )( __RPC__in IVsTaskProvider3 * This, /* [in] */ __RPC__in_opt IVsTaskItem *pItem); HRESULT ( STDMETHODCALLTYPE *OnEndTaskEdit )( __RPC__in IVsTaskProvider3 * This, /* [in] */ __RPC__in_opt IVsTaskItem *pItem, /* [in] */ BOOL fCommitChanges, /* [out] */ __RPC__out BOOL *pfAllowChanges); END_INTERFACE } IVsTaskProvider3Vtbl; interface IVsTaskProvider3 { CONST_VTBL struct IVsTaskProvider3Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsTaskProvider3_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsTaskProvider3_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsTaskProvider3_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsTaskProvider3_GetProviderFlags(This,tpfFlags) \ ( (This)->lpVtbl -> GetProviderFlags(This,tpfFlags) ) #define IVsTaskProvider3_GetProviderName(This,pbstrName) \ ( (This)->lpVtbl -> GetProviderName(This,pbstrName) ) #define IVsTaskProvider3_GetProviderGuid(This,pguidProvider) \ ( (This)->lpVtbl -> GetProviderGuid(This,pguidProvider) ) #define IVsTaskProvider3_GetSurrogateProviderGuid(This,pguidProvider) \ ( (This)->lpVtbl -> GetSurrogateProviderGuid(This,pguidProvider) ) #define IVsTaskProvider3_GetProviderToolbar(This,pguidGroup,pdwID) \ ( (This)->lpVtbl -> GetProviderToolbar(This,pguidGroup,pdwID) ) #define IVsTaskProvider3_GetColumnCount(This,pnColumns) \ ( (This)->lpVtbl -> GetColumnCount(This,pnColumns) ) #define IVsTaskProvider3_GetColumn(This,iColumn,pColumn) \ ( (This)->lpVtbl -> GetColumn(This,iColumn,pColumn) ) #define IVsTaskProvider3_OnBeginTaskEdit(This,pItem) \ ( (This)->lpVtbl -> OnBeginTaskEdit(This,pItem) ) #define IVsTaskProvider3_OnEndTaskEdit(This,pItem,fCommitChanges,pfAllowChanges) \ ( (This)->lpVtbl -> OnEndTaskEdit(This,pItem,fCommitChanges,pfAllowChanges) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsTaskProvider3_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0152 */ /* [local] */ typedef enum __tagVSTASKVALUETYPE { TVT_NULL = 0, TVT_TEXT = 1, TVT_LINKTEXT = 2, TVT_BASE10 = 3, TVT_IMAGE = 4 } __VSTASKVALUETYPE; typedef DWORD VSTASKVALUETYPE; enum __VSTASKVALUEFLAGS { TVF_EDITABLE = 0x1, TVF_ENUM = 0x2, TVF_BINARY_STATE = 0x4, TVF_HORZ_RIGHT = 0x8, TVF_HORZ_CENTER = 0x10, TVF_STRIKETHROUGH = 0x20, TVF_FILENAME = 0x40 } ; typedef DWORD VSTASKVALUEFLAGS; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0152_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0152_v0_0_s_ifspec; #ifndef __IVsTaskItem3_INTERFACE_DEFINED__ #define __IVsTaskItem3_INTERFACE_DEFINED__ /* interface IVsTaskItem3 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsTaskItem3; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("F353950E-C381-4ba6-BCAA-6BA64E53D252") IVsTaskItem3 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetTaskProvider( /* [out] */ __RPC__deref_out_opt IVsTaskProvider3 **ppProvider) = 0; virtual HRESULT STDMETHODCALLTYPE GetTaskName( /* [out] */ __RPC__deref_out_opt BSTR *pbstrName) = 0; virtual HRESULT STDMETHODCALLTYPE GetColumnValue( /* [in] */ int iField, /* [out] */ __RPC__out VSTASKVALUETYPE *ptvtType, /* [out] */ __RPC__out VSTASKVALUEFLAGS *ptvfFlags, /* [out] */ __RPC__out VARIANT *pvarValue, /* [out] */ __RPC__deref_out_opt BSTR *pbstrAccessibilityName) = 0; virtual HRESULT STDMETHODCALLTYPE GetTipText( /* [in] */ int iField, /* [out] */ __RPC__deref_out_opt BSTR *pbstrTipText) = 0; virtual HRESULT STDMETHODCALLTYPE SetColumnValue( /* [in] */ int iField, /* [in] */ __RPC__in VARIANT *pvarValue) = 0; virtual HRESULT STDMETHODCALLTYPE IsDirty( /* [out] */ __RPC__out BOOL *pfDirty) = 0; virtual HRESULT STDMETHODCALLTYPE GetEnumCount( /* [in] */ int iField, /* [out] */ __RPC__out int *pnValues) = 0; virtual HRESULT STDMETHODCALLTYPE GetEnumValue( /* [in] */ int iField, /* [in] */ int iValue, /* [out] */ __RPC__out VARIANT *pvarValue, /* [out] */ __RPC__deref_out_opt BSTR *pbstrAccessibilityName) = 0; virtual HRESULT STDMETHODCALLTYPE OnLinkClicked( /* [in] */ int iField, /* [in] */ int iLinkIndex) = 0; virtual HRESULT STDMETHODCALLTYPE GetNavigationStatusText( /* [out] */ __RPC__deref_out_opt BSTR *pbstrText) = 0; virtual HRESULT STDMETHODCALLTYPE GetDefaultEditField( /* [out] */ __RPC__out int *piField) = 0; virtual HRESULT STDMETHODCALLTYPE GetSurrogateProviderGuid( /* [out] */ __RPC__out GUID *pguidProvider) = 0; }; #else /* C style interface */ typedef struct IVsTaskItem3Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsTaskItem3 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsTaskItem3 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsTaskItem3 * This); HRESULT ( STDMETHODCALLTYPE *GetTaskProvider )( __RPC__in IVsTaskItem3 * This, /* [out] */ __RPC__deref_out_opt IVsTaskProvider3 **ppProvider); HRESULT ( STDMETHODCALLTYPE *GetTaskName )( __RPC__in IVsTaskItem3 * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrName); HRESULT ( STDMETHODCALLTYPE *GetColumnValue )( __RPC__in IVsTaskItem3 * This, /* [in] */ int iField, /* [out] */ __RPC__out VSTASKVALUETYPE *ptvtType, /* [out] */ __RPC__out VSTASKVALUEFLAGS *ptvfFlags, /* [out] */ __RPC__out VARIANT *pvarValue, /* [out] */ __RPC__deref_out_opt BSTR *pbstrAccessibilityName); HRESULT ( STDMETHODCALLTYPE *GetTipText )( __RPC__in IVsTaskItem3 * This, /* [in] */ int iField, /* [out] */ __RPC__deref_out_opt BSTR *pbstrTipText); HRESULT ( STDMETHODCALLTYPE *SetColumnValue )( __RPC__in IVsTaskItem3 * This, /* [in] */ int iField, /* [in] */ __RPC__in VARIANT *pvarValue); HRESULT ( STDMETHODCALLTYPE *IsDirty )( __RPC__in IVsTaskItem3 * This, /* [out] */ __RPC__out BOOL *pfDirty); HRESULT ( STDMETHODCALLTYPE *GetEnumCount )( __RPC__in IVsTaskItem3 * This, /* [in] */ int iField, /* [out] */ __RPC__out int *pnValues); HRESULT ( STDMETHODCALLTYPE *GetEnumValue )( __RPC__in IVsTaskItem3 * This, /* [in] */ int iField, /* [in] */ int iValue, /* [out] */ __RPC__out VARIANT *pvarValue, /* [out] */ __RPC__deref_out_opt BSTR *pbstrAccessibilityName); HRESULT ( STDMETHODCALLTYPE *OnLinkClicked )( __RPC__in IVsTaskItem3 * This, /* [in] */ int iField, /* [in] */ int iLinkIndex); HRESULT ( STDMETHODCALLTYPE *GetNavigationStatusText )( __RPC__in IVsTaskItem3 * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrText); HRESULT ( STDMETHODCALLTYPE *GetDefaultEditField )( __RPC__in IVsTaskItem3 * This, /* [out] */ __RPC__out int *piField); HRESULT ( STDMETHODCALLTYPE *GetSurrogateProviderGuid )( __RPC__in IVsTaskItem3 * This, /* [out] */ __RPC__out GUID *pguidProvider); END_INTERFACE } IVsTaskItem3Vtbl; interface IVsTaskItem3 { CONST_VTBL struct IVsTaskItem3Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsTaskItem3_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsTaskItem3_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsTaskItem3_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsTaskItem3_GetTaskProvider(This,ppProvider) \ ( (This)->lpVtbl -> GetTaskProvider(This,ppProvider) ) #define IVsTaskItem3_GetTaskName(This,pbstrName) \ ( (This)->lpVtbl -> GetTaskName(This,pbstrName) ) #define IVsTaskItem3_GetColumnValue(This,iField,ptvtType,ptvfFlags,pvarValue,pbstrAccessibilityName) \ ( (This)->lpVtbl -> GetColumnValue(This,iField,ptvtType,ptvfFlags,pvarValue,pbstrAccessibilityName) ) #define IVsTaskItem3_GetTipText(This,iField,pbstrTipText) \ ( (This)->lpVtbl -> GetTipText(This,iField,pbstrTipText) ) #define IVsTaskItem3_SetColumnValue(This,iField,pvarValue) \ ( (This)->lpVtbl -> SetColumnValue(This,iField,pvarValue) ) #define IVsTaskItem3_IsDirty(This,pfDirty) \ ( (This)->lpVtbl -> IsDirty(This,pfDirty) ) #define IVsTaskItem3_GetEnumCount(This,iField,pnValues) \ ( (This)->lpVtbl -> GetEnumCount(This,iField,pnValues) ) #define IVsTaskItem3_GetEnumValue(This,iField,iValue,pvarValue,pbstrAccessibilityName) \ ( (This)->lpVtbl -> GetEnumValue(This,iField,iValue,pvarValue,pbstrAccessibilityName) ) #define IVsTaskItem3_OnLinkClicked(This,iField,iLinkIndex) \ ( (This)->lpVtbl -> OnLinkClicked(This,iField,iLinkIndex) ) #define IVsTaskItem3_GetNavigationStatusText(This,pbstrText) \ ( (This)->lpVtbl -> GetNavigationStatusText(This,pbstrText) ) #define IVsTaskItem3_GetDefaultEditField(This,piField) \ ( (This)->lpVtbl -> GetDefaultEditField(This,piField) ) #define IVsTaskItem3_GetSurrogateProviderGuid(This,pguidProvider) \ ( (This)->lpVtbl -> GetSurrogateProviderGuid(This,pguidProvider) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsTaskItem3_INTERFACE_DEFINED__ */ #ifndef __IVsErrorList_INTERFACE_DEFINED__ #define __IVsErrorList_INTERFACE_DEFINED__ /* interface IVsErrorList */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsErrorList; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("D824A797-62D2-4f60-98F8-4423624BC1BF") IVsErrorList : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE BringToFront( void) = 0; virtual HRESULT STDMETHODCALLTYPE ForceShowErrors( void) = 0; }; #else /* C style interface */ typedef struct IVsErrorListVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsErrorList * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsErrorList * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsErrorList * This); HRESULT ( STDMETHODCALLTYPE *BringToFront )( __RPC__in IVsErrorList * This); HRESULT ( STDMETHODCALLTYPE *ForceShowErrors )( __RPC__in IVsErrorList * This); END_INTERFACE } IVsErrorListVtbl; interface IVsErrorList { CONST_VTBL struct IVsErrorListVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsErrorList_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsErrorList_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsErrorList_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsErrorList_BringToFront(This) \ ( (This)->lpVtbl -> BringToFront(This) ) #define IVsErrorList_ForceShowErrors(This) \ ( (This)->lpVtbl -> ForceShowErrors(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsErrorList_INTERFACE_DEFINED__ */ #ifndef __SVsErrorList_INTERFACE_DEFINED__ #define __SVsErrorList_INTERFACE_DEFINED__ /* interface SVsErrorList */ /* [object][uuid] */ EXTERN_C const IID IID_SVsErrorList; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("599BCD9E-CAFA-43DF-AA03-129C0004C2BD") SVsErrorList : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsErrorListVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsErrorList * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsErrorList * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsErrorList * This); END_INTERFACE } SVsErrorListVtbl; interface SVsErrorList { CONST_VTBL struct SVsErrorListVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsErrorList_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsErrorList_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsErrorList_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsErrorList_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0155 */ /* [local] */ #define SID_SVsErrorList IID_SVsErrorList extern const __declspec(selectany) GUID GUID_ErrorList = { 0xd78612c7, 0x9962, 0x4b83, { 0x95, 0xd9, 0x26, 0x80, 0x46, 0xda, 0xd2, 0x3a } }; extern const __declspec(selectany) GUID GUID_PropertySheetManager = { 0x6B8E94B5, 0x0949, 0x4d9c, { 0xA8, 0x1F, 0xC1, 0xB9, 0xB7, 0x44, 0x18, 0x5C} }; extern const __declspec(selectany) GUID GUID_CodeDefWin = { 0x588470cc, 0x84f8, 0x4a57, { 0x9a, 0xc4, 0x86, 0xbc, 0xa0, 0x62, 0x5f, 0xf4 } }; typedef enum __tagVSERRORCATEGORY { EC_ERROR = 0, EC_WARNING = 1, EC_MESSAGE = 2 } __VSERRORCATEGORY; typedef DWORD VSERRORCATEGORY; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0155_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0155_v0_0_s_ifspec; #ifndef __IVsErrorItem_INTERFACE_DEFINED__ #define __IVsErrorItem_INTERFACE_DEFINED__ /* interface IVsErrorItem */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsErrorItem; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("CE3DF110-7630-4d6c-81D5-5CFA12ADDAE6") IVsErrorItem : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetHierarchy( /* [out] */ __RPC__deref_out_opt IVsHierarchy **ppProject) = 0; virtual HRESULT STDMETHODCALLTYPE GetCategory( /* [out] */ __RPC__out VSERRORCATEGORY *pCategory) = 0; }; #else /* C style interface */ typedef struct IVsErrorItemVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsErrorItem * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsErrorItem * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsErrorItem * This); HRESULT ( STDMETHODCALLTYPE *GetHierarchy )( __RPC__in IVsErrorItem * This, /* [out] */ __RPC__deref_out_opt IVsHierarchy **ppProject); HRESULT ( STDMETHODCALLTYPE *GetCategory )( __RPC__in IVsErrorItem * This, /* [out] */ __RPC__out VSERRORCATEGORY *pCategory); END_INTERFACE } IVsErrorItemVtbl; interface IVsErrorItem { CONST_VTBL struct IVsErrorItemVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsErrorItem_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsErrorItem_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsErrorItem_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsErrorItem_GetHierarchy(This,ppProject) \ ( (This)->lpVtbl -> GetHierarchy(This,ppProject) ) #define IVsErrorItem_GetCategory(This,pCategory) \ ( (This)->lpVtbl -> GetCategory(This,pCategory) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsErrorItem_INTERFACE_DEFINED__ */ #ifndef __IVsWindowPaneCommitFilter_INTERFACE_DEFINED__ #define __IVsWindowPaneCommitFilter_INTERFACE_DEFINED__ /* interface IVsWindowPaneCommitFilter */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsWindowPaneCommitFilter; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("072B9701-2F81-4468-8EB6-074206504B62") IVsWindowPaneCommitFilter : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE IsCommitCommand( /* [in] */ __RPC__in REFGUID pguidCmdGroup, /* [in] */ DWORD dwCmdID, /* [out] */ __RPC__out BOOL *pfCommitCommand) = 0; }; #else /* C style interface */ typedef struct IVsWindowPaneCommitFilterVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsWindowPaneCommitFilter * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsWindowPaneCommitFilter * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsWindowPaneCommitFilter * This); HRESULT ( STDMETHODCALLTYPE *IsCommitCommand )( __RPC__in IVsWindowPaneCommitFilter * This, /* [in] */ __RPC__in REFGUID pguidCmdGroup, /* [in] */ DWORD dwCmdID, /* [out] */ __RPC__out BOOL *pfCommitCommand); END_INTERFACE } IVsWindowPaneCommitFilterVtbl; interface IVsWindowPaneCommitFilter { CONST_VTBL struct IVsWindowPaneCommitFilterVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsWindowPaneCommitFilter_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsWindowPaneCommitFilter_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsWindowPaneCommitFilter_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsWindowPaneCommitFilter_IsCommitCommand(This,pguidCmdGroup,dwCmdID,pfCommitCommand) \ ( (This)->lpVtbl -> IsCommitCommand(This,pguidCmdGroup,dwCmdID,pfCommitCommand) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsWindowPaneCommitFilter_INTERFACE_DEFINED__ */ #ifndef __IPreferPropertyPagesWithTreeControl_INTERFACE_DEFINED__ #define __IPreferPropertyPagesWithTreeControl_INTERFACE_DEFINED__ /* interface IPreferPropertyPagesWithTreeControl */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IPreferPropertyPagesWithTreeControl; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("03AEFCEA-62A9-4606-8E17-7CB0FC13D5E0") IPreferPropertyPagesWithTreeControl : public IUnknown { public: }; #else /* C style interface */ typedef struct IPreferPropertyPagesWithTreeControlVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IPreferPropertyPagesWithTreeControl * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IPreferPropertyPagesWithTreeControl * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IPreferPropertyPagesWithTreeControl * This); END_INTERFACE } IPreferPropertyPagesWithTreeControlVtbl; interface IPreferPropertyPagesWithTreeControl { CONST_VTBL struct IPreferPropertyPagesWithTreeControlVtbl *lpVtbl; }; #ifdef COBJMACROS #define IPreferPropertyPagesWithTreeControl_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IPreferPropertyPagesWithTreeControl_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IPreferPropertyPagesWithTreeControl_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IPreferPropertyPagesWithTreeControl_INTERFACE_DEFINED__ */ #ifndef __IVsSpecifyProjectDesignerPages_INTERFACE_DEFINED__ #define __IVsSpecifyProjectDesignerPages_INTERFACE_DEFINED__ /* interface IVsSpecifyProjectDesignerPages */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsSpecifyProjectDesignerPages; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("E7E36A24-6435-48fb-8E5B-D2589FC18D72") IVsSpecifyProjectDesignerPages : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetProjectDesignerPages( /* [out] */ __RPC__out CAUUID *pPages) = 0; }; #else /* C style interface */ typedef struct IVsSpecifyProjectDesignerPagesVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsSpecifyProjectDesignerPages * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsSpecifyProjectDesignerPages * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsSpecifyProjectDesignerPages * This); HRESULT ( STDMETHODCALLTYPE *GetProjectDesignerPages )( __RPC__in IVsSpecifyProjectDesignerPages * This, /* [out] */ __RPC__out CAUUID *pPages); END_INTERFACE } IVsSpecifyProjectDesignerPagesVtbl; interface IVsSpecifyProjectDesignerPages { CONST_VTBL struct IVsSpecifyProjectDesignerPagesVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsSpecifyProjectDesignerPages_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsSpecifyProjectDesignerPages_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsSpecifyProjectDesignerPages_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsSpecifyProjectDesignerPages_GetProjectDesignerPages(This,pPages) \ ( (This)->lpVtbl -> GetProjectDesignerPages(This,pPages) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsSpecifyProjectDesignerPages_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0159 */ /* [local] */ #define VS_OUTPUTGROUP_CNAME_SGenFiles L"XmlSerializer" extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0159_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0159_v0_0_s_ifspec; #ifndef __IVsDeployDependency2_INTERFACE_DEFINED__ #define __IVsDeployDependency2_INTERFACE_DEFINED__ /* interface IVsDeployDependency2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsDeployDependency2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("77F54647-95E6-4033-91A8-51CCD014D945") IVsDeployDependency2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE get_Property( /* [in] */ __RPC__in LPCOLESTR szProperty, /* [out] */ __RPC__out VARIANT *pvar) = 0; }; #else /* C style interface */ typedef struct IVsDeployDependency2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsDeployDependency2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsDeployDependency2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsDeployDependency2 * This); HRESULT ( STDMETHODCALLTYPE *get_Property )( __RPC__in IVsDeployDependency2 * This, /* [in] */ __RPC__in LPCOLESTR szProperty, /* [out] */ __RPC__out VARIANT *pvar); END_INTERFACE } IVsDeployDependency2Vtbl; interface IVsDeployDependency2 { CONST_VTBL struct IVsDeployDependency2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsDeployDependency2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsDeployDependency2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsDeployDependency2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsDeployDependency2_get_Property(This,szProperty,pvar) \ ( (This)->lpVtbl -> get_Property(This,szProperty,pvar) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsDeployDependency2_INTERFACE_DEFINED__ */ #ifndef __IVsOutputGroup2_INTERFACE_DEFINED__ #define __IVsOutputGroup2_INTERFACE_DEFINED__ /* interface IVsOutputGroup2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsOutputGroup2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("06A3B841-FBEA-46cb-81EA-36DB4D005545") IVsOutputGroup2 : public IVsOutputGroup { public: virtual HRESULT STDMETHODCALLTYPE get_KeyOutputObject( /* [out] */ __RPC__deref_out_opt IVsOutput2 **ppKeyOutput) = 0; virtual HRESULT STDMETHODCALLTYPE get_Property( /* [in] */ __RPC__in LPCOLESTR pszProperty, /* [out] */ __RPC__out VARIANT *pvar) = 0; }; #else /* C style interface */ typedef struct IVsOutputGroup2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsOutputGroup2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsOutputGroup2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsOutputGroup2 * This); HRESULT ( STDMETHODCALLTYPE *get_CanonicalName )( __RPC__in IVsOutputGroup2 * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrCanonicalName); HRESULT ( STDMETHODCALLTYPE *get_DisplayName )( __RPC__in IVsOutputGroup2 * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrDisplayName); HRESULT ( STDMETHODCALLTYPE *get_KeyOutput )( __RPC__in IVsOutputGroup2 * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrCanonicalName); HRESULT ( STDMETHODCALLTYPE *get_ProjectCfg )( __RPC__in IVsOutputGroup2 * This, /* [out] */ __RPC__deref_out_opt IVsProjectCfg2 **ppIVsProjectCfg2); HRESULT ( STDMETHODCALLTYPE *get_Outputs )( __RPC__in IVsOutputGroup2 * This, /* [in] */ ULONG celt, /* [size_is][out][in] */ __RPC__inout_ecount_full(celt) IVsOutput2 *rgpcfg[ ], /* [optional][out] */ __RPC__out ULONG *pcActual); HRESULT ( STDMETHODCALLTYPE *get_DeployDependencies )( __RPC__in IVsOutputGroup2 * This, /* [in] */ ULONG celt, /* [size_is][out][in] */ __RPC__inout_ecount_full(celt) IVsDeployDependency *rgpdpd[ ], /* [optional][out] */ __RPC__out ULONG *pcActual); HRESULT ( STDMETHODCALLTYPE *get_Description )( __RPC__in IVsOutputGroup2 * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrDescription); HRESULT ( STDMETHODCALLTYPE *get_KeyOutputObject )( __RPC__in IVsOutputGroup2 * This, /* [out] */ __RPC__deref_out_opt IVsOutput2 **ppKeyOutput); HRESULT ( STDMETHODCALLTYPE *get_Property )( __RPC__in IVsOutputGroup2 * This, /* [in] */ __RPC__in LPCOLESTR pszProperty, /* [out] */ __RPC__out VARIANT *pvar); END_INTERFACE } IVsOutputGroup2Vtbl; interface IVsOutputGroup2 { CONST_VTBL struct IVsOutputGroup2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsOutputGroup2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsOutputGroup2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsOutputGroup2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsOutputGroup2_get_CanonicalName(This,pbstrCanonicalName) \ ( (This)->lpVtbl -> get_CanonicalName(This,pbstrCanonicalName) ) #define IVsOutputGroup2_get_DisplayName(This,pbstrDisplayName) \ ( (This)->lpVtbl -> get_DisplayName(This,pbstrDisplayName) ) #define IVsOutputGroup2_get_KeyOutput(This,pbstrCanonicalName) \ ( (This)->lpVtbl -> get_KeyOutput(This,pbstrCanonicalName) ) #define IVsOutputGroup2_get_ProjectCfg(This,ppIVsProjectCfg2) \ ( (This)->lpVtbl -> get_ProjectCfg(This,ppIVsProjectCfg2) ) #define IVsOutputGroup2_get_Outputs(This,celt,rgpcfg,pcActual) \ ( (This)->lpVtbl -> get_Outputs(This,celt,rgpcfg,pcActual) ) #define IVsOutputGroup2_get_DeployDependencies(This,celt,rgpdpd,pcActual) \ ( (This)->lpVtbl -> get_DeployDependencies(This,celt,rgpdpd,pcActual) ) #define IVsOutputGroup2_get_Description(This,pbstrDescription) \ ( (This)->lpVtbl -> get_Description(This,pbstrDescription) ) #define IVsOutputGroup2_get_KeyOutputObject(This,ppKeyOutput) \ ( (This)->lpVtbl -> get_KeyOutputObject(This,ppKeyOutput) ) #define IVsOutputGroup2_get_Property(This,pszProperty,pvar) \ ( (This)->lpVtbl -> get_Property(This,pszProperty,pvar) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsOutputGroup2_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0161 */ /* [local] */ enum __VSCOLORTYPE { CT_INVALID = 0, CT_RAW = 1, CT_COLORINDEX = 2, CT_SYSCOLOR = 3, CT_VSCOLOR = 4, CT_AUTOMATIC = 5, CT_TRACK_FOREGROUND = 6, CT_TRACK_BACKGROUND = 7 } ; typedef LONG VSCOLORTYPE; enum __VSCOLORASPECT { CA_FOREGROUND = 0, CA_BACKGROUND = 1 } ; typedef LONG VSCOLORASPECT; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0161_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0161_v0_0_s_ifspec; #ifndef __IVsFontAndColorUtilities_INTERFACE_DEFINED__ #define __IVsFontAndColorUtilities_INTERFACE_DEFINED__ /* interface IVsFontAndColorUtilities */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsFontAndColorUtilities; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("A356A017-07EE-4d06-ACDE-FEFDBB49EB50") IVsFontAndColorUtilities : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE EncodeIndexedColor( /* [in] */ COLORINDEX idx, /* [out] */ __RPC__out COLORREF *pcrResult) = 0; virtual HRESULT STDMETHODCALLTYPE EncodeSysColor( /* [in] */ int iSysColor, /* [out] */ __RPC__out COLORREF *pcrResult) = 0; virtual HRESULT STDMETHODCALLTYPE EncodeVSColor( /* [in] */ VSSYSCOLOREX vsColor, /* [out] */ __RPC__out COLORREF *pcrResult) = 0; virtual HRESULT STDMETHODCALLTYPE EncodeTrackedItem( /* [in] */ int iItemToTrack, /* [in] */ VSCOLORASPECT aspect, /* [out] */ __RPC__out COLORREF *pcrResult) = 0; virtual HRESULT STDMETHODCALLTYPE EncodeInvalidColor( /* [out] */ __RPC__out COLORREF *pcrResult) = 0; virtual HRESULT STDMETHODCALLTYPE EncodeAutomaticColor( /* [out] */ __RPC__out COLORREF *pcrResult) = 0; virtual HRESULT STDMETHODCALLTYPE GetColorType( /* [in] */ COLORREF crSource, /* [out] */ __RPC__out VSCOLORTYPE *pctType) = 0; virtual HRESULT STDMETHODCALLTYPE GetEncodedIndex( /* [in] */ COLORREF crSource, /* [out] */ __RPC__out COLORINDEX *pIdx) = 0; virtual HRESULT STDMETHODCALLTYPE GetEncodedSysColor( /* [in] */ COLORREF crSource, /* [out] */ __RPC__out int *piSysColor) = 0; virtual HRESULT STDMETHODCALLTYPE GetEncodedVSColor( /* [in] */ COLORREF crSource, /* [out] */ __RPC__out VSSYSCOLOREX *pVSColor) = 0; virtual HRESULT STDMETHODCALLTYPE GetTrackedItemIndex( /* [in] */ COLORREF crSource, /* [out] */ __RPC__out VSCOLORASPECT *pAspect, /* [out] */ __RPC__out int *piItem) = 0; virtual HRESULT STDMETHODCALLTYPE GetRGBOfIndex( /* [in] */ COLORINDEX idx, /* [out] */ __RPC__out COLORREF *pcrResult) = 0; virtual HRESULT STDMETHODCALLTYPE GetRGBOfItem( /* [in] */ __RPC__in AllColorableItemInfo *pInfo, /* [in] */ __RPC__in REFGUID rguidCategory, /* [out] */ __RPC__out COLORREF *pcrForeground, /* [out] */ __RPC__out COLORREF *pcrBackground) = 0; virtual HRESULT STDMETHODCALLTYPE GetRGBOfEncodedColor( /* [in] */ COLORREF crSource, /* [in] */ COLORREF crAutoColor, /* [in] */ __RPC__in REFGUID rguidCategory, /* [out] */ __RPC__out COLORREF *pcrResult) = 0; virtual HRESULT STDMETHODCALLTYPE InitFontInfo( /* [out][in] */ __RPC__inout FontInfo *pInfo) = 0; virtual HRESULT STDMETHODCALLTYPE FreeFontInfo( /* [out][in] */ __RPC__inout FontInfo *pInfo) = 0; virtual HRESULT STDMETHODCALLTYPE CopyFontInfo( /* [out][in] */ __RPC__inout FontInfo *pDest, /* [in] */ __RPC__in const FontInfo *pSource) = 0; virtual HRESULT STDMETHODCALLTYPE InitItemInfo( /* [out][in] */ __RPC__inout AllColorableItemInfo *pInfo) = 0; virtual HRESULT STDMETHODCALLTYPE FreeItemInfo( /* [out][in] */ __RPC__inout AllColorableItemInfo *pInfo) = 0; virtual HRESULT STDMETHODCALLTYPE CopyItemInfo( /* [out][in] */ __RPC__inout AllColorableItemInfo *pDest, /* [in] */ __RPC__in const AllColorableItemInfo *pSource) = 0; }; #else /* C style interface */ typedef struct IVsFontAndColorUtilitiesVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsFontAndColorUtilities * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsFontAndColorUtilities * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsFontAndColorUtilities * This); HRESULT ( STDMETHODCALLTYPE *EncodeIndexedColor )( __RPC__in IVsFontAndColorUtilities * This, /* [in] */ COLORINDEX idx, /* [out] */ __RPC__out COLORREF *pcrResult); HRESULT ( STDMETHODCALLTYPE *EncodeSysColor )( __RPC__in IVsFontAndColorUtilities * This, /* [in] */ int iSysColor, /* [out] */ __RPC__out COLORREF *pcrResult); HRESULT ( STDMETHODCALLTYPE *EncodeVSColor )( __RPC__in IVsFontAndColorUtilities * This, /* [in] */ VSSYSCOLOREX vsColor, /* [out] */ __RPC__out COLORREF *pcrResult); HRESULT ( STDMETHODCALLTYPE *EncodeTrackedItem )( __RPC__in IVsFontAndColorUtilities * This, /* [in] */ int iItemToTrack, /* [in] */ VSCOLORASPECT aspect, /* [out] */ __RPC__out COLORREF *pcrResult); HRESULT ( STDMETHODCALLTYPE *EncodeInvalidColor )( __RPC__in IVsFontAndColorUtilities * This, /* [out] */ __RPC__out COLORREF *pcrResult); HRESULT ( STDMETHODCALLTYPE *EncodeAutomaticColor )( __RPC__in IVsFontAndColorUtilities * This, /* [out] */ __RPC__out COLORREF *pcrResult); HRESULT ( STDMETHODCALLTYPE *GetColorType )( __RPC__in IVsFontAndColorUtilities * This, /* [in] */ COLORREF crSource, /* [out] */ __RPC__out VSCOLORTYPE *pctType); HRESULT ( STDMETHODCALLTYPE *GetEncodedIndex )( __RPC__in IVsFontAndColorUtilities * This, /* [in] */ COLORREF crSource, /* [out] */ __RPC__out COLORINDEX *pIdx); HRESULT ( STDMETHODCALLTYPE *GetEncodedSysColor )( __RPC__in IVsFontAndColorUtilities * This, /* [in] */ COLORREF crSource, /* [out] */ __RPC__out int *piSysColor); HRESULT ( STDMETHODCALLTYPE *GetEncodedVSColor )( __RPC__in IVsFontAndColorUtilities * This, /* [in] */ COLORREF crSource, /* [out] */ __RPC__out VSSYSCOLOREX *pVSColor); HRESULT ( STDMETHODCALLTYPE *GetTrackedItemIndex )( __RPC__in IVsFontAndColorUtilities * This, /* [in] */ COLORREF crSource, /* [out] */ __RPC__out VSCOLORASPECT *pAspect, /* [out] */ __RPC__out int *piItem); HRESULT ( STDMETHODCALLTYPE *GetRGBOfIndex )( __RPC__in IVsFontAndColorUtilities * This, /* [in] */ COLORINDEX idx, /* [out] */ __RPC__out COLORREF *pcrResult); HRESULT ( STDMETHODCALLTYPE *GetRGBOfItem )( __RPC__in IVsFontAndColorUtilities * This, /* [in] */ __RPC__in AllColorableItemInfo *pInfo, /* [in] */ __RPC__in REFGUID rguidCategory, /* [out] */ __RPC__out COLORREF *pcrForeground, /* [out] */ __RPC__out COLORREF *pcrBackground); HRESULT ( STDMETHODCALLTYPE *GetRGBOfEncodedColor )( __RPC__in IVsFontAndColorUtilities * This, /* [in] */ COLORREF crSource, /* [in] */ COLORREF crAutoColor, /* [in] */ __RPC__in REFGUID rguidCategory, /* [out] */ __RPC__out COLORREF *pcrResult); HRESULT ( STDMETHODCALLTYPE *InitFontInfo )( __RPC__in IVsFontAndColorUtilities * This, /* [out][in] */ __RPC__inout FontInfo *pInfo); HRESULT ( STDMETHODCALLTYPE *FreeFontInfo )( __RPC__in IVsFontAndColorUtilities * This, /* [out][in] */ __RPC__inout FontInfo *pInfo); HRESULT ( STDMETHODCALLTYPE *CopyFontInfo )( __RPC__in IVsFontAndColorUtilities * This, /* [out][in] */ __RPC__inout FontInfo *pDest, /* [in] */ __RPC__in const FontInfo *pSource); HRESULT ( STDMETHODCALLTYPE *InitItemInfo )( __RPC__in IVsFontAndColorUtilities * This, /* [out][in] */ __RPC__inout AllColorableItemInfo *pInfo); HRESULT ( STDMETHODCALLTYPE *FreeItemInfo )( __RPC__in IVsFontAndColorUtilities * This, /* [out][in] */ __RPC__inout AllColorableItemInfo *pInfo); HRESULT ( STDMETHODCALLTYPE *CopyItemInfo )( __RPC__in IVsFontAndColorUtilities * This, /* [out][in] */ __RPC__inout AllColorableItemInfo *pDest, /* [in] */ __RPC__in const AllColorableItemInfo *pSource); END_INTERFACE } IVsFontAndColorUtilitiesVtbl; interface IVsFontAndColorUtilities { CONST_VTBL struct IVsFontAndColorUtilitiesVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsFontAndColorUtilities_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsFontAndColorUtilities_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsFontAndColorUtilities_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsFontAndColorUtilities_EncodeIndexedColor(This,idx,pcrResult) \ ( (This)->lpVtbl -> EncodeIndexedColor(This,idx,pcrResult) ) #define IVsFontAndColorUtilities_EncodeSysColor(This,iSysColor,pcrResult) \ ( (This)->lpVtbl -> EncodeSysColor(This,iSysColor,pcrResult) ) #define IVsFontAndColorUtilities_EncodeVSColor(This,vsColor,pcrResult) \ ( (This)->lpVtbl -> EncodeVSColor(This,vsColor,pcrResult) ) #define IVsFontAndColorUtilities_EncodeTrackedItem(This,iItemToTrack,aspect,pcrResult) \ ( (This)->lpVtbl -> EncodeTrackedItem(This,iItemToTrack,aspect,pcrResult) ) #define IVsFontAndColorUtilities_EncodeInvalidColor(This,pcrResult) \ ( (This)->lpVtbl -> EncodeInvalidColor(This,pcrResult) ) #define IVsFontAndColorUtilities_EncodeAutomaticColor(This,pcrResult) \ ( (This)->lpVtbl -> EncodeAutomaticColor(This,pcrResult) ) #define IVsFontAndColorUtilities_GetColorType(This,crSource,pctType) \ ( (This)->lpVtbl -> GetColorType(This,crSource,pctType) ) #define IVsFontAndColorUtilities_GetEncodedIndex(This,crSource,pIdx) \ ( (This)->lpVtbl -> GetEncodedIndex(This,crSource,pIdx) ) #define IVsFontAndColorUtilities_GetEncodedSysColor(This,crSource,piSysColor) \ ( (This)->lpVtbl -> GetEncodedSysColor(This,crSource,piSysColor) ) #define IVsFontAndColorUtilities_GetEncodedVSColor(This,crSource,pVSColor) \ ( (This)->lpVtbl -> GetEncodedVSColor(This,crSource,pVSColor) ) #define IVsFontAndColorUtilities_GetTrackedItemIndex(This,crSource,pAspect,piItem) \ ( (This)->lpVtbl -> GetTrackedItemIndex(This,crSource,pAspect,piItem) ) #define IVsFontAndColorUtilities_GetRGBOfIndex(This,idx,pcrResult) \ ( (This)->lpVtbl -> GetRGBOfIndex(This,idx,pcrResult) ) #define IVsFontAndColorUtilities_GetRGBOfItem(This,pInfo,rguidCategory,pcrForeground,pcrBackground) \ ( (This)->lpVtbl -> GetRGBOfItem(This,pInfo,rguidCategory,pcrForeground,pcrBackground) ) #define IVsFontAndColorUtilities_GetRGBOfEncodedColor(This,crSource,crAutoColor,rguidCategory,pcrResult) \ ( (This)->lpVtbl -> GetRGBOfEncodedColor(This,crSource,crAutoColor,rguidCategory,pcrResult) ) #define IVsFontAndColorUtilities_InitFontInfo(This,pInfo) \ ( (This)->lpVtbl -> InitFontInfo(This,pInfo) ) #define IVsFontAndColorUtilities_FreeFontInfo(This,pInfo) \ ( (This)->lpVtbl -> FreeFontInfo(This,pInfo) ) #define IVsFontAndColorUtilities_CopyFontInfo(This,pDest,pSource) \ ( (This)->lpVtbl -> CopyFontInfo(This,pDest,pSource) ) #define IVsFontAndColorUtilities_InitItemInfo(This,pInfo) \ ( (This)->lpVtbl -> InitItemInfo(This,pInfo) ) #define IVsFontAndColorUtilities_FreeItemInfo(This,pInfo) \ ( (This)->lpVtbl -> FreeItemInfo(This,pInfo) ) #define IVsFontAndColorUtilities_CopyItemInfo(This,pDest,pSource) \ ( (This)->lpVtbl -> CopyItemInfo(This,pDest,pSource) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsFontAndColorUtilities_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0162 */ /* [local] */ extern const __declspec(selectany) GUID GUID_DialogsAndToolWindowsFC = { 0x1f987c00, 0xe7c4, 0x4869, { 0x8a, 0x17, 0x23, 0xfd, 0x60, 0x22, 0x68, 0xb0 } }; extern const __declspec(selectany) GUID GUID_TextEditorFC = { 0xa27b4e24, 0xa735, 0x4d1d, { 0xb8, 0xe7, 0x97, 0x16, 0xe1, 0xe3, 0xd8, 0xe0 } }; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0162_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0162_v0_0_s_ifspec; #ifndef __IVsOutputWindow2_INTERFACE_DEFINED__ #define __IVsOutputWindow2_INTERFACE_DEFINED__ /* interface IVsOutputWindow2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsOutputWindow2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("F4DEB52C-53A3-42fd-A039-3493F09E53FC") IVsOutputWindow2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetActivePaneGUID( /* [out] */ __RPC__out GUID *pguidPane) = 0; }; #else /* C style interface */ typedef struct IVsOutputWindow2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsOutputWindow2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsOutputWindow2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsOutputWindow2 * This); HRESULT ( STDMETHODCALLTYPE *GetActivePaneGUID )( __RPC__in IVsOutputWindow2 * This, /* [out] */ __RPC__out GUID *pguidPane); END_INTERFACE } IVsOutputWindow2Vtbl; interface IVsOutputWindow2 { CONST_VTBL struct IVsOutputWindow2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsOutputWindow2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsOutputWindow2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsOutputWindow2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsOutputWindow2_GetActivePaneGUID(This,pguidPane) \ ( (This)->lpVtbl -> GetActivePaneGUID(This,pguidPane) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsOutputWindow2_INTERFACE_DEFINED__ */ #ifndef __IVsDebuggableProjectCfg2_INTERFACE_DEFINED__ #define __IVsDebuggableProjectCfg2_INTERFACE_DEFINED__ /* interface IVsDebuggableProjectCfg2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsDebuggableProjectCfg2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("2559D053-417E-4276-A905-193191B5816A") IVsDebuggableProjectCfg2 : public IVsDebuggableProjectCfg { public: virtual HRESULT STDMETHODCALLTYPE OnBeforeDebugLaunch( /* [in] */ VSDBGLAUNCHFLAGS grfLaunch) = 0; }; #else /* C style interface */ typedef struct IVsDebuggableProjectCfg2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsDebuggableProjectCfg2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsDebuggableProjectCfg2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsDebuggableProjectCfg2 * This); HRESULT ( STDMETHODCALLTYPE *get_DisplayName )( __RPC__in IVsDebuggableProjectCfg2 * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrDisplayName); HRESULT ( STDMETHODCALLTYPE *get_IsDebugOnly )( __RPC__in IVsDebuggableProjectCfg2 * This, /* [out] */ __RPC__out BOOL *pfIsDebugOnly); HRESULT ( STDMETHODCALLTYPE *get_IsReleaseOnly )( __RPC__in IVsDebuggableProjectCfg2 * This, /* [out] */ __RPC__out BOOL *pfIsReleaseOnly); HRESULT ( STDMETHODCALLTYPE *EnumOutputs )( __RPC__in IVsDebuggableProjectCfg2 * This, /* [out] */ __RPC__deref_out_opt IVsEnumOutputs **ppIVsEnumOutputs); HRESULT ( STDMETHODCALLTYPE *OpenOutput )( __RPC__in IVsDebuggableProjectCfg2 * This, /* [in] */ __RPC__in LPCOLESTR szOutputCanonicalName, /* [out] */ __RPC__deref_out_opt IVsOutput **ppIVsOutput); HRESULT ( STDMETHODCALLTYPE *get_ProjectCfgProvider )( __RPC__in IVsDebuggableProjectCfg2 * This, /* [out] */ __RPC__deref_out_opt IVsProjectCfgProvider **ppIVsProjectCfgProvider); HRESULT ( STDMETHODCALLTYPE *get_BuildableProjectCfg )( __RPC__in IVsDebuggableProjectCfg2 * This, /* [out] */ __RPC__deref_out_opt IVsBuildableProjectCfg **ppIVsBuildableProjectCfg); HRESULT ( STDMETHODCALLTYPE *get_CanonicalName )( __RPC__in IVsDebuggableProjectCfg2 * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrCanonicalName); HRESULT ( STDMETHODCALLTYPE *get_Platform )( __RPC__in IVsDebuggableProjectCfg2 * This, /* [out] */ __RPC__out GUID *pguidPlatform); HRESULT ( STDMETHODCALLTYPE *get_IsPackaged )( __RPC__in IVsDebuggableProjectCfg2 * This, /* [out] */ __RPC__out BOOL *pfIsPackaged); HRESULT ( STDMETHODCALLTYPE *get_IsSpecifyingOutputSupported )( __RPC__in IVsDebuggableProjectCfg2 * This, /* [out] */ __RPC__out BOOL *pfIsSpecifyingOutputSupported); HRESULT ( STDMETHODCALLTYPE *get_TargetCodePage )( __RPC__in IVsDebuggableProjectCfg2 * This, /* [out] */ __RPC__out UINT *puiTargetCodePage); HRESULT ( STDMETHODCALLTYPE *get_UpdateSequenceNumber )( __RPC__in IVsDebuggableProjectCfg2 * This, /* [out] */ __RPC__out ULARGE_INTEGER *puliUSN); HRESULT ( STDMETHODCALLTYPE *get_RootURL )( __RPC__in IVsDebuggableProjectCfg2 * This, /* [out] */ __RPC__deref_out_opt BSTR *pbstrRootURL); HRESULT ( STDMETHODCALLTYPE *DebugLaunch )( __RPC__in IVsDebuggableProjectCfg2 * This, /* [in] */ VSDBGLAUNCHFLAGS grfLaunch); HRESULT ( STDMETHODCALLTYPE *QueryDebugLaunch )( __RPC__in IVsDebuggableProjectCfg2 * This, /* [in] */ VSDBGLAUNCHFLAGS grfLaunch, /* [out] */ __RPC__out BOOL *pfCanLaunch); HRESULT ( STDMETHODCALLTYPE *OnBeforeDebugLaunch )( __RPC__in IVsDebuggableProjectCfg2 * This, /* [in] */ VSDBGLAUNCHFLAGS grfLaunch); END_INTERFACE } IVsDebuggableProjectCfg2Vtbl; interface IVsDebuggableProjectCfg2 { CONST_VTBL struct IVsDebuggableProjectCfg2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsDebuggableProjectCfg2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsDebuggableProjectCfg2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsDebuggableProjectCfg2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsDebuggableProjectCfg2_get_DisplayName(This,pbstrDisplayName) \ ( (This)->lpVtbl -> get_DisplayName(This,pbstrDisplayName) ) #define IVsDebuggableProjectCfg2_get_IsDebugOnly(This,pfIsDebugOnly) \ ( (This)->lpVtbl -> get_IsDebugOnly(This,pfIsDebugOnly) ) #define IVsDebuggableProjectCfg2_get_IsReleaseOnly(This,pfIsReleaseOnly) \ ( (This)->lpVtbl -> get_IsReleaseOnly(This,pfIsReleaseOnly) ) #define IVsDebuggableProjectCfg2_EnumOutputs(This,ppIVsEnumOutputs) \ ( (This)->lpVtbl -> EnumOutputs(This,ppIVsEnumOutputs) ) #define IVsDebuggableProjectCfg2_OpenOutput(This,szOutputCanonicalName,ppIVsOutput) \ ( (This)->lpVtbl -> OpenOutput(This,szOutputCanonicalName,ppIVsOutput) ) #define IVsDebuggableProjectCfg2_get_ProjectCfgProvider(This,ppIVsProjectCfgProvider) \ ( (This)->lpVtbl -> get_ProjectCfgProvider(This,ppIVsProjectCfgProvider) ) #define IVsDebuggableProjectCfg2_get_BuildableProjectCfg(This,ppIVsBuildableProjectCfg) \ ( (This)->lpVtbl -> get_BuildableProjectCfg(This,ppIVsBuildableProjectCfg) ) #define IVsDebuggableProjectCfg2_get_CanonicalName(This,pbstrCanonicalName) \ ( (This)->lpVtbl -> get_CanonicalName(This,pbstrCanonicalName) ) #define IVsDebuggableProjectCfg2_get_Platform(This,pguidPlatform) \ ( (This)->lpVtbl -> get_Platform(This,pguidPlatform) ) #define IVsDebuggableProjectCfg2_get_IsPackaged(This,pfIsPackaged) \ ( (This)->lpVtbl -> get_IsPackaged(This,pfIsPackaged) ) #define IVsDebuggableProjectCfg2_get_IsSpecifyingOutputSupported(This,pfIsSpecifyingOutputSupported) \ ( (This)->lpVtbl -> get_IsSpecifyingOutputSupported(This,pfIsSpecifyingOutputSupported) ) #define IVsDebuggableProjectCfg2_get_TargetCodePage(This,puiTargetCodePage) \ ( (This)->lpVtbl -> get_TargetCodePage(This,puiTargetCodePage) ) #define IVsDebuggableProjectCfg2_get_UpdateSequenceNumber(This,puliUSN) \ ( (This)->lpVtbl -> get_UpdateSequenceNumber(This,puliUSN) ) #define IVsDebuggableProjectCfg2_get_RootURL(This,pbstrRootURL) \ ( (This)->lpVtbl -> get_RootURL(This,pbstrRootURL) ) #define IVsDebuggableProjectCfg2_DebugLaunch(This,grfLaunch) \ ( (This)->lpVtbl -> DebugLaunch(This,grfLaunch) ) #define IVsDebuggableProjectCfg2_QueryDebugLaunch(This,grfLaunch,pfCanLaunch) \ ( (This)->lpVtbl -> QueryDebugLaunch(This,grfLaunch,pfCanLaunch) ) #define IVsDebuggableProjectCfg2_OnBeforeDebugLaunch(This,grfLaunch) \ ( (This)->lpVtbl -> OnBeforeDebugLaunch(This,grfLaunch) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsDebuggableProjectCfg2_INTERFACE_DEFINED__ */ #ifndef __IVsProvideUserContext2_INTERFACE_DEFINED__ #define __IVsProvideUserContext2_INTERFACE_DEFINED__ /* interface IVsProvideUserContext2 */ /* [version][object][uuid] */ EXTERN_C const IID IID_IVsProvideUserContext2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("3931DEF1-8200-481f-A6C2-A4740DE84658") IVsProvideUserContext2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetUserContextEx( /* [out] */ __RPC__deref_out_opt IVsUserContext **ppctx, /* [out] */ __RPC__out int *iPriority) = 0; }; #else /* C style interface */ typedef struct IVsProvideUserContext2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsProvideUserContext2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsProvideUserContext2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsProvideUserContext2 * This); HRESULT ( STDMETHODCALLTYPE *GetUserContextEx )( __RPC__in IVsProvideUserContext2 * This, /* [out] */ __RPC__deref_out_opt IVsUserContext **ppctx, /* [out] */ __RPC__out int *iPriority); END_INTERFACE } IVsProvideUserContext2Vtbl; interface IVsProvideUserContext2 { CONST_VTBL struct IVsProvideUserContext2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsProvideUserContext2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsProvideUserContext2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsProvideUserContext2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsProvideUserContext2_GetUserContextEx(This,ppctx,iPriority) \ ( (This)->lpVtbl -> GetUserContextEx(This,ppctx,iPriority) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsProvideUserContext2_INTERFACE_DEFINED__ */ #ifndef __IVsExtensibility3_INTERFACE_DEFINED__ #define __IVsExtensibility3_INTERFACE_DEFINED__ /* interface IVsExtensibility3 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsExtensibility3; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("a17be28d-6cdc-4c1e-be3e-f0ed067ea3e2") IVsExtensibility3 : public IUnknown { public: virtual /* [id] */ HRESULT STDMETHODCALLTYPE GetProperties( /* [in] */ __RPC__in_opt IUnknown *pParent, /* [in] */ __RPC__in_opt IDispatch *pdispPropObj, /* [out] */ __RPC__deref_out_opt IDispatch **ppProperties) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE RunWizardFile( /* [in] */ __RPC__in BSTR bstrWizFilename, /* [in] */ long hwndOwner, /* [in] */ __RPC__deref_in_opt SAFEARRAY * *vContextParams, /* [retval][out] */ __RPC__out long *pResult) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE EnterAutomationFunction( void) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE ExitAutomationFunction( void) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE IsInAutomationFunction( /* [retval][out] */ __RPC__out BOOL *pfInAutoFunc) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE GetUserControl( /* [out] */ __RPC__out VARIANT_BOOL *fUserControl) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE SetUserControl( /* [in] */ VARIANT_BOOL fUserControl) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE SetUserControlUnlatched( /* [in] */ VARIANT_BOOL fUserControl) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE LockServer( /* [in] */ VARIANT_BOOL __MIDL__IVsExtensibility30000) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE GetLockCount( /* [retval][out] */ __RPC__out long *pCount) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE TestForShutdown( /* [retval][out] */ __RPC__out VARIANT_BOOL *fShutdown) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE GetGlobalsObject( /* [in] */ VARIANT ExtractFrom, /* [retval][out] */ __RPC__deref_out_opt IUnknown **ppGlobals) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE GetConfigMgr( /* [in] */ __RPC__in_opt IUnknown *pIVsProject, /* [in] */ DWORD_PTR itemid, /* [retval][out] */ __RPC__deref_out_opt IUnknown **ppCfgMgr) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE FireMacroReset( void) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE GetDocumentFromDocCookie( /* [in] */ LONG_PTR lDocCookie, /* [retval][out] */ __RPC__deref_out_opt IUnknown **ppDoc) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE IsMethodDisabled( /* [in] */ __RPC__in const GUID *pGUID, /* [in] */ long dispid) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE SetSuppressUI( /* [in] */ VARIANT_BOOL In) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE GetSuppressUI( /* [out][in] */ __RPC__inout VARIANT_BOOL *pOut) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE FireProjectsEvent_ItemAdded( /* [in] */ __RPC__in_opt IUnknown *Project) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE FireProjectsEvent_ItemRemoved( /* [in] */ __RPC__in_opt IUnknown *Project) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE FireProjectsEvent_ItemRenamed( /* [in] */ __RPC__in_opt IUnknown *Project, /* [in] */ __RPC__in BSTR OldName) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE FireProjectItemsEvent_ItemAdded( /* [in] */ __RPC__in_opt IUnknown *ProjectItem) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE FireProjectItemsEvent_ItemRemoved( /* [in] */ __RPC__in_opt IUnknown *ProjectItem) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE FireProjectItemsEvent_ItemRenamed( /* [in] */ __RPC__in_opt IUnknown *ProjectItem, /* [in] */ __RPC__in BSTR OldName) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE IsFireCodeModelEventNeeded( /* [out][in] */ __RPC__inout VARIANT_BOOL *vbNeeded) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE RunWizardFileEx( /* [in] */ __RPC__in BSTR bstrWizFilename, /* [in] */ long hwndOwner, /* [in] */ __RPC__deref_in_opt SAFEARRAY * *vContextParams, /* [in] */ __RPC__deref_in_opt SAFEARRAY * *vCustomParams, /* [retval][out] */ __RPC__out long *pResult) = 0; virtual /* [id] */ HRESULT STDMETHODCALLTYPE FireCodeModelEvent3( /* [in] */ DISPID dispid, /* [in] */ __RPC__in_opt IDispatch *pParent, /* [in] */ __RPC__in_opt IUnknown *pElement, /* [in] */ long changeKind) = 0; }; #else /* C style interface */ typedef struct IVsExtensibility3Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsExtensibility3 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsExtensibility3 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsExtensibility3 * This); /* [id] */ HRESULT ( STDMETHODCALLTYPE *GetProperties )( __RPC__in IVsExtensibility3 * This, /* [in] */ __RPC__in_opt IUnknown *pParent, /* [in] */ __RPC__in_opt IDispatch *pdispPropObj, /* [out] */ __RPC__deref_out_opt IDispatch **ppProperties); /* [id] */ HRESULT ( STDMETHODCALLTYPE *RunWizardFile )( __RPC__in IVsExtensibility3 * This, /* [in] */ __RPC__in BSTR bstrWizFilename, /* [in] */ long hwndOwner, /* [in] */ __RPC__deref_in_opt SAFEARRAY * *vContextParams, /* [retval][out] */ __RPC__out long *pResult); /* [id] */ HRESULT ( STDMETHODCALLTYPE *EnterAutomationFunction )( __RPC__in IVsExtensibility3 * This); /* [id] */ HRESULT ( STDMETHODCALLTYPE *ExitAutomationFunction )( __RPC__in IVsExtensibility3 * This); /* [id] */ HRESULT ( STDMETHODCALLTYPE *IsInAutomationFunction )( __RPC__in IVsExtensibility3 * This, /* [retval][out] */ __RPC__out BOOL *pfInAutoFunc); /* [id] */ HRESULT ( STDMETHODCALLTYPE *GetUserControl )( __RPC__in IVsExtensibility3 * This, /* [out] */ __RPC__out VARIANT_BOOL *fUserControl); /* [id] */ HRESULT ( STDMETHODCALLTYPE *SetUserControl )( __RPC__in IVsExtensibility3 * This, /* [in] */ VARIANT_BOOL fUserControl); /* [id] */ HRESULT ( STDMETHODCALLTYPE *SetUserControlUnlatched )( __RPC__in IVsExtensibility3 * This, /* [in] */ VARIANT_BOOL fUserControl); /* [id] */ HRESULT ( STDMETHODCALLTYPE *LockServer )( __RPC__in IVsExtensibility3 * This, /* [in] */ VARIANT_BOOL __MIDL__IVsExtensibility30000); /* [id] */ HRESULT ( STDMETHODCALLTYPE *GetLockCount )( __RPC__in IVsExtensibility3 * This, /* [retval][out] */ __RPC__out long *pCount); /* [id] */ HRESULT ( STDMETHODCALLTYPE *TestForShutdown )( __RPC__in IVsExtensibility3 * This, /* [retval][out] */ __RPC__out VARIANT_BOOL *fShutdown); /* [id] */ HRESULT ( STDMETHODCALLTYPE *GetGlobalsObject )( __RPC__in IVsExtensibility3 * This, /* [in] */ VARIANT ExtractFrom, /* [retval][out] */ __RPC__deref_out_opt IUnknown **ppGlobals); /* [id] */ HRESULT ( STDMETHODCALLTYPE *GetConfigMgr )( __RPC__in IVsExtensibility3 * This, /* [in] */ __RPC__in_opt IUnknown *pIVsProject, /* [in] */ DWORD_PTR itemid, /* [retval][out] */ __RPC__deref_out_opt IUnknown **ppCfgMgr); /* [id] */ HRESULT ( STDMETHODCALLTYPE *FireMacroReset )( __RPC__in IVsExtensibility3 * This); /* [id] */ HRESULT ( STDMETHODCALLTYPE *GetDocumentFromDocCookie )( __RPC__in IVsExtensibility3 * This, /* [in] */ LONG_PTR lDocCookie, /* [retval][out] */ __RPC__deref_out_opt IUnknown **ppDoc); /* [id] */ HRESULT ( STDMETHODCALLTYPE *IsMethodDisabled )( __RPC__in IVsExtensibility3 * This, /* [in] */ __RPC__in const GUID *pGUID, /* [in] */ long dispid); /* [id] */ HRESULT ( STDMETHODCALLTYPE *SetSuppressUI )( __RPC__in IVsExtensibility3 * This, /* [in] */ VARIANT_BOOL In); /* [id] */ HRESULT ( STDMETHODCALLTYPE *GetSuppressUI )( __RPC__in IVsExtensibility3 * This, /* [out][in] */ __RPC__inout VARIANT_BOOL *pOut); /* [id] */ HRESULT ( STDMETHODCALLTYPE *FireProjectsEvent_ItemAdded )( __RPC__in IVsExtensibility3 * This, /* [in] */ __RPC__in_opt IUnknown *Project); /* [id] */ HRESULT ( STDMETHODCALLTYPE *FireProjectsEvent_ItemRemoved )( __RPC__in IVsExtensibility3 * This, /* [in] */ __RPC__in_opt IUnknown *Project); /* [id] */ HRESULT ( STDMETHODCALLTYPE *FireProjectsEvent_ItemRenamed )( __RPC__in IVsExtensibility3 * This, /* [in] */ __RPC__in_opt IUnknown *Project, /* [in] */ __RPC__in BSTR OldName); /* [id] */ HRESULT ( STDMETHODCALLTYPE *FireProjectItemsEvent_ItemAdded )( __RPC__in IVsExtensibility3 * This, /* [in] */ __RPC__in_opt IUnknown *ProjectItem); /* [id] */ HRESULT ( STDMETHODCALLTYPE *FireProjectItemsEvent_ItemRemoved )( __RPC__in IVsExtensibility3 * This, /* [in] */ __RPC__in_opt IUnknown *ProjectItem); /* [id] */ HRESULT ( STDMETHODCALLTYPE *FireProjectItemsEvent_ItemRenamed )( __RPC__in IVsExtensibility3 * This, /* [in] */ __RPC__in_opt IUnknown *ProjectItem, /* [in] */ __RPC__in BSTR OldName); /* [id] */ HRESULT ( STDMETHODCALLTYPE *IsFireCodeModelEventNeeded )( __RPC__in IVsExtensibility3 * This, /* [out][in] */ __RPC__inout VARIANT_BOOL *vbNeeded); /* [id] */ HRESULT ( STDMETHODCALLTYPE *RunWizardFileEx )( __RPC__in IVsExtensibility3 * This, /* [in] */ __RPC__in BSTR bstrWizFilename, /* [in] */ long hwndOwner, /* [in] */ __RPC__deref_in_opt SAFEARRAY * *vContextParams, /* [in] */ __RPC__deref_in_opt SAFEARRAY * *vCustomParams, /* [retval][out] */ __RPC__out long *pResult); /* [id] */ HRESULT ( STDMETHODCALLTYPE *FireCodeModelEvent3 )( __RPC__in IVsExtensibility3 * This, /* [in] */ DISPID dispid, /* [in] */ __RPC__in_opt IDispatch *pParent, /* [in] */ __RPC__in_opt IUnknown *pElement, /* [in] */ long changeKind); END_INTERFACE } IVsExtensibility3Vtbl; interface IVsExtensibility3 { CONST_VTBL struct IVsExtensibility3Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsExtensibility3_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsExtensibility3_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsExtensibility3_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsExtensibility3_GetProperties(This,pParent,pdispPropObj,ppProperties) \ ( (This)->lpVtbl -> GetProperties(This,pParent,pdispPropObj,ppProperties) ) #define IVsExtensibility3_RunWizardFile(This,bstrWizFilename,hwndOwner,vContextParams,pResult) \ ( (This)->lpVtbl -> RunWizardFile(This,bstrWizFilename,hwndOwner,vContextParams,pResult) ) #define IVsExtensibility3_EnterAutomationFunction(This) \ ( (This)->lpVtbl -> EnterAutomationFunction(This) ) #define IVsExtensibility3_ExitAutomationFunction(This) \ ( (This)->lpVtbl -> ExitAutomationFunction(This) ) #define IVsExtensibility3_IsInAutomationFunction(This,pfInAutoFunc) \ ( (This)->lpVtbl -> IsInAutomationFunction(This,pfInAutoFunc) ) #define IVsExtensibility3_GetUserControl(This,fUserControl) \ ( (This)->lpVtbl -> GetUserControl(This,fUserControl) ) #define IVsExtensibility3_SetUserControl(This,fUserControl) \ ( (This)->lpVtbl -> SetUserControl(This,fUserControl) ) #define IVsExtensibility3_SetUserControlUnlatched(This,fUserControl) \ ( (This)->lpVtbl -> SetUserControlUnlatched(This,fUserControl) ) #define IVsExtensibility3_LockServer(This,__MIDL__IVsExtensibility30000) \ ( (This)->lpVtbl -> LockServer(This,__MIDL__IVsExtensibility30000) ) #define IVsExtensibility3_GetLockCount(This,pCount) \ ( (This)->lpVtbl -> GetLockCount(This,pCount) ) #define IVsExtensibility3_TestForShutdown(This,fShutdown) \ ( (This)->lpVtbl -> TestForShutdown(This,fShutdown) ) #define IVsExtensibility3_GetGlobalsObject(This,ExtractFrom,ppGlobals) \ ( (This)->lpVtbl -> GetGlobalsObject(This,ExtractFrom,ppGlobals) ) #define IVsExtensibility3_GetConfigMgr(This,pIVsProject,itemid,ppCfgMgr) \ ( (This)->lpVtbl -> GetConfigMgr(This,pIVsProject,itemid,ppCfgMgr) ) #define IVsExtensibility3_FireMacroReset(This) \ ( (This)->lpVtbl -> FireMacroReset(This) ) #define IVsExtensibility3_GetDocumentFromDocCookie(This,lDocCookie,ppDoc) \ ( (This)->lpVtbl -> GetDocumentFromDocCookie(This,lDocCookie,ppDoc) ) #define IVsExtensibility3_IsMethodDisabled(This,pGUID,dispid) \ ( (This)->lpVtbl -> IsMethodDisabled(This,pGUID,dispid) ) #define IVsExtensibility3_SetSuppressUI(This,In) \ ( (This)->lpVtbl -> SetSuppressUI(This,In) ) #define IVsExtensibility3_GetSuppressUI(This,pOut) \ ( (This)->lpVtbl -> GetSuppressUI(This,pOut) ) #define IVsExtensibility3_FireProjectsEvent_ItemAdded(This,Project) \ ( (This)->lpVtbl -> FireProjectsEvent_ItemAdded(This,Project) ) #define IVsExtensibility3_FireProjectsEvent_ItemRemoved(This,Project) \ ( (This)->lpVtbl -> FireProjectsEvent_ItemRemoved(This,Project) ) #define IVsExtensibility3_FireProjectsEvent_ItemRenamed(This,Project,OldName) \ ( (This)->lpVtbl -> FireProjectsEvent_ItemRenamed(This,Project,OldName) ) #define IVsExtensibility3_FireProjectItemsEvent_ItemAdded(This,ProjectItem) \ ( (This)->lpVtbl -> FireProjectItemsEvent_ItemAdded(This,ProjectItem) ) #define IVsExtensibility3_FireProjectItemsEvent_ItemRemoved(This,ProjectItem) \ ( (This)->lpVtbl -> FireProjectItemsEvent_ItemRemoved(This,ProjectItem) ) #define IVsExtensibility3_FireProjectItemsEvent_ItemRenamed(This,ProjectItem,OldName) \ ( (This)->lpVtbl -> FireProjectItemsEvent_ItemRenamed(This,ProjectItem,OldName) ) #define IVsExtensibility3_IsFireCodeModelEventNeeded(This,vbNeeded) \ ( (This)->lpVtbl -> IsFireCodeModelEventNeeded(This,vbNeeded) ) #define IVsExtensibility3_RunWizardFileEx(This,bstrWizFilename,hwndOwner,vContextParams,vCustomParams,pResult) \ ( (This)->lpVtbl -> RunWizardFileEx(This,bstrWizFilename,hwndOwner,vContextParams,vCustomParams,pResult) ) #define IVsExtensibility3_FireCodeModelEvent3(This,dispid,pParent,pElement,changeKind) \ ( (This)->lpVtbl -> FireCodeModelEvent3(This,dispid,pParent,pElement,changeKind) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsExtensibility3_INTERFACE_DEFINED__ */ #ifndef __IVsGlobalsCallback2_INTERFACE_DEFINED__ #define __IVsGlobalsCallback2_INTERFACE_DEFINED__ /* interface IVsGlobalsCallback2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsGlobalsCallback2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("5447ce90-561e-4c8e-be70-9fd5f89bcfa7") IVsGlobalsCallback2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE WriteVariablesToData( /* [in] */ __RPC__in LPCOLESTR pVariableName, /* [in] */ __RPC__in VARIANT *varData) = 0; virtual HRESULT STDMETHODCALLTYPE ReadData( /* [in] */ __RPC__in_opt IUnknown *pGlobals) = 0; virtual HRESULT STDMETHODCALLTYPE ClearVariables( void) = 0; virtual HRESULT STDMETHODCALLTYPE VariableChanged( void) = 0; virtual HRESULT STDMETHODCALLTYPE CanModifySource( void) = 0; virtual HRESULT STDMETHODCALLTYPE GetParent( __RPC__deref_in_opt IDispatch **ppOut) = 0; }; #else /* C style interface */ typedef struct IVsGlobalsCallback2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsGlobalsCallback2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsGlobalsCallback2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsGlobalsCallback2 * This); HRESULT ( STDMETHODCALLTYPE *WriteVariablesToData )( __RPC__in IVsGlobalsCallback2 * This, /* [in] */ __RPC__in LPCOLESTR pVariableName, /* [in] */ __RPC__in VARIANT *varData); HRESULT ( STDMETHODCALLTYPE *ReadData )( __RPC__in IVsGlobalsCallback2 * This, /* [in] */ __RPC__in_opt IUnknown *pGlobals); HRESULT ( STDMETHODCALLTYPE *ClearVariables )( __RPC__in IVsGlobalsCallback2 * This); HRESULT ( STDMETHODCALLTYPE *VariableChanged )( __RPC__in IVsGlobalsCallback2 * This); HRESULT ( STDMETHODCALLTYPE *CanModifySource )( __RPC__in IVsGlobalsCallback2 * This); HRESULT ( STDMETHODCALLTYPE *GetParent )( __RPC__in IVsGlobalsCallback2 * This, __RPC__deref_in_opt IDispatch **ppOut); END_INTERFACE } IVsGlobalsCallback2Vtbl; interface IVsGlobalsCallback2 { CONST_VTBL struct IVsGlobalsCallback2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsGlobalsCallback2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsGlobalsCallback2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsGlobalsCallback2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsGlobalsCallback2_WriteVariablesToData(This,pVariableName,varData) \ ( (This)->lpVtbl -> WriteVariablesToData(This,pVariableName,varData) ) #define IVsGlobalsCallback2_ReadData(This,pGlobals) \ ( (This)->lpVtbl -> ReadData(This,pGlobals) ) #define IVsGlobalsCallback2_ClearVariables(This) \ ( (This)->lpVtbl -> ClearVariables(This) ) #define IVsGlobalsCallback2_VariableChanged(This) \ ( (This)->lpVtbl -> VariableChanged(This) ) #define IVsGlobalsCallback2_CanModifySource(This) \ ( (This)->lpVtbl -> CanModifySource(This) ) #define IVsGlobalsCallback2_GetParent(This,ppOut) \ ( (This)->lpVtbl -> GetParent(This,ppOut) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsGlobalsCallback2_INTERFACE_DEFINED__ */ #ifndef __IVsGlobals2_INTERFACE_DEFINED__ #define __IVsGlobals2_INTERFACE_DEFINED__ /* interface IVsGlobals2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsGlobals2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("ac735863-23ef-46ed-a3ec-87b58b3df5da") IVsGlobals2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE Load( void) = 0; virtual HRESULT STDMETHODCALLTYPE Save( void) = 0; virtual HRESULT STDMETHODCALLTYPE Empty( void) = 0; }; #else /* C style interface */ typedef struct IVsGlobals2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsGlobals2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsGlobals2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsGlobals2 * This); HRESULT ( STDMETHODCALLTYPE *Load )( __RPC__in IVsGlobals2 * This); HRESULT ( STDMETHODCALLTYPE *Save )( __RPC__in IVsGlobals2 * This); HRESULT ( STDMETHODCALLTYPE *Empty )( __RPC__in IVsGlobals2 * This); END_INTERFACE } IVsGlobals2Vtbl; interface IVsGlobals2 { CONST_VTBL struct IVsGlobals2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsGlobals2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsGlobals2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsGlobals2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsGlobals2_Load(This) \ ( (This)->lpVtbl -> Load(This) ) #define IVsGlobals2_Save(This) \ ( (This)->lpVtbl -> Save(This) ) #define IVsGlobals2_Empty(This) \ ( (This)->lpVtbl -> Empty(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsGlobals2_INTERFACE_DEFINED__ */ #ifndef __IVsProfferCommands3_INTERFACE_DEFINED__ #define __IVsProfferCommands3_INTERFACE_DEFINED__ /* interface IVsProfferCommands3 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsProfferCommands3; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("3a83904d-4540-4c51-95a7-618b32a9a9c0") IVsProfferCommands3 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE AddNamedCommand( /* [in] */ __RPC__in const GUID *pguidPackage, /* [in] */ __RPC__in const GUID *pguidCmdGroup, /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdNameCanonical, /* [out] */ __RPC__out DWORD *pdwCmdId, /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdNameLocalized, /* [string][in] */ __RPC__in_string const LPCOLESTR pszBtnText, /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdTooltip, /* [string][in] */ __RPC__in_string const LPCOLESTR pszSatelliteDLL, /* [in] */ DWORD dwBitmapResourceId, /* [in] */ DWORD dwBitmapImageIndex, /* [in] */ DWORD dwCmdFlagsDefault, /* [in] */ DWORD cUIContexts, /* [size_is][in] */ __RPC__in_ecount_full(cUIContexts) const GUID *rgguidUIContexts) = 0; virtual HRESULT STDMETHODCALLTYPE RemoveNamedCommand( /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdNameCanonical) = 0; virtual HRESULT STDMETHODCALLTYPE RenameNamedCommand( /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdNameCanonical, /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdNameCanonicalNew, /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdNameLocalizedNew) = 0; virtual HRESULT STDMETHODCALLTYPE AddCommandBarControl( /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdNameCanonical, /* [in] */ __RPC__in_opt IDispatch *pCmdBarParent, /* [in] */ DWORD dwIndex, /* [in] */ DWORD dwCmdType, /* [out] */ __RPC__deref_out_opt IDispatch **ppCmdBarCtrl) = 0; virtual HRESULT STDMETHODCALLTYPE RemoveCommandBarControl( /* [in] */ __RPC__in_opt IDispatch *pCmdBarCtrl) = 0; virtual HRESULT STDMETHODCALLTYPE AddCommandBar( /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdBarName, /* [in] */ DWORD dwType, /* [in] */ __RPC__in_opt IDispatch *pCmdBarParent, /* [in] */ DWORD dwIndex, /* [out] */ __RPC__deref_out_opt IDispatch **ppCmdBar) = 0; virtual HRESULT STDMETHODCALLTYPE RemoveCommandBar( /* [in] */ __RPC__in_opt IDispatch *pCmdBar) = 0; virtual HRESULT STDMETHODCALLTYPE FindCommandBar( /* [in] */ __RPC__in_opt IUnknown *pToolbarSet, /* [in] */ __RPC__in const GUID *pguidCmdGroup, /* [in] */ DWORD dwMenuId, /* [retval][out] */ __RPC__deref_out_opt IDispatch **ppdispCmdBar) = 0; virtual HRESULT STDMETHODCALLTYPE AddNamedCommand2( /* [in] */ __RPC__in const GUID *pguidPackage, /* [in] */ __RPC__in const GUID *pguidCmdGroup, /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdNameCanonical, /* [out] */ __RPC__out DWORD *pdwCmdId, /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdNameLocalized, /* [string][in] */ __RPC__in_string const LPCOLESTR pszBtnText, /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdTooltip, /* [string][in] */ __RPC__in_string const LPCOLESTR pszSatelliteDLL, /* [in] */ DWORD dwBitmapResourceId, /* [in] */ DWORD dwBitmapImageIndex, /* [in] */ DWORD dwCmdFlagsDefault, /* [in] */ DWORD cUIContexts, /* [size_is][in] */ __RPC__in_ecount_full(cUIContexts) const GUID *rgguidUIContexts, /* [in] */ DWORD dwUIElementType) = 0; }; #else /* C style interface */ typedef struct IVsProfferCommands3Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsProfferCommands3 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsProfferCommands3 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsProfferCommands3 * This); HRESULT ( STDMETHODCALLTYPE *AddNamedCommand )( __RPC__in IVsProfferCommands3 * This, /* [in] */ __RPC__in const GUID *pguidPackage, /* [in] */ __RPC__in const GUID *pguidCmdGroup, /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdNameCanonical, /* [out] */ __RPC__out DWORD *pdwCmdId, /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdNameLocalized, /* [string][in] */ __RPC__in_string const LPCOLESTR pszBtnText, /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdTooltip, /* [string][in] */ __RPC__in_string const LPCOLESTR pszSatelliteDLL, /* [in] */ DWORD dwBitmapResourceId, /* [in] */ DWORD dwBitmapImageIndex, /* [in] */ DWORD dwCmdFlagsDefault, /* [in] */ DWORD cUIContexts, /* [size_is][in] */ __RPC__in_ecount_full(cUIContexts) const GUID *rgguidUIContexts); HRESULT ( STDMETHODCALLTYPE *RemoveNamedCommand )( __RPC__in IVsProfferCommands3 * This, /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdNameCanonical); HRESULT ( STDMETHODCALLTYPE *RenameNamedCommand )( __RPC__in IVsProfferCommands3 * This, /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdNameCanonical, /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdNameCanonicalNew, /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdNameLocalizedNew); HRESULT ( STDMETHODCALLTYPE *AddCommandBarControl )( __RPC__in IVsProfferCommands3 * This, /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdNameCanonical, /* [in] */ __RPC__in_opt IDispatch *pCmdBarParent, /* [in] */ DWORD dwIndex, /* [in] */ DWORD dwCmdType, /* [out] */ __RPC__deref_out_opt IDispatch **ppCmdBarCtrl); HRESULT ( STDMETHODCALLTYPE *RemoveCommandBarControl )( __RPC__in IVsProfferCommands3 * This, /* [in] */ __RPC__in_opt IDispatch *pCmdBarCtrl); HRESULT ( STDMETHODCALLTYPE *AddCommandBar )( __RPC__in IVsProfferCommands3 * This, /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdBarName, /* [in] */ DWORD dwType, /* [in] */ __RPC__in_opt IDispatch *pCmdBarParent, /* [in] */ DWORD dwIndex, /* [out] */ __RPC__deref_out_opt IDispatch **ppCmdBar); HRESULT ( STDMETHODCALLTYPE *RemoveCommandBar )( __RPC__in IVsProfferCommands3 * This, /* [in] */ __RPC__in_opt IDispatch *pCmdBar); HRESULT ( STDMETHODCALLTYPE *FindCommandBar )( __RPC__in IVsProfferCommands3 * This, /* [in] */ __RPC__in_opt IUnknown *pToolbarSet, /* [in] */ __RPC__in const GUID *pguidCmdGroup, /* [in] */ DWORD dwMenuId, /* [retval][out] */ __RPC__deref_out_opt IDispatch **ppdispCmdBar); HRESULT ( STDMETHODCALLTYPE *AddNamedCommand2 )( __RPC__in IVsProfferCommands3 * This, /* [in] */ __RPC__in const GUID *pguidPackage, /* [in] */ __RPC__in const GUID *pguidCmdGroup, /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdNameCanonical, /* [out] */ __RPC__out DWORD *pdwCmdId, /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdNameLocalized, /* [string][in] */ __RPC__in_string const LPCOLESTR pszBtnText, /* [string][in] */ __RPC__in_string const LPCOLESTR pszCmdTooltip, /* [string][in] */ __RPC__in_string const LPCOLESTR pszSatelliteDLL, /* [in] */ DWORD dwBitmapResourceId, /* [in] */ DWORD dwBitmapImageIndex, /* [in] */ DWORD dwCmdFlagsDefault, /* [in] */ DWORD cUIContexts, /* [size_is][in] */ __RPC__in_ecount_full(cUIContexts) const GUID *rgguidUIContexts, /* [in] */ DWORD dwUIElementType); END_INTERFACE } IVsProfferCommands3Vtbl; interface IVsProfferCommands3 { CONST_VTBL struct IVsProfferCommands3Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsProfferCommands3_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsProfferCommands3_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsProfferCommands3_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsProfferCommands3_AddNamedCommand(This,pguidPackage,pguidCmdGroup,pszCmdNameCanonical,pdwCmdId,pszCmdNameLocalized,pszBtnText,pszCmdTooltip,pszSatelliteDLL,dwBitmapResourceId,dwBitmapImageIndex,dwCmdFlagsDefault,cUIContexts,rgguidUIContexts) \ ( (This)->lpVtbl -> AddNamedCommand(This,pguidPackage,pguidCmdGroup,pszCmdNameCanonical,pdwCmdId,pszCmdNameLocalized,pszBtnText,pszCmdTooltip,pszSatelliteDLL,dwBitmapResourceId,dwBitmapImageIndex,dwCmdFlagsDefault,cUIContexts,rgguidUIContexts) ) #define IVsProfferCommands3_RemoveNamedCommand(This,pszCmdNameCanonical) \ ( (This)->lpVtbl -> RemoveNamedCommand(This,pszCmdNameCanonical) ) #define IVsProfferCommands3_RenameNamedCommand(This,pszCmdNameCanonical,pszCmdNameCanonicalNew,pszCmdNameLocalizedNew) \ ( (This)->lpVtbl -> RenameNamedCommand(This,pszCmdNameCanonical,pszCmdNameCanonicalNew,pszCmdNameLocalizedNew) ) #define IVsProfferCommands3_AddCommandBarControl(This,pszCmdNameCanonical,pCmdBarParent,dwIndex,dwCmdType,ppCmdBarCtrl) \ ( (This)->lpVtbl -> AddCommandBarControl(This,pszCmdNameCanonical,pCmdBarParent,dwIndex,dwCmdType,ppCmdBarCtrl) ) #define IVsProfferCommands3_RemoveCommandBarControl(This,pCmdBarCtrl) \ ( (This)->lpVtbl -> RemoveCommandBarControl(This,pCmdBarCtrl) ) #define IVsProfferCommands3_AddCommandBar(This,pszCmdBarName,dwType,pCmdBarParent,dwIndex,ppCmdBar) \ ( (This)->lpVtbl -> AddCommandBar(This,pszCmdBarName,dwType,pCmdBarParent,dwIndex,ppCmdBar) ) #define IVsProfferCommands3_RemoveCommandBar(This,pCmdBar) \ ( (This)->lpVtbl -> RemoveCommandBar(This,pCmdBar) ) #define IVsProfferCommands3_FindCommandBar(This,pToolbarSet,pguidCmdGroup,dwMenuId,ppdispCmdBar) \ ( (This)->lpVtbl -> FindCommandBar(This,pToolbarSet,pguidCmdGroup,dwMenuId,ppdispCmdBar) ) #define IVsProfferCommands3_AddNamedCommand2(This,pguidPackage,pguidCmdGroup,pszCmdNameCanonical,pdwCmdId,pszCmdNameLocalized,pszBtnText,pszCmdTooltip,pszSatelliteDLL,dwBitmapResourceId,dwBitmapImageIndex,dwCmdFlagsDefault,cUIContexts,rgguidUIContexts,dwUIElementType) \ ( (This)->lpVtbl -> AddNamedCommand2(This,pguidPackage,pguidCmdGroup,pszCmdNameCanonical,pdwCmdId,pszCmdNameLocalized,pszBtnText,pszCmdTooltip,pszSatelliteDLL,dwBitmapResourceId,dwBitmapImageIndex,dwCmdFlagsDefault,cUIContexts,rgguidUIContexts,dwUIElementType) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsProfferCommands3_INTERFACE_DEFINED__ */ #ifndef __IVsHierarchyRefactorNotify_INTERFACE_DEFINED__ #define __IVsHierarchyRefactorNotify_INTERFACE_DEFINED__ /* interface IVsHierarchyRefactorNotify */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsHierarchyRefactorNotify; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("FE5FEE31-C302-4961-876F-F3C8F853E4F8") IVsHierarchyRefactorNotify : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE OnBeforeGlobalSymbolRenamed( /* [in] */ ULONG cItemsAffected, /* [size_is][in] */ __RPC__in_ecount_full(cItemsAffected) VSITEMID rgItemsAffected[ ], /* [in] */ ULONG cRQNames, /* [size_is][in] */ __RPC__in_ecount_full(cRQNames) LPCOLESTR rglpszRQName[ ], /* [in] */ __RPC__in LPCOLESTR lpszNewName, /* [in] */ BOOL promptContinueOnFail) = 0; virtual HRESULT STDMETHODCALLTYPE OnGlobalSymbolRenamed( /* [in] */ ULONG cItemsAffected, /* [size_is][in] */ __RPC__in_ecount_full(cItemsAffected) VSITEMID rgItemsAffected[ ], /* [in] */ ULONG cRQNames, /* [size_is][in] */ __RPC__in_ecount_full(cRQNames) LPCOLESTR rglpszRQName[ ], /* [in] */ __RPC__in LPCOLESTR lpszNewName) = 0; virtual HRESULT STDMETHODCALLTYPE OnBeforeReorderParams( /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParamIndexes, /* [size_is][in] */ __RPC__in_ecount_full(cParamIndexes) ULONG rgParamIndexes[ ], /* [in] */ BOOL promptContinueOnFail) = 0; virtual HRESULT STDMETHODCALLTYPE OnReorderParams( /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParamIndexes, /* [size_is][in] */ __RPC__in_ecount_full(cParamIndexes) ULONG rgParamIndexes[ ]) = 0; virtual HRESULT STDMETHODCALLTYPE OnBeforeRemoveParams( /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParamIndexes, /* [size_is][in] */ __RPC__in_ecount_full(cParamIndexes) ULONG rgParamIndexes[ ], /* [in] */ BOOL promptContinueOnFail) = 0; virtual HRESULT STDMETHODCALLTYPE OnRemoveParams( /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParamIndexes, /* [size_is][in] */ __RPC__in_ecount_full(cParamIndexes) ULONG rgParamIndexes[ ]) = 0; virtual HRESULT STDMETHODCALLTYPE OnBeforeAddParams( /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParams, /* [size_is][in] */ __RPC__in_ecount_full(cParams) ULONG rgszParamIndexes[ ], /* [size_is][in] */ __RPC__in_ecount_full(cParams) LPCOLESTR rgszRQTypeNames[ ], /* [size_is][in] */ __RPC__in_ecount_full(cParams) LPCOLESTR rgszParamNames[ ], /* [in] */ BOOL promptContinueOnFail) = 0; virtual HRESULT STDMETHODCALLTYPE OnAddParams( /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParams, /* [size_is][in] */ __RPC__in_ecount_full(cParams) ULONG rgszParamIndexes[ ], /* [size_is][in] */ __RPC__in_ecount_full(cParams) LPCOLESTR rgszRQTypeNames[ ], /* [size_is][in] */ __RPC__in_ecount_full(cParams) LPCOLESTR rgszParamNames[ ]) = 0; }; #else /* C style interface */ typedef struct IVsHierarchyRefactorNotifyVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsHierarchyRefactorNotify * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsHierarchyRefactorNotify * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsHierarchyRefactorNotify * This); HRESULT ( STDMETHODCALLTYPE *OnBeforeGlobalSymbolRenamed )( __RPC__in IVsHierarchyRefactorNotify * This, /* [in] */ ULONG cItemsAffected, /* [size_is][in] */ __RPC__in_ecount_full(cItemsAffected) VSITEMID rgItemsAffected[ ], /* [in] */ ULONG cRQNames, /* [size_is][in] */ __RPC__in_ecount_full(cRQNames) LPCOLESTR rglpszRQName[ ], /* [in] */ __RPC__in LPCOLESTR lpszNewName, /* [in] */ BOOL promptContinueOnFail); HRESULT ( STDMETHODCALLTYPE *OnGlobalSymbolRenamed )( __RPC__in IVsHierarchyRefactorNotify * This, /* [in] */ ULONG cItemsAffected, /* [size_is][in] */ __RPC__in_ecount_full(cItemsAffected) VSITEMID rgItemsAffected[ ], /* [in] */ ULONG cRQNames, /* [size_is][in] */ __RPC__in_ecount_full(cRQNames) LPCOLESTR rglpszRQName[ ], /* [in] */ __RPC__in LPCOLESTR lpszNewName); HRESULT ( STDMETHODCALLTYPE *OnBeforeReorderParams )( __RPC__in IVsHierarchyRefactorNotify * This, /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParamIndexes, /* [size_is][in] */ __RPC__in_ecount_full(cParamIndexes) ULONG rgParamIndexes[ ], /* [in] */ BOOL promptContinueOnFail); HRESULT ( STDMETHODCALLTYPE *OnReorderParams )( __RPC__in IVsHierarchyRefactorNotify * This, /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParamIndexes, /* [size_is][in] */ __RPC__in_ecount_full(cParamIndexes) ULONG rgParamIndexes[ ]); HRESULT ( STDMETHODCALLTYPE *OnBeforeRemoveParams )( __RPC__in IVsHierarchyRefactorNotify * This, /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParamIndexes, /* [size_is][in] */ __RPC__in_ecount_full(cParamIndexes) ULONG rgParamIndexes[ ], /* [in] */ BOOL promptContinueOnFail); HRESULT ( STDMETHODCALLTYPE *OnRemoveParams )( __RPC__in IVsHierarchyRefactorNotify * This, /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParamIndexes, /* [size_is][in] */ __RPC__in_ecount_full(cParamIndexes) ULONG rgParamIndexes[ ]); HRESULT ( STDMETHODCALLTYPE *OnBeforeAddParams )( __RPC__in IVsHierarchyRefactorNotify * This, /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParams, /* [size_is][in] */ __RPC__in_ecount_full(cParams) ULONG rgszParamIndexes[ ], /* [size_is][in] */ __RPC__in_ecount_full(cParams) LPCOLESTR rgszRQTypeNames[ ], /* [size_is][in] */ __RPC__in_ecount_full(cParams) LPCOLESTR rgszParamNames[ ], /* [in] */ BOOL promptContinueOnFail); HRESULT ( STDMETHODCALLTYPE *OnAddParams )( __RPC__in IVsHierarchyRefactorNotify * This, /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParams, /* [size_is][in] */ __RPC__in_ecount_full(cParams) ULONG rgszParamIndexes[ ], /* [size_is][in] */ __RPC__in_ecount_full(cParams) LPCOLESTR rgszRQTypeNames[ ], /* [size_is][in] */ __RPC__in_ecount_full(cParams) LPCOLESTR rgszParamNames[ ]); END_INTERFACE } IVsHierarchyRefactorNotifyVtbl; interface IVsHierarchyRefactorNotify { CONST_VTBL struct IVsHierarchyRefactorNotifyVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsHierarchyRefactorNotify_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsHierarchyRefactorNotify_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsHierarchyRefactorNotify_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsHierarchyRefactorNotify_OnBeforeGlobalSymbolRenamed(This,cItemsAffected,rgItemsAffected,cRQNames,rglpszRQName,lpszNewName,promptContinueOnFail) \ ( (This)->lpVtbl -> OnBeforeGlobalSymbolRenamed(This,cItemsAffected,rgItemsAffected,cRQNames,rglpszRQName,lpszNewName,promptContinueOnFail) ) #define IVsHierarchyRefactorNotify_OnGlobalSymbolRenamed(This,cItemsAffected,rgItemsAffected,cRQNames,rglpszRQName,lpszNewName) \ ( (This)->lpVtbl -> OnGlobalSymbolRenamed(This,cItemsAffected,rgItemsAffected,cRQNames,rglpszRQName,lpszNewName) ) #define IVsHierarchyRefactorNotify_OnBeforeReorderParams(This,itemid,lpszRQName,cParamIndexes,rgParamIndexes,promptContinueOnFail) \ ( (This)->lpVtbl -> OnBeforeReorderParams(This,itemid,lpszRQName,cParamIndexes,rgParamIndexes,promptContinueOnFail) ) #define IVsHierarchyRefactorNotify_OnReorderParams(This,itemid,lpszRQName,cParamIndexes,rgParamIndexes) \ ( (This)->lpVtbl -> OnReorderParams(This,itemid,lpszRQName,cParamIndexes,rgParamIndexes) ) #define IVsHierarchyRefactorNotify_OnBeforeRemoveParams(This,itemid,lpszRQName,cParamIndexes,rgParamIndexes,promptContinueOnFail) \ ( (This)->lpVtbl -> OnBeforeRemoveParams(This,itemid,lpszRQName,cParamIndexes,rgParamIndexes,promptContinueOnFail) ) #define IVsHierarchyRefactorNotify_OnRemoveParams(This,itemid,lpszRQName,cParamIndexes,rgParamIndexes) \ ( (This)->lpVtbl -> OnRemoveParams(This,itemid,lpszRQName,cParamIndexes,rgParamIndexes) ) #define IVsHierarchyRefactorNotify_OnBeforeAddParams(This,itemid,lpszRQName,cParams,rgszParamIndexes,rgszRQTypeNames,rgszParamNames,promptContinueOnFail) \ ( (This)->lpVtbl -> OnBeforeAddParams(This,itemid,lpszRQName,cParams,rgszParamIndexes,rgszRQTypeNames,rgszParamNames,promptContinueOnFail) ) #define IVsHierarchyRefactorNotify_OnAddParams(This,itemid,lpszRQName,cParams,rgszParamIndexes,rgszRQTypeNames,rgszParamNames) \ ( (This)->lpVtbl -> OnAddParams(This,itemid,lpszRQName,cParams,rgszParamIndexes,rgszRQTypeNames,rgszParamNames) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsHierarchyRefactorNotify_INTERFACE_DEFINED__ */ #ifndef __IVsRefactorNotify_INTERFACE_DEFINED__ #define __IVsRefactorNotify_INTERFACE_DEFINED__ /* interface IVsRefactorNotify */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsRefactorNotify; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("130497E3-5CDB-4f29-9804-A2AF805016D7") IVsRefactorNotify : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE OnBeforeGlobalSymbolRenamed( /* [in] */ __RPC__in_opt IVsHierarchy *pHier, /* [in] */ VSITEMID itemid, /* [in] */ ULONG cRQNames, /* [size_is][in] */ __RPC__in_ecount_full(cRQNames) LPCOLESTR rglpszRQName[ ], /* [in] */ __RPC__in LPCOLESTR lpszNewName, /* [retval][out] */ __RPC__deref_out_opt SAFEARRAY * *prgAdditionalCheckoutVSITEMIDs) = 0; virtual HRESULT STDMETHODCALLTYPE OnGlobalSymbolRenamed( /* [in] */ __RPC__in_opt IVsHierarchy *pHier, /* [in] */ VSITEMID itemid, /* [in] */ ULONG cRQNames, /* [size_is][in] */ __RPC__in_ecount_full(cRQNames) LPCOLESTR rglpszRQName[ ], /* [in] */ __RPC__in LPCOLESTR lpszNewName) = 0; virtual HRESULT STDMETHODCALLTYPE OnBeforeReorderParams( /* [in] */ __RPC__in_opt IVsHierarchy *pHier, /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParamIndexes, /* [size_is][in] */ __RPC__in_ecount_full(cParamIndexes) ULONG rgParamIndexes[ ], /* [retval][out] */ __RPC__deref_out_opt SAFEARRAY * *prgAdditionalCheckoutVSITEMIDs) = 0; virtual HRESULT STDMETHODCALLTYPE OnReorderParams( /* [in] */ __RPC__in_opt IVsHierarchy *pHier, /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParamIndexes, /* [size_is][in] */ __RPC__in_ecount_full(cParamIndexes) ULONG rgParamIndexes[ ]) = 0; virtual HRESULT STDMETHODCALLTYPE OnBeforeRemoveParams( /* [in] */ __RPC__in_opt IVsHierarchy *pHier, /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParamIndexes, /* [size_is][in] */ __RPC__in_ecount_full(cParamIndexes) ULONG rgParamIndexes[ ], /* [retval][out] */ __RPC__deref_out_opt SAFEARRAY * *prgAdditionalCheckoutVSITEMIDs) = 0; virtual HRESULT STDMETHODCALLTYPE OnRemoveParams( /* [in] */ __RPC__in_opt IVsHierarchy *pHier, /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParamIndexes, /* [size_is][in] */ __RPC__in_ecount_full(cParamIndexes) ULONG rgParamIndexes[ ]) = 0; virtual HRESULT STDMETHODCALLTYPE OnBeforeAddParams( /* [in] */ __RPC__in_opt IVsHierarchy *pHier, /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParams, /* [size_is][in] */ __RPC__in_ecount_full(cParams) ULONG rgszParamIndexes[ ], /* [size_is][in] */ __RPC__in_ecount_full(cParams) LPCOLESTR rgszRQTypeNames[ ], /* [size_is][in] */ __RPC__in_ecount_full(cParams) LPCOLESTR rgszParamNames[ ], /* [retval][out] */ __RPC__deref_out_opt SAFEARRAY * *prgAdditionalCheckoutVSITEMIDs) = 0; virtual HRESULT STDMETHODCALLTYPE OnAddParams( /* [in] */ __RPC__in_opt IVsHierarchy *pHier, /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParams, /* [size_is][in] */ __RPC__in_ecount_full(cParams) ULONG rgszParamIndexes[ ], /* [size_is][in] */ __RPC__in_ecount_full(cParams) LPCOLESTR rgszRQTypeNames[ ], /* [size_is][in] */ __RPC__in_ecount_full(cParams) LPCOLESTR rgszParamNames[ ]) = 0; }; #else /* C style interface */ typedef struct IVsRefactorNotifyVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsRefactorNotify * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsRefactorNotify * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsRefactorNotify * This); HRESULT ( STDMETHODCALLTYPE *OnBeforeGlobalSymbolRenamed )( __RPC__in IVsRefactorNotify * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHier, /* [in] */ VSITEMID itemid, /* [in] */ ULONG cRQNames, /* [size_is][in] */ __RPC__in_ecount_full(cRQNames) LPCOLESTR rglpszRQName[ ], /* [in] */ __RPC__in LPCOLESTR lpszNewName, /* [retval][out] */ __RPC__deref_out_opt SAFEARRAY * *prgAdditionalCheckoutVSITEMIDs); HRESULT ( STDMETHODCALLTYPE *OnGlobalSymbolRenamed )( __RPC__in IVsRefactorNotify * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHier, /* [in] */ VSITEMID itemid, /* [in] */ ULONG cRQNames, /* [size_is][in] */ __RPC__in_ecount_full(cRQNames) LPCOLESTR rglpszRQName[ ], /* [in] */ __RPC__in LPCOLESTR lpszNewName); HRESULT ( STDMETHODCALLTYPE *OnBeforeReorderParams )( __RPC__in IVsRefactorNotify * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHier, /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParamIndexes, /* [size_is][in] */ __RPC__in_ecount_full(cParamIndexes) ULONG rgParamIndexes[ ], /* [retval][out] */ __RPC__deref_out_opt SAFEARRAY * *prgAdditionalCheckoutVSITEMIDs); HRESULT ( STDMETHODCALLTYPE *OnReorderParams )( __RPC__in IVsRefactorNotify * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHier, /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParamIndexes, /* [size_is][in] */ __RPC__in_ecount_full(cParamIndexes) ULONG rgParamIndexes[ ]); HRESULT ( STDMETHODCALLTYPE *OnBeforeRemoveParams )( __RPC__in IVsRefactorNotify * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHier, /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParamIndexes, /* [size_is][in] */ __RPC__in_ecount_full(cParamIndexes) ULONG rgParamIndexes[ ], /* [retval][out] */ __RPC__deref_out_opt SAFEARRAY * *prgAdditionalCheckoutVSITEMIDs); HRESULT ( STDMETHODCALLTYPE *OnRemoveParams )( __RPC__in IVsRefactorNotify * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHier, /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParamIndexes, /* [size_is][in] */ __RPC__in_ecount_full(cParamIndexes) ULONG rgParamIndexes[ ]); HRESULT ( STDMETHODCALLTYPE *OnBeforeAddParams )( __RPC__in IVsRefactorNotify * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHier, /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParams, /* [size_is][in] */ __RPC__in_ecount_full(cParams) ULONG rgszParamIndexes[ ], /* [size_is][in] */ __RPC__in_ecount_full(cParams) LPCOLESTR rgszRQTypeNames[ ], /* [size_is][in] */ __RPC__in_ecount_full(cParams) LPCOLESTR rgszParamNames[ ], /* [retval][out] */ __RPC__deref_out_opt SAFEARRAY * *prgAdditionalCheckoutVSITEMIDs); HRESULT ( STDMETHODCALLTYPE *OnAddParams )( __RPC__in IVsRefactorNotify * This, /* [in] */ __RPC__in_opt IVsHierarchy *pHier, /* [in] */ VSITEMID itemid, /* [in] */ __RPC__in LPCOLESTR lpszRQName, /* [in] */ ULONG cParams, /* [size_is][in] */ __RPC__in_ecount_full(cParams) ULONG rgszParamIndexes[ ], /* [size_is][in] */ __RPC__in_ecount_full(cParams) LPCOLESTR rgszRQTypeNames[ ], /* [size_is][in] */ __RPC__in_ecount_full(cParams) LPCOLESTR rgszParamNames[ ]); END_INTERFACE } IVsRefactorNotifyVtbl; interface IVsRefactorNotify { CONST_VTBL struct IVsRefactorNotifyVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsRefactorNotify_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsRefactorNotify_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsRefactorNotify_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsRefactorNotify_OnBeforeGlobalSymbolRenamed(This,pHier,itemid,cRQNames,rglpszRQName,lpszNewName,prgAdditionalCheckoutVSITEMIDs) \ ( (This)->lpVtbl -> OnBeforeGlobalSymbolRenamed(This,pHier,itemid,cRQNames,rglpszRQName,lpszNewName,prgAdditionalCheckoutVSITEMIDs) ) #define IVsRefactorNotify_OnGlobalSymbolRenamed(This,pHier,itemid,cRQNames,rglpszRQName,lpszNewName) \ ( (This)->lpVtbl -> OnGlobalSymbolRenamed(This,pHier,itemid,cRQNames,rglpszRQName,lpszNewName) ) #define IVsRefactorNotify_OnBeforeReorderParams(This,pHier,itemid,lpszRQName,cParamIndexes,rgParamIndexes,prgAdditionalCheckoutVSITEMIDs) \ ( (This)->lpVtbl -> OnBeforeReorderParams(This,pHier,itemid,lpszRQName,cParamIndexes,rgParamIndexes,prgAdditionalCheckoutVSITEMIDs) ) #define IVsRefactorNotify_OnReorderParams(This,pHier,itemid,lpszRQName,cParamIndexes,rgParamIndexes) \ ( (This)->lpVtbl -> OnReorderParams(This,pHier,itemid,lpszRQName,cParamIndexes,rgParamIndexes) ) #define IVsRefactorNotify_OnBeforeRemoveParams(This,pHier,itemid,lpszRQName,cParamIndexes,rgParamIndexes,prgAdditionalCheckoutVSITEMIDs) \ ( (This)->lpVtbl -> OnBeforeRemoveParams(This,pHier,itemid,lpszRQName,cParamIndexes,rgParamIndexes,prgAdditionalCheckoutVSITEMIDs) ) #define IVsRefactorNotify_OnRemoveParams(This,pHier,itemid,lpszRQName,cParamIndexes,rgParamIndexes) \ ( (This)->lpVtbl -> OnRemoveParams(This,pHier,itemid,lpszRQName,cParamIndexes,rgParamIndexes) ) #define IVsRefactorNotify_OnBeforeAddParams(This,pHier,itemid,lpszRQName,cParams,rgszParamIndexes,rgszRQTypeNames,rgszParamNames,prgAdditionalCheckoutVSITEMIDs) \ ( (This)->lpVtbl -> OnBeforeAddParams(This,pHier,itemid,lpszRQName,cParams,rgszParamIndexes,rgszRQTypeNames,rgszParamNames,prgAdditionalCheckoutVSITEMIDs) ) #define IVsRefactorNotify_OnAddParams(This,pHier,itemid,lpszRQName,cParams,rgszParamIndexes,rgszRQTypeNames,rgszParamNames) \ ( (This)->lpVtbl -> OnAddParams(This,pHier,itemid,lpszRQName,cParams,rgszParamIndexes,rgszRQTypeNames,rgszParamNames) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsRefactorNotify_INTERFACE_DEFINED__ */ #ifndef __IVsMonitorSelection2_INTERFACE_DEFINED__ #define __IVsMonitorSelection2_INTERFACE_DEFINED__ /* interface IVsMonitorSelection2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsMonitorSelection2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("692e4f21-1ef2-41b1-9116-eed8daa79e7f") IVsMonitorSelection2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetElementID( /* [in] */ __RPC__in REFGUID rguidElement, /* [out] */ __RPC__out VSSELELEMID *pElementId) = 0; virtual HRESULT STDMETHODCALLTYPE GetEmptySelectionContext( /* [out] */ __RPC__deref_out_opt IVsTrackSelectionEx **ppEmptySelCtxt) = 0; }; #else /* C style interface */ typedef struct IVsMonitorSelection2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsMonitorSelection2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsMonitorSelection2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsMonitorSelection2 * This); HRESULT ( STDMETHODCALLTYPE *GetElementID )( __RPC__in IVsMonitorSelection2 * This, /* [in] */ __RPC__in REFGUID rguidElement, /* [out] */ __RPC__out VSSELELEMID *pElementId); HRESULT ( STDMETHODCALLTYPE *GetEmptySelectionContext )( __RPC__in IVsMonitorSelection2 * This, /* [out] */ __RPC__deref_out_opt IVsTrackSelectionEx **ppEmptySelCtxt); END_INTERFACE } IVsMonitorSelection2Vtbl; interface IVsMonitorSelection2 { CONST_VTBL struct IVsMonitorSelection2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsMonitorSelection2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsMonitorSelection2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsMonitorSelection2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsMonitorSelection2_GetElementID(This,rguidElement,pElementId) \ ( (This)->lpVtbl -> GetElementID(This,rguidElement,pElementId) ) #define IVsMonitorSelection2_GetEmptySelectionContext(This,ppEmptySelCtxt) \ ( (This)->lpVtbl -> GetEmptySelectionContext(This,ppEmptySelCtxt) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsMonitorSelection2_INTERFACE_DEFINED__ */ #ifndef __IVsToolsOptions_INTERFACE_DEFINED__ #define __IVsToolsOptions_INTERFACE_DEFINED__ /* interface IVsToolsOptions */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsToolsOptions; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("AE31D40E-CD7A-45cb-8DEF-5EA0E44C688A") IVsToolsOptions : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE IsToolsOptionsOpen( /* [out] */ __RPC__out BOOL *pfOpen) = 0; virtual HRESULT STDMETHODCALLTYPE RefreshPageVisibility( void) = 0; }; #else /* C style interface */ typedef struct IVsToolsOptionsVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsToolsOptions * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsToolsOptions * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsToolsOptions * This); HRESULT ( STDMETHODCALLTYPE *IsToolsOptionsOpen )( __RPC__in IVsToolsOptions * This, /* [out] */ __RPC__out BOOL *pfOpen); HRESULT ( STDMETHODCALLTYPE *RefreshPageVisibility )( __RPC__in IVsToolsOptions * This); END_INTERFACE } IVsToolsOptionsVtbl; interface IVsToolsOptions { CONST_VTBL struct IVsToolsOptionsVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsToolsOptions_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsToolsOptions_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsToolsOptions_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsToolsOptions_IsToolsOptionsOpen(This,pfOpen) \ ( (This)->lpVtbl -> IsToolsOptionsOpen(This,pfOpen) ) #define IVsToolsOptions_RefreshPageVisibility(This) \ ( (This)->lpVtbl -> RefreshPageVisibility(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsToolsOptions_INTERFACE_DEFINED__ */ #ifndef __SVsToolsOptions_INTERFACE_DEFINED__ #define __SVsToolsOptions_INTERFACE_DEFINED__ /* interface SVsToolsOptions */ /* [object][uuid] */ EXTERN_C const IID IID_SVsToolsOptions; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("376208E4-2679-4c9e-B3D5-929EB0F1A1F7") SVsToolsOptions : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsToolsOptionsVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsToolsOptions * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsToolsOptions * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsToolsOptions * This); END_INTERFACE } SVsToolsOptionsVtbl; interface SVsToolsOptions { CONST_VTBL struct SVsToolsOptionsVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsToolsOptions_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsToolsOptions_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsToolsOptions_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsToolsOptions_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0174 */ /* [local] */ #define SID_SVsToolsOptions IID_SVsToolsOptions extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0174_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0174_v0_0_s_ifspec; #ifndef __IVsDeployableProjectCfg2_INTERFACE_DEFINED__ #define __IVsDeployableProjectCfg2_INTERFACE_DEFINED__ /* interface IVsDeployableProjectCfg2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsDeployableProjectCfg2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("A981529F-4D0D-46ee-A758-AC26E50E099D") IVsDeployableProjectCfg2 : public IVsDeployableProjectCfg { public: virtual HRESULT STDMETHODCALLTYPE StartCleanDeploy( /* [in] */ __RPC__in_opt IVsOutputWindowPane *pIVsOutputWindowPane, /* [in] */ DWORD dwOptions) = 0; }; #else /* C style interface */ typedef struct IVsDeployableProjectCfg2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsDeployableProjectCfg2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsDeployableProjectCfg2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsDeployableProjectCfg2 * This); HRESULT ( STDMETHODCALLTYPE *AdviseDeployStatusCallback )( __RPC__in IVsDeployableProjectCfg2 * This, /* [in] */ __RPC__in_opt IVsDeployStatusCallback *pIVsDeployStatusCallback, /* [out] */ __RPC__out VSCOOKIE *pdwCookie); HRESULT ( STDMETHODCALLTYPE *UnadviseDeployStatusCallback )( __RPC__in IVsDeployableProjectCfg2 * This, /* [in] */ VSCOOKIE dwCookie); HRESULT ( STDMETHODCALLTYPE *StartDeploy )( __RPC__in IVsDeployableProjectCfg2 * This, /* [in] */ __RPC__in_opt IVsOutputWindowPane *pIVsOutputWindowPane, /* [in] */ DWORD dwOptions); HRESULT ( STDMETHODCALLTYPE *QueryStatusDeploy )( __RPC__in IVsDeployableProjectCfg2 * This, /* [out] */ __RPC__out BOOL *pfDeployDone); HRESULT ( STDMETHODCALLTYPE *StopDeploy )( __RPC__in IVsDeployableProjectCfg2 * This, /* [in] */ BOOL fSync); HRESULT ( STDMETHODCALLTYPE *WaitDeploy )( __RPC__in IVsDeployableProjectCfg2 * This, /* [in] */ DWORD dwMilliseconds, /* [in] */ BOOL fTickWhenMessageQNotEmpty); HRESULT ( STDMETHODCALLTYPE *QueryStartDeploy )( __RPC__in IVsDeployableProjectCfg2 * This, /* [in] */ DWORD dwOptions, /* [optional][out] */ __RPC__out BOOL *pfSupported, /* [optional][out] */ __RPC__out BOOL *pfReady); HRESULT ( STDMETHODCALLTYPE *Commit )( __RPC__in IVsDeployableProjectCfg2 * This, DWORD dwReserved); HRESULT ( STDMETHODCALLTYPE *Rollback )( __RPC__in IVsDeployableProjectCfg2 * This, DWORD dwReserved); HRESULT ( STDMETHODCALLTYPE *StartCleanDeploy )( __RPC__in IVsDeployableProjectCfg2 * This, /* [in] */ __RPC__in_opt IVsOutputWindowPane *pIVsOutputWindowPane, /* [in] */ DWORD dwOptions); END_INTERFACE } IVsDeployableProjectCfg2Vtbl; interface IVsDeployableProjectCfg2 { CONST_VTBL struct IVsDeployableProjectCfg2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsDeployableProjectCfg2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsDeployableProjectCfg2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsDeployableProjectCfg2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsDeployableProjectCfg2_AdviseDeployStatusCallback(This,pIVsDeployStatusCallback,pdwCookie) \ ( (This)->lpVtbl -> AdviseDeployStatusCallback(This,pIVsDeployStatusCallback,pdwCookie) ) #define IVsDeployableProjectCfg2_UnadviseDeployStatusCallback(This,dwCookie) \ ( (This)->lpVtbl -> UnadviseDeployStatusCallback(This,dwCookie) ) #define IVsDeployableProjectCfg2_StartDeploy(This,pIVsOutputWindowPane,dwOptions) \ ( (This)->lpVtbl -> StartDeploy(This,pIVsOutputWindowPane,dwOptions) ) #define IVsDeployableProjectCfg2_QueryStatusDeploy(This,pfDeployDone) \ ( (This)->lpVtbl -> QueryStatusDeploy(This,pfDeployDone) ) #define IVsDeployableProjectCfg2_StopDeploy(This,fSync) \ ( (This)->lpVtbl -> StopDeploy(This,fSync) ) #define IVsDeployableProjectCfg2_WaitDeploy(This,dwMilliseconds,fTickWhenMessageQNotEmpty) \ ( (This)->lpVtbl -> WaitDeploy(This,dwMilliseconds,fTickWhenMessageQNotEmpty) ) #define IVsDeployableProjectCfg2_QueryStartDeploy(This,dwOptions,pfSupported,pfReady) \ ( (This)->lpVtbl -> QueryStartDeploy(This,dwOptions,pfSupported,pfReady) ) #define IVsDeployableProjectCfg2_Commit(This,dwReserved) \ ( (This)->lpVtbl -> Commit(This,dwReserved) ) #define IVsDeployableProjectCfg2_Rollback(This,dwReserved) \ ( (This)->lpVtbl -> Rollback(This,dwReserved) ) #define IVsDeployableProjectCfg2_StartCleanDeploy(This,pIVsOutputWindowPane,dwOptions) \ ( (This)->lpVtbl -> StartCleanDeploy(This,pIVsOutputWindowPane,dwOptions) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsDeployableProjectCfg2_INTERFACE_DEFINED__ */ #ifndef __IVsFontAndColorStorage2_INTERFACE_DEFINED__ #define __IVsFontAndColorStorage2_INTERFACE_DEFINED__ /* interface IVsFontAndColorStorage2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsFontAndColorStorage2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("1EE6C79A-B763-42e6-AC95-FD0CC00DE315") IVsFontAndColorStorage2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE RevertFontToDefault( void) = 0; virtual HRESULT STDMETHODCALLTYPE RevertItemToDefault( /* [in] */ __RPC__in LPCOLESTR szName) = 0; virtual HRESULT STDMETHODCALLTYPE RevertAllItemsToDefault( void) = 0; }; #else /* C style interface */ typedef struct IVsFontAndColorStorage2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsFontAndColorStorage2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsFontAndColorStorage2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsFontAndColorStorage2 * This); HRESULT ( STDMETHODCALLTYPE *RevertFontToDefault )( __RPC__in IVsFontAndColorStorage2 * This); HRESULT ( STDMETHODCALLTYPE *RevertItemToDefault )( __RPC__in IVsFontAndColorStorage2 * This, /* [in] */ __RPC__in LPCOLESTR szName); HRESULT ( STDMETHODCALLTYPE *RevertAllItemsToDefault )( __RPC__in IVsFontAndColorStorage2 * This); END_INTERFACE } IVsFontAndColorStorage2Vtbl; interface IVsFontAndColorStorage2 { CONST_VTBL struct IVsFontAndColorStorage2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsFontAndColorStorage2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsFontAndColorStorage2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsFontAndColorStorage2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsFontAndColorStorage2_RevertFontToDefault(This) \ ( (This)->lpVtbl -> RevertFontToDefault(This) ) #define IVsFontAndColorStorage2_RevertItemToDefault(This,szName) \ ( (This)->lpVtbl -> RevertItemToDefault(This,szName) ) #define IVsFontAndColorStorage2_RevertAllItemsToDefault(This) \ ( (This)->lpVtbl -> RevertAllItemsToDefault(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsFontAndColorStorage2_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0176 */ /* [local] */ enum __VSSHOWCONTEXTMENUOPTS { VSCTXMENU_SELECTFIRSTITEM = 0x10000, VSCTXMENU_SHOWUNDERLINES = 0x20000, VSCTXMENU_SUPPORTSTYPEAHEAD = 0x40000 } ; typedef DWORD VSSHOWCONTEXTMENUOPTS; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0176_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0176_v0_0_s_ifspec; #ifndef __IVsDocOutlineProvider2_INTERFACE_DEFINED__ #define __IVsDocOutlineProvider2_INTERFACE_DEFINED__ /* interface IVsDocOutlineProvider2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsDocOutlineProvider2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("9EB7079F-3445-4c43-99D8-46EA8CA1D659") IVsDocOutlineProvider2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE TranslateAccelerator( /* [in] */ __RPC__in LPMSG lpMsg) = 0; }; #else /* C style interface */ typedef struct IVsDocOutlineProvider2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsDocOutlineProvider2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsDocOutlineProvider2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsDocOutlineProvider2 * This); HRESULT ( STDMETHODCALLTYPE *TranslateAccelerator )( __RPC__in IVsDocOutlineProvider2 * This, /* [in] */ __RPC__in LPMSG lpMsg); END_INTERFACE } IVsDocOutlineProvider2Vtbl; interface IVsDocOutlineProvider2 { CONST_VTBL struct IVsDocOutlineProvider2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsDocOutlineProvider2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsDocOutlineProvider2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsDocOutlineProvider2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsDocOutlineProvider2_TranslateAccelerator(This,lpMsg) \ ( (This)->lpVtbl -> TranslateAccelerator(This,lpMsg) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsDocOutlineProvider2_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0177 */ /* [local] */ enum __VSCREATEWEBBROWSER2 { VSCWB_NoHistoryThisPage = 0x100000, VSCWB_NavOptionMask2 = 0x1f0000 } ; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0177_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0177_v0_0_s_ifspec; #ifndef __IVSMDTypeResolutionService_INTERFACE_DEFINED__ #define __IVSMDTypeResolutionService_INTERFACE_DEFINED__ /* interface IVSMDTypeResolutionService */ /* [unique][uuid][object] */ EXTERN_C const IID IID_IVSMDTypeResolutionService; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("3411DD99-2445-43c8-918E-99BFBFAF8292") IVSMDTypeResolutionService : public IUnknown { public: virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_TypeResolutionService( /* [retval][out] */ __RPC__deref_out_opt IDispatch **ppTrs) = 0; }; #else /* C style interface */ typedef struct IVSMDTypeResolutionServiceVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVSMDTypeResolutionService * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVSMDTypeResolutionService * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVSMDTypeResolutionService * This); /* [propget] */ HRESULT ( STDMETHODCALLTYPE *get_TypeResolutionService )( __RPC__in IVSMDTypeResolutionService * This, /* [retval][out] */ __RPC__deref_out_opt IDispatch **ppTrs); END_INTERFACE } IVSMDTypeResolutionServiceVtbl; interface IVSMDTypeResolutionService { CONST_VTBL struct IVSMDTypeResolutionServiceVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVSMDTypeResolutionService_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVSMDTypeResolutionService_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVSMDTypeResolutionService_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVSMDTypeResolutionService_get_TypeResolutionService(This,ppTrs) \ ( (This)->lpVtbl -> get_TypeResolutionService(This,ppTrs) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVSMDTypeResolutionService_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0178 */ /* [local] */ #define SID_SVSMDTypeResolutionService IID_IVSMDTypeResolutionService typedef struct _VSDEFAULTPREVIEWER { BSTR bstrDefBrowserPath; BSTR bstrDefBrowserDisplayName; BOOL fIsInternalBrowser; BOOL fIsSystemBrowser; VSPREVIEWRESOLUTION defRes; } VSDEFAULTPREVIEWER; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0178_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0178_v0_0_s_ifspec; #ifndef __IVsUIShellOpenDocument2_INTERFACE_DEFINED__ #define __IVsUIShellOpenDocument2_INTERFACE_DEFINED__ /* interface IVsUIShellOpenDocument2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsUIShellOpenDocument2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("0649BDA0-0978-4ca0-AB0B-0F619199BCCA") IVsUIShellOpenDocument2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetDefaultPreviewers( /* [in] */ ULONG celt, /* [size_is][out][in] */ __RPC__inout_ecount_full(celt) VSDEFAULTPREVIEWER rgDefaultPreviewers[ ], /* [out] */ __RPC__out ULONG *pcActual) = 0; }; #else /* C style interface */ typedef struct IVsUIShellOpenDocument2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsUIShellOpenDocument2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsUIShellOpenDocument2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsUIShellOpenDocument2 * This); HRESULT ( STDMETHODCALLTYPE *GetDefaultPreviewers )( __RPC__in IVsUIShellOpenDocument2 * This, /* [in] */ ULONG celt, /* [size_is][out][in] */ __RPC__inout_ecount_full(celt) VSDEFAULTPREVIEWER rgDefaultPreviewers[ ], /* [out] */ __RPC__out ULONG *pcActual); END_INTERFACE } IVsUIShellOpenDocument2Vtbl; interface IVsUIShellOpenDocument2 { CONST_VTBL struct IVsUIShellOpenDocument2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsUIShellOpenDocument2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsUIShellOpenDocument2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsUIShellOpenDocument2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsUIShellOpenDocument2_GetDefaultPreviewers(This,celt,rgDefaultPreviewers,pcActual) \ ( (This)->lpVtbl -> GetDefaultPreviewers(This,celt,rgDefaultPreviewers,pcActual) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsUIShellOpenDocument2_INTERFACE_DEFINED__ */ #ifndef __IVsFilterNewProjectDlg_INTERFACE_DEFINED__ #define __IVsFilterNewProjectDlg_INTERFACE_DEFINED__ /* interface IVsFilterNewProjectDlg */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsFilterNewProjectDlg; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("B10EC465-CEC8-41cd-A132-6C1A58F565FB") IVsFilterNewProjectDlg : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE FilterTreeItemByLocalizedName( /* [in] */ __RPC__in LPCOLESTR pszLocalizedName, /* [out] */ __RPC__out BOOL *pfFilter) = 0; virtual HRESULT STDMETHODCALLTYPE FilterTreeItemByTemplateDir( /* [in] */ __RPC__in LPCOLESTR pszTemplateDir, /* [out] */ __RPC__out BOOL *pfFilter) = 0; virtual HRESULT STDMETHODCALLTYPE FilterListItemByLocalizedName( /* [in] */ __RPC__in LPCOLESTR pszLocalizedName, /* [out] */ __RPC__out BOOL *pfFilter) = 0; virtual HRESULT STDMETHODCALLTYPE FilterListItemByTemplateFile( /* [in] */ __RPC__in LPCOLESTR pszTemplateFile, /* [out] */ __RPC__out BOOL *pfFilter) = 0; }; #else /* C style interface */ typedef struct IVsFilterNewProjectDlgVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsFilterNewProjectDlg * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsFilterNewProjectDlg * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsFilterNewProjectDlg * This); HRESULT ( STDMETHODCALLTYPE *FilterTreeItemByLocalizedName )( __RPC__in IVsFilterNewProjectDlg * This, /* [in] */ __RPC__in LPCOLESTR pszLocalizedName, /* [out] */ __RPC__out BOOL *pfFilter); HRESULT ( STDMETHODCALLTYPE *FilterTreeItemByTemplateDir )( __RPC__in IVsFilterNewProjectDlg * This, /* [in] */ __RPC__in LPCOLESTR pszTemplateDir, /* [out] */ __RPC__out BOOL *pfFilter); HRESULT ( STDMETHODCALLTYPE *FilterListItemByLocalizedName )( __RPC__in IVsFilterNewProjectDlg * This, /* [in] */ __RPC__in LPCOLESTR pszLocalizedName, /* [out] */ __RPC__out BOOL *pfFilter); HRESULT ( STDMETHODCALLTYPE *FilterListItemByTemplateFile )( __RPC__in IVsFilterNewProjectDlg * This, /* [in] */ __RPC__in LPCOLESTR pszTemplateFile, /* [out] */ __RPC__out BOOL *pfFilter); END_INTERFACE } IVsFilterNewProjectDlgVtbl; interface IVsFilterNewProjectDlg { CONST_VTBL struct IVsFilterNewProjectDlgVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsFilterNewProjectDlg_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsFilterNewProjectDlg_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsFilterNewProjectDlg_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsFilterNewProjectDlg_FilterTreeItemByLocalizedName(This,pszLocalizedName,pfFilter) \ ( (This)->lpVtbl -> FilterTreeItemByLocalizedName(This,pszLocalizedName,pfFilter) ) #define IVsFilterNewProjectDlg_FilterTreeItemByTemplateDir(This,pszTemplateDir,pfFilter) \ ( (This)->lpVtbl -> FilterTreeItemByTemplateDir(This,pszTemplateDir,pfFilter) ) #define IVsFilterNewProjectDlg_FilterListItemByLocalizedName(This,pszLocalizedName,pfFilter) \ ( (This)->lpVtbl -> FilterListItemByLocalizedName(This,pszLocalizedName,pfFilter) ) #define IVsFilterNewProjectDlg_FilterListItemByTemplateFile(This,pszTemplateFile,pfFilter) \ ( (This)->lpVtbl -> FilterListItemByTemplateFile(This,pszTemplateFile,pfFilter) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsFilterNewProjectDlg_INTERFACE_DEFINED__ */ #ifndef __IVsRegisterNewDialogFilters_INTERFACE_DEFINED__ #define __IVsRegisterNewDialogFilters_INTERFACE_DEFINED__ /* interface IVsRegisterNewDialogFilters */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsRegisterNewDialogFilters; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("9455BDB5-2A5A-45f1-A558-72B88A78E6E3") IVsRegisterNewDialogFilters : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE RegisterNewProjectDialogFilter( /* [in] */ __RPC__in_opt IVsFilterNewProjectDlg *pFilter, /* [out] */ __RPC__out VSCOOKIE *pdwFilterCookie) = 0; virtual HRESULT STDMETHODCALLTYPE UnregisterNewProjectDialogFilter( /* [in] */ VSCOOKIE dwFilterCookie) = 0; virtual HRESULT STDMETHODCALLTYPE RegisterAddNewItemDialogFilter( /* [in] */ __RPC__in_opt IVsFilterAddProjectItemDlg *pFilter, /* [out] */ __RPC__out VSCOOKIE *pdwFilterCookie) = 0; virtual HRESULT STDMETHODCALLTYPE UnregisterAddNewItemDialogFilter( /* [in] */ VSCOOKIE dwFilterCookie) = 0; }; #else /* C style interface */ typedef struct IVsRegisterNewDialogFiltersVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsRegisterNewDialogFilters * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsRegisterNewDialogFilters * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsRegisterNewDialogFilters * This); HRESULT ( STDMETHODCALLTYPE *RegisterNewProjectDialogFilter )( __RPC__in IVsRegisterNewDialogFilters * This, /* [in] */ __RPC__in_opt IVsFilterNewProjectDlg *pFilter, /* [out] */ __RPC__out VSCOOKIE *pdwFilterCookie); HRESULT ( STDMETHODCALLTYPE *UnregisterNewProjectDialogFilter )( __RPC__in IVsRegisterNewDialogFilters * This, /* [in] */ VSCOOKIE dwFilterCookie); HRESULT ( STDMETHODCALLTYPE *RegisterAddNewItemDialogFilter )( __RPC__in IVsRegisterNewDialogFilters * This, /* [in] */ __RPC__in_opt IVsFilterAddProjectItemDlg *pFilter, /* [out] */ __RPC__out VSCOOKIE *pdwFilterCookie); HRESULT ( STDMETHODCALLTYPE *UnregisterAddNewItemDialogFilter )( __RPC__in IVsRegisterNewDialogFilters * This, /* [in] */ VSCOOKIE dwFilterCookie); END_INTERFACE } IVsRegisterNewDialogFiltersVtbl; interface IVsRegisterNewDialogFilters { CONST_VTBL struct IVsRegisterNewDialogFiltersVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsRegisterNewDialogFilters_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsRegisterNewDialogFilters_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsRegisterNewDialogFilters_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsRegisterNewDialogFilters_RegisterNewProjectDialogFilter(This,pFilter,pdwFilterCookie) \ ( (This)->lpVtbl -> RegisterNewProjectDialogFilter(This,pFilter,pdwFilterCookie) ) #define IVsRegisterNewDialogFilters_UnregisterNewProjectDialogFilter(This,dwFilterCookie) \ ( (This)->lpVtbl -> UnregisterNewProjectDialogFilter(This,dwFilterCookie) ) #define IVsRegisterNewDialogFilters_RegisterAddNewItemDialogFilter(This,pFilter,pdwFilterCookie) \ ( (This)->lpVtbl -> RegisterAddNewItemDialogFilter(This,pFilter,pdwFilterCookie) ) #define IVsRegisterNewDialogFilters_UnregisterAddNewItemDialogFilter(This,dwFilterCookie) \ ( (This)->lpVtbl -> UnregisterAddNewItemDialogFilter(This,dwFilterCookie) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsRegisterNewDialogFilters_INTERFACE_DEFINED__ */ #ifndef __SVsRegisterNewDialogFilters_INTERFACE_DEFINED__ #define __SVsRegisterNewDialogFilters_INTERFACE_DEFINED__ /* interface SVsRegisterNewDialogFilters */ /* [object][uuid] */ EXTERN_C const IID IID_SVsRegisterNewDialogFilters; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("CB7C5B29-6782-47b7-AA13-21D07026D5E1") SVsRegisterNewDialogFilters : public IUnknown { public: }; #else /* C style interface */ typedef struct SVsRegisterNewDialogFiltersVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in SVsRegisterNewDialogFilters * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in SVsRegisterNewDialogFilters * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in SVsRegisterNewDialogFilters * This); END_INTERFACE } SVsRegisterNewDialogFiltersVtbl; interface SVsRegisterNewDialogFilters { CONST_VTBL struct SVsRegisterNewDialogFiltersVtbl *lpVtbl; }; #ifdef COBJMACROS #define SVsRegisterNewDialogFilters_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define SVsRegisterNewDialogFilters_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define SVsRegisterNewDialogFilters_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __SVsRegisterNewDialogFilters_INTERFACE_DEFINED__ */ /* interface __MIDL_itf_vsshell80_0000_0182 */ /* [local] */ #define SID_SVsRegisterNewDialogFilters IID_SVsRegisterNewDialogFilters extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0182_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_vsshell80_0000_0182_v0_0_s_ifspec; #ifndef __IVsWebBrowserUser2_INTERFACE_DEFINED__ #define __IVsWebBrowserUser2_INTERFACE_DEFINED__ /* interface IVsWebBrowserUser2 */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsWebBrowserUser2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("821ABD48-96DC-4315-A2C4-82A7239B8166") IVsWebBrowserUser2 : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetWebBrowserContext( /* [out] */ __RPC__deref_out_opt IServiceProvider **ppServiceProvider) = 0; }; #else /* C style interface */ typedef struct IVsWebBrowserUser2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsWebBrowserUser2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsWebBrowserUser2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsWebBrowserUser2 * This); HRESULT ( STDMETHODCALLTYPE *GetWebBrowserContext )( __RPC__in IVsWebBrowserUser2 * This, /* [out] */ __RPC__deref_out_opt IServiceProvider **ppServiceProvider); END_INTERFACE } IVsWebBrowserUser2Vtbl; interface IVsWebBrowserUser2 { CONST_VTBL struct IVsWebBrowserUser2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsWebBrowserUser2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsWebBrowserUser2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsWebBrowserUser2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsWebBrowserUser2_GetWebBrowserContext(This,ppServiceProvider) \ ( (This)->lpVtbl -> GetWebBrowserContext(This,ppServiceProvider) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsWebBrowserUser2_INTERFACE_DEFINED__ */ #ifndef __IVsHasRelatedSaveItems_INTERFACE_DEFINED__ #define __IVsHasRelatedSaveItems_INTERFACE_DEFINED__ /* interface IVsHasRelatedSaveItems */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IVsHasRelatedSaveItems; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("D82269C8-C3DB-4bd9-AF32-AB140BCFDAE3") IVsHasRelatedSaveItems : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetRelatedSaveTreeItems( /* [in] */ VSSAVETREEITEM saveItem, /* [in] */ ULONG celt, /* [size_is][out][in] */ __RPC__inout_ecount_full(celt) VSSAVETREEITEM rgSaveTreeItems[ ], /* [out] */ __RPC__out ULONG *pcActual) = 0; }; #else /* C style interface */ typedef struct IVsHasRelatedSaveItemsVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in IVsHasRelatedSaveItems * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ _COM_Outptr_ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in IVsHasRelatedSaveItems * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in IVsHasRelatedSaveItems * This); HRESULT ( STDMETHODCALLTYPE *GetRelatedSaveTreeItems )( __RPC__in IVsHasRelatedSaveItems * This, /* [in] */ VSSAVETREEITEM saveItem, /* [in] */ ULONG celt, /* [size_is][out][in] */ __RPC__inout_ecount_full(celt) VSSAVETREEITEM rgSaveTreeItems[ ], /* [out] */ __RPC__out ULONG *pcActual); END_INTERFACE } IVsHasRelatedSaveItemsVtbl; interface IVsHasRelatedSaveItems { CONST_VTBL struct IVsHasRelatedSaveItemsVtbl *lpVtbl; }; #ifdef COBJMACROS #define IVsHasRelatedSaveItems_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IVsHasRelatedSaveItems_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IVsHasRelatedSaveItems_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IVsHasRelatedSaveItems_GetRelatedSaveTreeItems(This,saveItem,celt,rgSaveTreeItems,pcActual) \ ( (This)->lpVtbl -> GetRelatedSaveTreeItems(This,saveItem,celt,rgSaveTreeItems,pcActual) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IVsHasRelatedSaveItems_INTERFACE_DEFINED__ */ /* Additional Prototypes for ALL interfaces */ unsigned long __RPC_USER BSTR_UserSize( __RPC__in unsigned long *, unsigned long , __RPC__in BSTR * ); unsigned char * __RPC_USER BSTR_UserMarshal( __RPC__in unsigned long *, __RPC__inout_xcount(0) unsigned char *, __RPC__in BSTR * ); unsigned char * __RPC_USER BSTR_UserUnmarshal(__RPC__in unsigned long *, __RPC__in_xcount(0) unsigned char *, __RPC__out BSTR * ); void __RPC_USER BSTR_UserFree( __RPC__in unsigned long *, __RPC__in BSTR * ); unsigned long __RPC_USER CLIPFORMAT_UserSize( __RPC__in unsigned long *, unsigned long , __RPC__in CLIPFORMAT * ); unsigned char * __RPC_USER CLIPFORMAT_UserMarshal( __RPC__in unsigned long *, __RPC__inout_xcount(0) unsigned char *, __RPC__in CLIPFORMAT * ); unsigned char * __RPC_USER CLIPFORMAT_UserUnmarshal(__RPC__in unsigned long *, __RPC__in_xcount(0) unsigned char *, __RPC__out CLIPFORMAT * ); void __RPC_USER CLIPFORMAT_UserFree( __RPC__in unsigned long *, __RPC__in CLIPFORMAT * ); unsigned long __RPC_USER HBITMAP_UserSize( __RPC__in unsigned long *, unsigned long , __RPC__in HBITMAP * ); unsigned char * __RPC_USER HBITMAP_UserMarshal( __RPC__in unsigned long *, __RPC__inout_xcount(0) unsigned char *, __RPC__in HBITMAP * ); unsigned char * __RPC_USER HBITMAP_UserUnmarshal(__RPC__in unsigned long *, __RPC__in_xcount(0) unsigned char *, __RPC__out HBITMAP * ); void __RPC_USER HBITMAP_UserFree( __RPC__in unsigned long *, __RPC__in HBITMAP * ); unsigned long __RPC_USER HDC_UserSize( __RPC__in unsigned long *, unsigned long , __RPC__in HDC * ); unsigned char * __RPC_USER HDC_UserMarshal( __RPC__in unsigned long *, __RPC__inout_xcount(0) unsigned char *, __RPC__in HDC * ); unsigned char * __RPC_USER HDC_UserUnmarshal(__RPC__in unsigned long *, __RPC__in_xcount(0) unsigned char *, __RPC__out HDC * ); void __RPC_USER HDC_UserFree( __RPC__in unsigned long *, __RPC__in HDC * ); unsigned long __RPC_USER HICON_UserSize( __RPC__in unsigned long *, unsigned long , __RPC__in HICON * ); unsigned char * __RPC_USER HICON_UserMarshal( __RPC__in unsigned long *, __RPC__inout_xcount(0) unsigned char *, __RPC__in HICON * ); unsigned char * __RPC_USER HICON_UserUnmarshal(__RPC__in unsigned long *, __RPC__in_xcount(0) unsigned char *, __RPC__out HICON * ); void __RPC_USER HICON_UserFree( __RPC__in unsigned long *, __RPC__in HICON * ); unsigned long __RPC_USER HWND_UserSize( __RPC__in unsigned long *, unsigned long , __RPC__in HWND * ); unsigned char * __RPC_USER HWND_UserMarshal( __RPC__in unsigned long *, __RPC__inout_xcount(0) unsigned char *, __RPC__in HWND * ); unsigned char * __RPC_USER HWND_UserUnmarshal(__RPC__in unsigned long *, __RPC__in_xcount(0) unsigned char *, __RPC__out HWND * ); void __RPC_USER HWND_UserFree( __RPC__in unsigned long *, __RPC__in HWND * ); unsigned long __RPC_USER LPSAFEARRAY_UserSize( __RPC__in unsigned long *, unsigned long , __RPC__in LPSAFEARRAY * ); unsigned char * __RPC_USER LPSAFEARRAY_UserMarshal( __RPC__in unsigned long *, __RPC__inout_xcount(0) unsigned char *, __RPC__in LPSAFEARRAY * ); unsigned char * __RPC_USER LPSAFEARRAY_UserUnmarshal(__RPC__in unsigned long *, __RPC__in_xcount(0) unsigned char *, __RPC__out LPSAFEARRAY * ); void __RPC_USER LPSAFEARRAY_UserFree( __RPC__in unsigned long *, __RPC__in LPSAFEARRAY * ); unsigned long __RPC_USER STGMEDIUM_UserSize( __RPC__in unsigned long *, unsigned long , __RPC__in STGMEDIUM * ); unsigned char * __RPC_USER STGMEDIUM_UserMarshal( __RPC__in unsigned long *, __RPC__inout_xcount(0) unsigned char *, __RPC__in STGMEDIUM * ); unsigned char * __RPC_USER STGMEDIUM_UserUnmarshal(__RPC__in unsigned long *, __RPC__in_xcount(0) unsigned char *, __RPC__out STGMEDIUM * ); void __RPC_USER STGMEDIUM_UserFree( __RPC__in unsigned long *, __RPC__in STGMEDIUM * ); unsigned long __RPC_USER VARIANT_UserSize( __RPC__in unsigned long *, unsigned long , __RPC__in VARIANT * ); unsigned char * __RPC_USER VARIANT_UserMarshal( __RPC__in unsigned long *, __RPC__inout_xcount(0) unsigned char *, __RPC__in VARIANT * ); unsigned char * __RPC_USER VARIANT_UserUnmarshal(__RPC__in unsigned long *, __RPC__in_xcount(0) unsigned char *, __RPC__out VARIANT * ); void __RPC_USER VARIANT_UserFree( __RPC__in unsigned long *, __RPC__in VARIANT * ); /* end of Additional Prototypes */ #ifdef __cplusplus } #endif #endif
mind0n/hive
Cache/Libs/net46/internalapis/vscommon/inc/vsshell80.h
C
mit
849,626
# WhatSong Official repo of the WhatSong app by Tiwiz
tiwiz/WhatSong
README.md
Markdown
mit
54
'use strict'; var defaultEnvConfig = require('./default'); module.exports = { db: { uri: process.env.MONGOHQ_URL || process.env.MONGODB_URI || 'mongodb://' + (process.env.DB_1_PORT_27017_TCP_ADDR || 'localhost') + '/flipflop-test', options: { user: '', pass: '' }, // Enable mongoose debug mode debug: process.env.MONGODB_DEBUG || false }, log: { // logging with Morgan - https://github.com/expressjs/morgan // Can specify one of 'combined', 'common', 'dev', 'short', 'tiny' // format: 'dev' // fileLogger: { // directoryPath: process.cwd(), // fileName: 'app.log', // maxsize: 10485760, // maxFiles: 2, // json: false // } }, port: process.env.PORT || 3001, app: { title: defaultEnvConfig.app.title + ' - Test Environment' }, uploads: { profile: { image: { dest: './modules/users/client/img/profile/uploads/', limits: { fileSize: 100000 // Limit filesize (100kb) for testing purposes } } } }, facebook: { clientID: process.env.FACEBOOK_ID || 'APP_ID', clientSecret: process.env.FACEBOOK_SECRET || 'APP_SECRET', callbackURL: '/api/auth/facebook/callback' }, twitter: { username: '@TWITTER_USERNAME', clientID: process.env.TWITTER_KEY || 'CONSUMER_KEY', clientSecret: process.env.TWITTER_SECRET || 'CONSUMER_SECRET', callbackURL: '/api/auth/twitter/callback' }, google: { clientID: process.env.GOOGLE_ID || 'APP_ID', clientSecret: process.env.GOOGLE_SECRET || 'APP_SECRET', callbackURL: '/api/auth/google/callback' }, linkedin: { clientID: process.env.LINKEDIN_ID || 'APP_ID', clientSecret: process.env.LINKEDIN_SECRET || 'APP_SECRET', callbackURL: '/api/auth/linkedin/callback' }, github: { clientID: process.env.GITHUB_ID || 'APP_ID', clientSecret: process.env.GITHUB_SECRET || 'APP_SECRET', callbackURL: '/api/auth/github/callback' }, paypal: { clientID: process.env.PAYPAL_ID || 'CLIENT_ID', clientSecret: process.env.PAYPAL_SECRET || 'CLIENT_SECRET', callbackURL: '/api/auth/paypal/callback', sandbox: true }, mailer: { from: process.env.MAILER_FROM || 'MAILER_FROM', options: { service: process.env.MAILER_SERVICE_PROVIDER || 'MAILER_SERVICE_PROVIDER', auth: { user: process.env.MAILER_EMAIL_ID || 'MAILER_EMAIL_ID', pass: process.env.MAILER_PASSWORD || 'MAILER_PASSWORD' } } }, seedDB: { seed: process.env.MONGO_SEED === 'true', options: { logResults: process.env.MONGO_SEED_LOG_RESULTS !== 'false', seedUser: { username: process.env.MONGO_SEED_USER_USERNAME || 'seeduser', provider: 'local', email: process.env.MONGO_SEED_USER_EMAIL || 'user@localhost.com', firstName: 'User', lastName: 'Local', displayName: 'User Local', roles: ['user'] }, seedAdmin: { username: process.env.MONGO_SEED_ADMIN_USERNAME || 'seedadmin', provider: 'local', email: process.env.MONGO_SEED_ADMIN_EMAIL || 'admin@localhost.com', firstName: 'Admin', lastName: 'Local', displayName: 'Admin Local', roles: ['user', 'admin'] } } } };
tonymullen/flipflop
config/env/test.js
JavaScript
mit
3,286
package bp.details; import javax.swing.JLabel; import javax.swing.JSpinner; import javax.swing.SpinnerModel; import javax.swing.SpinnerNumberModel; import javax.swing.event.ChangeEvent; import javax.swing.event.ChangeListener; import bp.model.data.Gateway; import bp.model.util.BPKeyWords; import bp.model.util.Controller; public class GatewayDetails extends ElementDetails { /** * */ private static final long serialVersionUID = -2243209273015769935L; public static final String MIN_INPUT = "Minimal input:"; private Gateway gateway = (Gateway) getElement(); private JLabel minInputLb; private JSpinner minInputSp; public GatewayDetails(Gateway element) { super(element); } @Override protected void initComponents() { super.initComponents(); this.minInputLb = new JLabel(MIN_INPUT); final SpinnerModel sm = new SpinnerNumberModel(0, 0, Integer.MAX_VALUE, 1); this.minInputSp = new JSpinner(sm); // Set the texts if available gateway = (Gateway) getElement(); if (gateway.getMinInput() != null) minInputSp.setValue(gateway.getMinInput()); } @Override protected void layoutComponents() { super.layoutComponents(); createAdvanced(); getAdvanced().add(this.minInputLb); getAdvanced().add(this.minInputSp); } @Override protected void addActions() { super.addActions(); this.minInputSp.addChangeListener(new ChangeListener() { @Override public void stateChanged(final ChangeEvent arg0) { GatewayDetails.this.gateway.updateMinInput((Integer) GatewayDetails.this.minInputSp.getValue(), Controller.DETAILS); } }); } @Override protected void dataAttributeChanged(final BPKeyWords keyWord, final Object value) { super.dataAttributeChanged(keyWord, value); if (value != null) { if (keyWord == BPKeyWords.MIN_INPUT) { this.minInputSp.setValue(value); } } } }
farkas-arpad/KROKI-mockup-tool
BusinessProcessModelingTool/src/bp/details/GatewayDetails.java
Java
mit
2,214
<?php /** * @file * Template para o tipo de conteúdo relato dos profissionais do DAB relato_de_experi_ncia_dab_curado */ $relato_link = url(drupal_get_path_alias('node/' . $node->nid), array('absolute' => TRUE)); ?> <div id="node-<?php print $node->nid; ?>" class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>> <div class="cabecalho row"> <?php if ($view_mode == 'teaser'): ?> <?php if ($display_submitted): ?> <div class="submitted col-md-8"> <?php print $user_picture; ?> <?php print $submitted; ?> <?php print render($content['og_group_ref']); ?> </div> <?php endif; ?> <?php else: ?> <?php if ($display_submitted): ?> <div class="submitted col-md-8"> <?php print $user_picture; ?> <?php print $submitted; ?> <?php print render($content['og_group_ref']); ?> </div> <?php endif; ?> <div class="node-relato-menu col-md-4"> <a href="#autores-atores" class="autores-relato-atores-experiencia"> Autores do relato e Atores da experiência </a> </div> <?php endif; ?> </div> <div class="destacado clearfix"> <?php print render($content['field_imagem_de_destaque']); ?> <header> <?php print render($title_prefix); ?> <h2<?php print $title_attributes; ?>> <a rel="bookmark" href="<?php print $node_url; ?>"> <?php print $title; ?> </a> </h2> <?php print render($title_suffix); ?> <?php print render($content['field_descricao']); ?> </header> </div> <div class="dados-da-experiencia row clearfix"> <div class="dados-da-experiencia-header col-md-12"> <h3 class="dados-da-experiencia-subject"> Dados da Experiência </h3> <?php print render($content['field_cidade']); ?> </div> <div class="esquerda col-md-6"> <?php print render($content['field_experiencia_ambito']); ?> <?php print render($content['field_experiencia_catespecificas']); ?> </div> <div class="direita col-md-6"> <?php print render($content['field_envolve_quais_pontos_equip']); ?> <?php print render($content['field_temas']); ?> </div> </div> <div class="content"<?php print $content_attributes; ?>> <?php // We hide the comments and links now so that we can render them later. hide($content['comments']); hide($content['links']); print render($content); ?> </div> <?php print render($content['links']); ?> <?php print render($content['comments']); ?> </div>
ABS-org/cdp_strap
theme/nodes/node--relato_de_experi_ncia_dab_curado.tpl.php
PHP
mit
2,642
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Shapes; using osu.Framework.Graphics.Sprites; using osu.Framework.Graphics.Textures; using osu.Game.Beatmaps; using osu.Game.Graphics; using osu.Game.Rulesets.Mods; using osu.Game.Rulesets.Osu.Objects; using osu.Game.Rulesets.Scoring; using osu.Game.Rulesets.UI; using osuTK; using osuTK.Graphics; namespace osu.Game.Rulesets.Osu.Mods { public class OsuModBlinds : Mod, IApplicableToRulesetContainer<OsuHitObject>, IApplicableToScoreProcessor { public override string Name => "Blinds"; public override string Description => "Play with blinds on your screen."; public override string Acronym => "BL"; public override FontAwesome Icon => FontAwesome.fa_adjust; public override ModType Type => ModType.DifficultyIncrease; public override bool Ranked => false; public override double ScoreMultiplier => 1.12; private DrawableOsuBlinds blinds; public void ApplyToRulesetContainer(RulesetContainer<OsuHitObject> rulesetContainer) { rulesetContainer.Overlays.Add(blinds = new DrawableOsuBlinds(rulesetContainer.Playfield.HitObjectContainer, rulesetContainer.Beatmap)); } public void ApplyToScoreProcessor(ScoreProcessor scoreProcessor) { scoreProcessor.Health.ValueChanged += health => { blinds.AnimateClosedness((float)health.NewValue); }; } /// <summary> /// Element for the Blinds mod drawing 2 black boxes covering the whole screen which resize inside a restricted area with some leniency. /// </summary> public class DrawableOsuBlinds : Container { /// <summary> /// Black background boxes behind blind panel textures. /// </summary> private Box blackBoxLeft, blackBoxRight; private Drawable panelLeft, panelRight, bgPanelLeft, bgPanelRight; private readonly Beatmap<OsuHitObject> beatmap; /// <summary> /// Value between 0 and 1 setting a maximum "closedness" for the blinds. /// Useful for animating how far the blinds can be opened while keeping them at the original position if they are wider open than this. /// </summary> private const float target_clamp = 1; private readonly float targetBreakMultiplier = 0; private readonly float easing = 1; private readonly CompositeDrawable restrictTo; /// <summary> /// <para> /// Percentage of playfield to extend blinds over. Basically moves the origin points where the blinds start. /// </para> /// <para> /// -1 would mean the blinds always cover the whole screen no matter health. /// 0 would mean the blinds will only ever be on the edge of the playfield on 0% health. /// 1 would mean the blinds are fully outside the playfield on 50% health. /// Infinity would mean the blinds are always outside the playfield except on 100% health. /// </para> /// </summary> private const float leniency = 0.1f; public DrawableOsuBlinds(CompositeDrawable restrictTo, Beatmap<OsuHitObject> beatmap) { this.restrictTo = restrictTo; this.beatmap = beatmap; } [BackgroundDependencyLoader] private void load() { RelativeSizeAxes = Axes.Both; Children = new[] { blackBoxLeft = new Box { Anchor = Anchor.TopLeft, Origin = Anchor.TopLeft, Colour = Color4.Black, RelativeSizeAxes = Axes.Y, }, blackBoxRight = new Box { Anchor = Anchor.TopRight, Origin = Anchor.TopRight, Colour = Color4.Black, RelativeSizeAxes = Axes.Y, }, bgPanelLeft = new ModBlindsPanel { Origin = Anchor.TopRight, Colour = Color4.Gray, }, panelLeft = new ModBlindsPanel { Origin = Anchor.TopRight, }, bgPanelRight = new ModBlindsPanel { Colour = Color4.Gray }, panelRight = new ModBlindsPanel() }; } private float calculateGap(float value) => MathHelper.Clamp(value, 0, target_clamp) * targetBreakMultiplier; // lagrange polinominal for (0,0) (0.6,0.4) (1,1) should make a good curve private static float applyAdjustmentCurve(float value) => 0.6f * value * value + 0.4f * value; protected override void Update() { float start = Parent.ToLocalSpace(restrictTo.ScreenSpaceDrawQuad.TopLeft).X; float end = Parent.ToLocalSpace(restrictTo.ScreenSpaceDrawQuad.TopRight).X; float rawWidth = end - start; start -= rawWidth * leniency * 0.5f; end += rawWidth * leniency * 0.5f; float width = (end - start) * 0.5f * applyAdjustmentCurve(calculateGap(easing)); // different values in case the playfield ever moves from center to somewhere else. blackBoxLeft.Width = start + width; blackBoxRight.Width = DrawWidth - end + width; panelLeft.X = start + width; panelRight.X = end - width; bgPanelLeft.X = start; bgPanelRight.X = end; } protected override void LoadComplete() { const float break_open_early = 500; const float break_close_late = 250; base.LoadComplete(); var firstObj = beatmap.HitObjects[0]; var startDelay = firstObj.StartTime - firstObj.TimePreempt; using (BeginAbsoluteSequence(startDelay + break_close_late, true)) leaveBreak(); foreach (var breakInfo in beatmap.Breaks) { if (breakInfo.HasEffect) { using (BeginAbsoluteSequence(breakInfo.StartTime - break_open_early, true)) { enterBreak(); using (BeginDelayedSequence(breakInfo.Duration + break_open_early + break_close_late, true)) leaveBreak(); } } } } private void enterBreak() => this.TransformTo(nameof(targetBreakMultiplier), 0f, 1000, Easing.OutSine); private void leaveBreak() => this.TransformTo(nameof(targetBreakMultiplier), 1f, 2500, Easing.OutBounce); /// <summary> /// 0 is open, 1 is closed. /// </summary> public void AnimateClosedness(float value) => this.TransformTo(nameof(easing), value, 200, Easing.OutQuint); public class ModBlindsPanel : Sprite { [BackgroundDependencyLoader] private void load(TextureStore textures) { Texture = textures.Get("Play/osu/blinds-panel"); } } } } }
naoey/osu
osu.Game.Rulesets.Osu/Mods/OsuModBlinds.cs
C#
mit
7,835
#!/hpf/largeprojects/ccmbio/naumenko/tools/bcbio/anaconda/bin/python """ Looks for a specific sample """ import re import sys import os import os.path sample = sys.argv[1] family,sample_only = sample.split("_") match = re.match('\d*',family) if match: prefix=str(int(match.group(0))/100) report_path = prefix+'x/'+family report=0 bam=0 errors = [] if os.path.isfile(report_path+'/'+family+'.csv'): #print("Report exists") report=1 else: errors.append('Error: no report') if os.path.isfile(report_path+'/'+sample+'.bam'): #print("Bam exists") bam=1 else: errors.append(' ERROR: no bam') if (bam==1 and report==1): print(sample+'\t'+os.getcwd()+"/"+report_path+"\t"+os.getcwd()+"/"+report_path+'/'+sample+'.bam') else: print(sample+'\t'+' '.join(errors)) else: print("Family ID is not starting with digital")
naumenko-sa/cre
cre.locate_sample.py
Python
mit
895
#include <stdio.h> #include <stdlib.h> /* exit, free */ #include <string.h> /* for manipulating filename */ #include "defines.h" /* type definitions and macros for flags and MAX limits */ #include "structs.h" /* structures used (needs defines.h) */ Category* cats[ MAX_TOT_CATS ]; /* array of all Categories */ Property* props[ MAX_TOT_PROPS ]; /* array of all Properties */ short tot_cats = 0, /* total Categories */ tot_props = 0, /* total Properties */ max_cat_name = 0; /* used to format the output to look nice */ char *in_file = NULL, /* name of file for input */ *out_file = NULL; /* name of file for ouput (if any) */ /* **** debug **** */ #if DEBUG int main_vars_size = sizeof( cats ) + sizeof( props ) + sizeof( short ) * 3 + sizeof( char ) * 2; #endif /* local functions */ Flag parse_args( int num_args, char* args[] ); void print_man( char* prog_name ); int cleanup( void ); int free_expr( Expression* expr ); /* input.c functions */ void parse_file( void ); /* output.c functions */ int generator( Flag flags ); /* **** debug **** */ #if DEBUG void debug_info( void ); int vars_size( void ); #endif int main( int argc, char* argv[] ) { Flag flags; /* program flags */ int num_frames; char filename[ 30 ], answer[ 5 ]; /* user response */ if ( argc == 1 ) { printf( "\nUSAGE: %s [ --manpage ] [ -cs ] input_file [ -o output_file ]\n\n", argv[0] ); return EXIT_SUCCESS; } else flags = parse_args( argc, argv ); if ( in_file == NULL ) { printf( "\nNo input file provided.\nQuitting\n\n" ); return EXIT_FAILURE; } if ( flags & STD_OUTPUT ) out_file = "the standard output"; else if ( flags & OUTPUT_FILE ) { if ( out_file == NULL ) { printf( "\nNo output file provided.\nQuitting\n\n" ); return EXIT_FAILURE; } } else { strcpy( filename, in_file ); strcat( filename, ".tsl" ); out_file = filename; } parse_file(); /* **** debug **** */ #if DEBUG debug_info(); #endif num_frames = generator( flags ); if ( flags & COUNT_ONLY ) { printf( "\n\t%d test frames generated\n\n", num_frames ); printf( "Write test frames to %s (y/n)? ", out_file ); scanf( "%s", answer ); if ( answer[0] == 'y' || answer[0] == 'Y' ) printf( "\n\t%d test frames written to %s\n\n", generator( flags & ~COUNT_ONLY ), out_file ); } else printf( "\n\t%d test frames generated and written to %s\n\n", num_frames, out_file ); /* **** debug **** */ #if DEBUG printf( "program base storage = %d bytes\n", vars_size() ); printf( "program total storage = %d bytes\n\n", cleanup() + vars_size() ); #else cleanup(); #endif return EXIT_SUCCESS; } /* Parse the command line arguments and set flags accordingly */ Flag parse_args( int num_args, char* args[] ) { Flag flags = 0; short i, j; for ( i = 1; i < num_args; i++ ) { if ( strcmp( args[i], "--manpage" ) == 0 ) { print_man( args[0] ); exit( EXIT_SUCCESS ); } if ( *args[i] == '-' ) for ( j = 1; j < strlen( args[i] ); j++ ) { switch ( args[i][j] ) { case 'c': flags = flags | COUNT_ONLY; break; case 's': flags = flags | STD_OUTPUT; break; case 'o': if ( !( flags & STD_OUTPUT ) ) { flags = flags | OUTPUT_FILE; out_file = args[ i + 1 ]; } return flags; } } else in_file = args[i]; } return flags; } /* Print the tsl manpage */ void print_man( char* prog_name ) { printf( "\nNAME\n\ttsl - generate test frames from a specification file\n" ); printf( "\nSYNOPSIS\n\ttsl [ --manpage ] [ -cs ] input_file [ -o output_file ]\n" ); printf( "\nDESCRIPTION\n\tThe TSL utility generates test frames from a specification file\n" ); printf( "\twritten in the extended Test Specification Language. By default\n" ); printf( "\tit writes the test frames to a new file created by appending a\n" ); printf( "\t'.tsl' extension to the input_file's name. Options can be used\n" ); printf( "\tto modify the output.\n" ); printf( "\nOPTIONS\n\tThe following options are supported:\n" ); printf( "\n\t--manpage\n\t\tPrint this man page.\n" ); printf( "\n\t-c\tReport the number of test frames generated, but don't\n" ); printf( "\t\twrite them to the output. After the number of frames is\n" ); printf( "\t\treported you will be given the option of writing them\n" ); printf( "\t\tto the output.\n" ); printf( "\n\t-s\tOutput is the standard output.\n" ); printf( "\n\t-o output_file\n\t\tOutput is the file output_file unless the -s option is used.\n\n" ); } /* Free the memory allocated by the program and return how much */ int cleanup( void ) { Choice* curr_choice; int total_size = 0; short i, j; for ( i = 0; i < tot_cats; i++ ) { total_size += sizeof( Category ); for ( j = 0; j < cats[i] -> num_choices; j++ ) { total_size += sizeof( Choice ); curr_choice = cats[i] -> choices[j]; if ( curr_choice -> flags & IF_EXPR ) total_size += free_expr( curr_choice -> if_expr ); free( curr_choice ); } free( cats[i] ); } for ( i = 0; i < tot_props; i++ ) { total_size += sizeof( Property ); free( props[i] ); } return total_size; } /* Free all the memory associated with an Expression (recursive) and return how much */ int free_expr( Expression* expr ) { int expr_size = sizeof( Expression ); if ( expr -> flags & EXPR_A ) expr_size += free_expr( expr -> exprA ); if ( expr -> flags & EXPR_B ) expr_size += free_expr( expr -> exprB ); free( expr ); return expr_size; }
pastoref/VendingMachine
support/categoryPartitionTool-TSL/main.c
C
mit
6,585
# -*- coding: utf-8 -*- """ Date: 2/2/2017 Team: Satoshi Nakamoto @Authors: Alex Levering and Hector Muro Non-standard dependencies: * Twython * NLTK * Folium * Geocoder * psycopg2 TO DO BEFOREHAND: The following steps are non-automatable and have to be performed manually. * Have the NLTK vader lexicon locally (nltk.download("vader_lexicon")) * Have PostGIS installed on PostgreSQL * Set the file paths specified below to wherever your folder is * Upgrade folium to the latest version (0.2.1) """ # Naming options for tables, intermediates and outputs are available in the wrapper. if __name__ == "__main__": """ The tool is not supplied with Tweets out-of-the-box. Set 'gather_data' to True and leave it running for a while. If loop is false it will terminate in a minute or so and create a map from the results automatically This tool was tested and intended for OSGeo Live installs used in the GeoScripting course. """ import tweetAnalysisWrapper tweetAnalysisWrapper.performTweetResearch(folder_path = r"/home/user/git/SatoshiNakamotoGeoscripting/Final_assignment", defaultdb = "postgres", # Making a new database requires connecting to an existing database user = "user", # PostgreSQL username (user is default value on OSGeo Live) password = "user", # PostgreSQL password (user is default on OSGeo Live) ouputdb = "tweet_research", # Specify the output database that is to be created tweet_table_name = "tweets", # Output table where the Tweets are stored gather_data = True, # When True: Will gather data from the Twitter stream search_terms = ["Trump"], # Twitter terms to search for loop_gathering = False, # When True: Will not stop gathering when terminated - use for prolonged gathering APP_KEY = "", # Get these from developer.twitter.com when you make your application APP_SECRET = "", OAUTH_TOKEN = "", OAUTH_TOKEN_SECRET = "")
SatoshiNakamotoGeoscripting/SatoshiNakamotoGeoscripting
Final_assignment/main.py
Python
mit
2,489
require 'swing_support/extensions' module SwingSupport # Class that implements ActionListener interface around a given block class ActionListener java_implements java.awt.event.ActionListener def initialize &block @listener_block = block end java_signature 'public void actionPerformed(ActionEvent event)' # from ActionListener interface: Invoked when an action event occurs. def actionPerformed event @listener_block.call event end end end
arvicco/swing
lib/swing_support/action_listener.rb
Ruby
mit
491
import { Component, OnInit, Input } from '@angular/core'; import { LoadingController, NavController } from 'ionic-angular'; import { Geolocation } from 'ionic-native'; import { Observable } from 'rxjs/Observable'; import { OriginLocationComponent } from '../origin-location/origin-location'; // import { AvailableProvidersComponent } from '../available-providers/available-providers'; @Component({ selector: 'google-map', templateUrl: 'google-map.html', entryComponents: [OriginLocationComponent] }) export class GoogleMapComponent implements OnInit { @Input() isServiceRequested: boolean; public location; map; public isMapIdle: boolean; constructor(public navCtrl: NavController, public loadingCtrl: LoadingController) {} ngOnInit(){ this.map = this.createMap(); this.addMapEventListeners(); this.getLocation().subscribe(location => { this.centerLocation(location) }) } addMapEventListeners(){ google.maps.event.addListener(this.map, 'dragstart', ()=>{ this.isMapIdle = false; }) google.maps.event.addListener(this.map, 'idle', ()=>{ this.isMapIdle = true; }) } getLocation() { let loading = this.loadingCtrl.create({ content: 'Locating...', spinner: 'bubbles' }); loading.present() setTimeout(() => { loading.dismiss(); }, 5000) let options = {timeout: 10000, enableHighAccuracy: true}; let locationObs = Observable.create(observable => { Geolocation.getCurrentPosition(options) .then(resp => { let lat = resp.coords.latitude; let lng = resp.coords.longitude; let location = new google.maps.LatLng(lat, lng); console.log(lat, lng) observable.next(location); }, (err) => { console.log('Geolocation err: ' + err); loading.dismiss(); }) }) return locationObs; } createMap(location = new google.maps.LatLng(39.1031, -84.5120)){ let mapOptions = { center: location, zoom: 13, mapTypeId: google.maps.MapTypeId.ROADMAP, disableDefaultUI: true } let mapEl = document.getElementById('map'); let map = new google.maps.Map(mapEl, mapOptions); return map; } centerLocation(location){ if (location){ this.map.panTo(location) } else { this.getLocation().subscribe(currentLocation => { this.map.panTo(currentLocation) }) } } }
RNATA/services-ionic
src/components/google-map/google-map.ts
TypeScript
mit
2,461
using System.Collections.Generic; using System.Linq; namespace NeuralNetwork { struct ForwardPropagationResult { public List<List<double>> Sums { get; } public List<List<double>> Activations { get; } public int Prediction { get; } public ForwardPropagationResult(List<List<double>> sums, List<List<double>> activations) { Sums = sums; Activations = activations; // The predicted label is the index of the node with the highest activation. Prediction = Activations.Last().IndexOfHighestValue(); } } }
andreimuntean/NeuralNetwork
NeuralNetwork/NeuralNetwork/ForwardPropagationResult.cs
C#
mit
616
<!DOCTYPE html> <!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" lang="en" dir="ltr"> <!--<![endif]--> <!-- Usage: /eic/site/ccc-rec.nsf/tpl-eng/template-1col.html?Open&id=3 (optional: ?Open&page=filename.html&id=x) --> <!-- Created: ; Product Code: 536; Server: stratnotes2.ic.gc.ca --> <head> <!-- Title begins / Début du titre --> <title> Aborcom Resources - Complete profile - Canadian Company Capabilities - Industries and Business - Industry Canada </title> <!-- Title ends / Fin du titre --> <!-- Meta-data begins / Début des métadonnées --> <meta charset="utf-8" /> <meta name="dcterms.language" title="ISO639-2" content="eng" /> <meta name="dcterms.title" content="" /> <meta name="description" content="" /> <meta name="dcterms.description" content="" /> <meta name="dcterms.type" content="report, data set" /> <meta name="dcterms.subject" content="businesses, industry" /> <meta name="dcterms.subject" content="businesses, industry" /> <meta name="dcterms.issued" title="W3CDTF" content="" /> <meta name="dcterms.modified" title="W3CDTF" content="" /> <meta name="keywords" content="" /> <meta name="dcterms.creator" content="" /> <meta name="author" content="" /> <meta name="dcterms.created" title="W3CDTF" content="" /> <meta name="dcterms.publisher" content="" /> <meta name="dcterms.audience" title="icaudience" content="" /> <meta name="dcterms.spatial" title="ISO3166-1" content="" /> <meta name="dcterms.spatial" title="gcgeonames" content="" /> <meta name="dcterms.format" content="HTML" /> <meta name="dcterms.identifier" title="ICsiteProduct" content="536" /> <!-- EPI-11240 --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- MCG-202 --> <meta content="width=device-width,initial-scale=1" name="viewport"> <!-- EPI-11567 --> <meta name = "format-detection" content = "telephone=no"> <!-- EPI-12603 --> <meta name="robots" content="noarchive"> <!-- EPI-11190 - Webtrends --> <script> var startTime = new Date(); startTime = startTime.getTime(); </script> <!--[if gte IE 9 | !IE ]><!--> <link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="icon" type="image/x-icon"> <link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/wet-boew.min.css"> <!--<![endif]--> <link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/theme.min.css"> <!--[if lt IE 9]> <link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="shortcut icon" /> <link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/ie8-wet-boew.min.css" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew.min.js"></script> <![endif]--> <!--[if lte IE 9]> <![endif]--> <noscript><link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/noscript.min.css" /></noscript> <!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER --> <script>dataLayer1 = [];</script> <!-- End Google Tag Manager --> <!-- EPI-11235 --> <link rel="stylesheet" href="/eic/home.nsf/css/add_WET_4-0_Canada_Apps.css"> <link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> <link href="/app/ccc/srch/css/print.css" media="print" rel="stylesheet" type="text/css" /> </head> <body class="home" vocab="http://schema.org/" typeof="WebPage"> <!-- EPIC HEADER BEGIN --> <!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER --> <noscript><iframe title="Google Tag Manager" src="//www.googletagmanager.com/ns.html?id=GTM-TLGQ9K" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer1'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer1','GTM-TLGQ9K');</script> <!-- End Google Tag Manager --> <!-- EPI-12801 --> <span typeof="Organization"><meta property="legalName" content="Department_of_Industry"></span> <ul id="wb-tphp"> <li class="wb-slc"> <a class="wb-sl" href="#wb-cont">Skip to main content</a> </li> <li class="wb-slc visible-sm visible-md visible-lg"> <a class="wb-sl" href="#wb-info">Skip to "About this site"</a> </li> </ul> <header role="banner"> <div id="wb-bnr" class="container"> <section id="wb-lng" class="visible-md visible-lg text-right"> <h2 class="wb-inv">Language selection</h2> <div class="row"> <div class="col-md-12"> <ul class="list-inline mrgn-bttm-0"> <li><a href="nvgt.do?V_TOKEN=1492236115353&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=803&V_SEARCH.docsStart=802&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/?_flId?_flxKy=e1s1&amp;estblmntNo=234567041301&amp;profileId=61&amp;_evId=bck&amp;lang=eng&amp;V_SEARCH.showStricts=false&amp;prtl=1&amp;_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li> </ul> </div> </div> </section> <div class="row"> <div class="brand col-xs-8 col-sm-9 col-md-6"> <a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a> </div> <section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn"> <h2>Search and menus</h2> <ul class="list-inline text-right chvrn"> <li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li> </ul> <div id="mb-pnl"></div> </section> <!-- Site Search Removed --> </div> </div> <nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement"> <h2 class="wb-inv">Topics menu</h2> <div class="container nvbar"> <div class="row"> <ul class="list-inline menu"> <li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li> <li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li> <li><a href="https://travel.gc.ca/">Travel</a></li> <li><a href="https://www.canada.ca/en/services/business.html">Business</a></li> <li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li> <li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li> <li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li> <li><a href="https://www.canada.ca/en/services.html">More services</a></li> </ul> </div> </div> </nav> <!-- EPIC BODY BEGIN --> <nav role="navigation" id="wb-bc" class="" property="breadcrumb"> <h2 class="wb-inv">You are here:</h2> <div class="container"> <div class="row"> <ol class="breadcrumb"> <li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li> <li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li> <li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li> </ol> </div> </div> </nav> </header> <main id="wb-cont" role="main" property="mainContentOfPage" class="container"> <!-- End Header --> <!-- Begin Body --> <!-- Begin Body Title --> <!-- End Body Title --> <!-- Begin Body Head --> <!-- End Body Head --> <!-- Begin Body Content --> <br> <!-- Complete Profile --> <!-- Company Information above tabbed area--> <input id="showMore" type="hidden" value='more'/> <input id="showLess" type="hidden" value='less'/> <h1 id="wb-cont"> Company profile - Canadian Company Capabilities </h1> <div class="profileInfo hidden-print"> <ul class="list-inline"> <li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&amp;rstBtn.x=" class="btn btn-link">New Search</a>&nbsp;|</li> <li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do"> <input type="hidden" name="lang" value="eng" /> <input type="hidden" name="profileId" value="" /> <input type="hidden" name="prtl" value="1" /> <input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" /> <input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" /> <input type="hidden" name="V_SEARCH.depth" value="1" /> <input type="hidden" name="V_SEARCH.showStricts" value="false" /> <input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" /> </form></li> <li>|&nbsp;<a href="nvgt.do?V_SEARCH.docsStart=801&amp;V_DOCUMENT.docRank=802&amp;V_SEARCH.docsCount=3&amp;lang=eng&amp;prtl=1&amp;sbPrtl=&amp;profile=cmpltPrfl&amp;V_TOKEN=1492236121993&amp;V_SEARCH.command=navigate&amp;V_SEARCH.resultsJSP=%2fprfl.do&amp;estblmntNo=234567098576&amp;profileId=&amp;key.newSearchLabel=">Previous Company</a></li> <li>|&nbsp;<a href="nvgt.do?V_SEARCH.docsStart=803&amp;V_DOCUMENT.docRank=804&amp;V_SEARCH.docsCount=3&amp;lang=eng&amp;prtl=1&amp;sbPrtl=&amp;profile=cmpltPrfl&amp;V_TOKEN=1492236121993&amp;V_SEARCH.command=navigate&amp;V_SEARCH.resultsJSP=%2fprfl.do&amp;estblmntNo=234567134006&amp;profileId=&amp;key.newSearchLabel=">Next Company</a></li> </ul> </div> <details> <summary>Third-Party Information Liability Disclaimer</summary> <p>Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.</p> </details> <h2> Aborcom Resources Corporation </h2> <div class="row"> <div class="col-md-5"> <h2 class="h5 mrgn-bttm-0">Legal Name:</h2> <p>Aborcom Resources Corporation</p> <h2 class="h5 mrgn-bttm-0">Operating Name:</h2> <p>Aborcom Resources</p> <div class="mrgn-tp-md"></div> <p class="mrgn-bttm-0" ><a href="http://www.aborcom.ca" target="_blank" title="Website URL">http://www.aborcom.ca</a></p> <p><a href="mailto:info@aborcom.ca" title="info@aborcom.ca">info@aborcom.ca</a></p> </div> <div class="col-md-4 mrgn-sm-sm"> <h2 class="h5 mrgn-bttm-0">Mailing Address:</h2> <address class="mrgn-bttm-md"> 1980 Catherine St<br/> ROCKLAND, Ontario<br/> K4K 1H6 <br/> </address> <h2 class="h5 mrgn-bttm-0">Location Address:</h2> <address class="mrgn-bttm-md"> 1980 Catherine St<br/> ROCKLAND, Ontario<br/> K4K 1H6 <br/> </address> <p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>: (613) 447-3677 </p> <p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>: </p> </div> <div class="col-md-3 mrgn-tp-md"> </div> </div> <div class="row mrgn-tp-md mrgn-bttm-md"> <div class="col-md-12"> <h2 class="wb-inv">Company Profile</h2> <br> Provide consulting and management services specializing in band administration and operations, business relations and government relations.<br> </div> </div> <!-- <div class="wb-tabs ignore-session update-hash wb-eqht-off print-active"> --> <div class="wb-tabs ignore-session"> <div class="tabpanels"> <details id="details-panel1"> <summary> Full profile </summary> <!-- Tab 1 --> <h2 class="wb-invisible"> Full profile </h2> <!-- Contact Information --> <h3 class="page-header"> Contact information </h3> <section class="container-fluid"> <div class="row mrgn-tp-lg"> <div class="col-md-3"> <strong> George Morissette </strong></div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Title: </strong> </div> <div class="col-md-7"> <!--if client gender is not null or empty we use gender based job title--> President </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Area of Responsibility: </strong> </div> <div class="col-md-7"> Management Executive. </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Telephone: </strong> </div> <div class="col-md-7"> (613) 447-3677 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Email: </strong> </div> <div class="col-md-7"> gmorissette@aborcom.ca </div> </div> </section> <p class="mrgn-tp-lg text-right small hidden-print"> <a href="#wb-cont">top of page</a> </p> <!-- Company Description --> <h3 class="page-header"> Company description </h3> <section class="container-fluid"> <div class="row"> <div class="col-md-5"> <strong> Exporting: </strong> </div> <div class="col-md-7"> No &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Industry (NAICS): </strong> </div> <div class="col-md-7"> 541611 - Administrative Management and General Management Consulting Services </div> </div> <div class="row"> <div class="col-md-5"> <strong> Alternate Industries (NAICS): </strong> </div> <div class="col-md-7"> 541619 - Other Management Consulting Services<br> 541720 - Research and Development in the Social Sciences and Humanities<br> 914110 - Aboriginal Public Administration<br> </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Business Activity: </strong> </div> <div class="col-md-7"> Services &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Aboriginal Firm: </strong> </div> <div class="col-md-7"> Registered Aboriginal Business under the Procurement Strategy for Aboriginal Business (PSAB)<br/> </div> </div> </section> <!-- Products / Services / Licensing --> <h3 class="page-header"> Product / Service / Licensing </h3> <section class="container-fluid"> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Service Name: </strong> </div> <div class="col-md-9"> Professional Consulting and Management<br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> Provide professional consulting and management services specializing in band administration and operations, business relations and government relations.<br> <br> </div> </div> </section> <p class="mrgn-tp-lg text-right small hidden-print"> <a href="#wb-cont">top of page</a> </p> <!-- Technology Profile --> <!-- Market Profile --> <!-- Sector Information --> <details class="mrgn-tp-md mrgn-bttm-md"> <summary> Third-Party Information Liability Disclaimer </summary> <p> Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements. </p> </details> </details> <details id="details-panel2"> <summary> Contacts </summary> <h2 class="wb-invisible"> Contact information </h2> <!-- Contact Information --> <section class="container-fluid"> <div class="row mrgn-tp-lg"> <div class="col-md-3"> <strong> George Morissette </strong></div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Title: </strong> </div> <div class="col-md-7"> <!--if client gender is not null or empty we use gender based job title--> President </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Area of Responsibility: </strong> </div> <div class="col-md-7"> Management Executive. </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Telephone: </strong> </div> <div class="col-md-7"> (613) 447-3677 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Email: </strong> </div> <div class="col-md-7"> gmorissette@aborcom.ca </div> </div> </section> </details> <details id="details-panel3"> <summary> Description </summary> <h2 class="wb-invisible"> Company description </h2> <section class="container-fluid"> <div class="row"> <div class="col-md-5"> <strong> Exporting: </strong> </div> <div class="col-md-7"> No &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Industry (NAICS): </strong> </div> <div class="col-md-7"> 541611 - Administrative Management and General Management Consulting Services </div> </div> <div class="row"> <div class="col-md-5"> <strong> Alternate Industries (NAICS): </strong> </div> <div class="col-md-7"> 541619 - Other Management Consulting Services<br> 541720 - Research and Development in the Social Sciences and Humanities<br> 914110 - Aboriginal Public Administration<br> </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Business Activity: </strong> </div> <div class="col-md-7"> Services &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Aboriginal Firm: </strong> </div> <div class="col-md-7"> Registered Aboriginal Business under the Procurement Strategy for Aboriginal Business (PSAB)<br/> </div> </div> </section> </details> <details id="details-panel4"> <summary> Products, services and licensing </summary> <h2 class="wb-invisible"> Product / Service / Licensing </h2> <section class="container-fluid"> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Service Name: </strong> </div> <div class="col-md-9"> Professional Consulting and Management<br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> Provide professional consulting and management services specializing in band administration and operations, business relations and government relations.<br> <br> </div> </div> </section> </details> </div> </div> <div class="row"> <div class="col-md-12 text-right"> Last Update Date 2015-11-23 </div> </div> <!-- - Artifact ID: CBW - IMBS - CCC Search WAR - Group ID: ca.gc.ic.strategis.imbs.ccc.search - Version: 3.26 - Built-By: bamboo - Build Timestamp: 2017-03-02T21:29:28Z --> <!-- End Body Content --> <!-- Begin Body Foot --> <!-- End Body Foot --> <!-- END MAIN TABLE --> <!-- End body --> <!-- Begin footer --> <div class="row pagedetails"> <div class="col-sm-5 col-xs-12 datemod"> <dl id="wb-dtmd"> <dt class=" hidden-print">Date Modified:</dt> <dd class=" hidden-print"> <span><time>2017-03-02</time></span> </dd> </dl> </div> <div class="clear visible-xs"></div> <div class="col-sm-4 col-xs-6"> </div> <div class="col-sm-3 col-xs-6 text-right"> </div> <div class="clear visible-xs"></div> </div> </main> <footer role="contentinfo" id="wb-info"> <nav role="navigation" class="container wb-navcurr"> <h2 class="wb-inv">About government</h2> <!-- EPIC FOOTER BEGIN --> <!-- EPI-11638 Contact us --> <ul class="list-unstyled colcount-sm-2 colcount-md-3"> <li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&amp;from=Industries">Contact us</a></li> <li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li> <li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li> <li><a href="https://www.canada.ca/en/news.html">News</a></li> <li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li> <li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li> <li><a href="http://pm.gc.ca/eng">Prime Minister</a></li> <li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li> <li><a href="http://open.canada.ca/en/">Open government</a></li> </ul> </nav> <div class="brand"> <div class="container"> <div class="row"> <nav class="col-md-10 ftr-urlt-lnk"> <h2 class="wb-inv">About this site</h2> <ul> <li><a href="https://www.canada.ca/en/social.html">Social media</a></li> <li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li> <li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li> <li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li> <li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li> </ul> </nav> <div class="col-xs-6 visible-sm visible-xs tofpg"> <a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a> </div> <div class="col-xs-6 col-md-2 text-right"> <object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object> </div> </div> </div> </div> </footer> <!--[if gte IE 9 | !IE ]><!--> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script> <!--<![endif]--> <!--[if lt IE 9]> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script> <![endif]--> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script> <!-- EPI-10519 --> <span class="wb-sessto" data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span> <script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script> <!-- EPI-11190 - Webtrends --> <script src="/eic/home.nsf/js/webtrends.js"></script> <script>var endTime = new Date();</script> <noscript> <div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&amp;WT.js=No&amp;WT.tv=9.4.0&amp;dcssip=www.ic.gc.ca"/></div> </noscript> <!-- /Webtrends --> <!-- JS deps --> <script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script> <!-- EPI-11262 - Util JS --> <script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script> <!-- EPI-11383 --> <script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script> <span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span> </body></html> <!-- End Footer --> <!-- - Artifact ID: CBW - IMBS - CCC Search WAR - Group ID: ca.gc.ic.strategis.imbs.ccc.search - Version: 3.26 - Built-By: bamboo - Build Timestamp: 2017-03-02T21:29:28Z -->
GoC-Spending/data-corporations
html/234567159527.html
HTML
mit
35,794
'use strict'; const { messages, ruleName } = require('..'); testRule({ ruleName, config: [ { border: 2, '/^margin/': 1, }, ], accept: [ { code: 'a { margin: 0; }', }, { code: 'a { margin: 1px; }', }, { code: 'a { margin: var(--foo); }', description: 'deals with CSS variables', }, { code: 'a { margin: 1px /* 3px */; }', description: 'ignore values in comments', }, { code: 'a { margin-inline: 1px; }', }, { code: 'a { margin: ; }', }, { code: 'a { border: 1px; }', }, { code: 'a { border: 1px solid; }', }, { code: 'a { transition: margin-right 2s ease-in-out; }', description: 'irrelevant shorthand', }, ], reject: [ { code: 'a { margin: 1px 2px; }', message: messages.rejected('margin', 1), line: 1, column: 5, }, { code: 'a { margin-inline: 1px 2px; }', message: messages.rejected('margin-inline', 1), line: 1, column: 5, }, { code: 'a { margin: var(--foo) var(--bar); }', message: messages.rejected('margin', 1), line: 1, column: 5, description: 'deals with CSS variables', }, { code: 'a { margin: 1px 2px 3px 4px; }', message: messages.rejected('margin', 1), line: 1, column: 5, }, { code: 'a { margin: 0 0 0 0; }', message: messages.rejected('margin', 1), line: 1, column: 5, }, { code: 'a { border: 1px solid blue; }', message: messages.rejected('border', 2), line: 1, column: 5, }, ], });
stylelint/stylelint
lib/rules/declaration-property-max-values/__tests__/index.js
JavaScript
mit
1,491
# coffee-module [![Dependency status](http://img.shields.io/david/TKHuang/coffee-module.svg?style=flat)](https://david-dm.org/TKHuang/coffee-module) [![devDependency Status](http://img.shields.io/david/dev/TKHuang/coffee-module.svg?style=flat)](https://david-dm.org/TKHuang/coffee-module#info=devDependencies) [![Build Status](http://img.shields.io/travis/TKHuang/coffee-module.svg?style=flat&branch=master)](https://travis-ci.org/TKHuang/coffee-module) [![NPM](https://nodei.co/npm/coffee-module.svg?style=flat)](https://npmjs.org/package/coffee-module) ## Installation npm install coffee-module ## Usage Example ## Testing npm test ## License The MIT License (MIT) Copyright 2014 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
TKHuang/test-npm-module
README.md
Markdown
mit
1,725
<?php namespace Rebase\BigvBundle\Entity; use Doctrine\ORM\Mapping as ORM; use Rebase\BigvBundle\Entity\Game; /** * Rebase\BigvBundle\Entity\Slot * * @ORM\Table() * @ORM\Entity */ class Slot { /** * @var integer $id * * @ORM\Column(name="id", type="integer") * @ORM\Id * @ORM\GeneratedValue(strategy="AUTO") */ private $id; /** * @ORM\ManyToOne(targetEntity="Court", inversedBy="slots") * @ORM\JoinColumn(name="court_id", referencedColumnName="id") */ protected $court; /** * @ORM\OneToOne(targetEntity="Game", inversedBy="slot") * @ORM\JoinColumn(name="game_id", referencedColumnName="id") */ protected $game; /** * @ORM\ManyToOne(targetEntity="Round", inversedBy="slot") * @ORM\JoinColumn(name="round_id", referencedColumnName="id") */ private $round; /** * @ORM\Column(type="integer") */ private $priority; /** * @ORM\Column(type="datetime") */ private $start; /** * @ORM\Column(type="datetime") */ private $end; /** * Get id * * @return integer */ public function getId() { return $this->id; } public function getShortDate() { return $this->start->format("y-m-d"); } public function getDate() { return new \DateTime($this->getStart()->format("y-m-d")); } /** * Set venue * * @param Rebase\BigvBundle\Entity\Court $court */ public function setCourt(\Rebase\BigvBundle\Entity\Court $court) { $this->court = $court; } /** * Get venue * * @return Rebase\BigvBundle\Entity\Venue */ public function getCourt() { return $this->court; } /** * Set priority * * @param integer $priority */ public function setPriority($priority) { $this->priority = $priority; } /** * Get priority * * @return integer */ public function getPriority() { return $this->priority; } public function getPriorityName() { switch($this->priority) { case 1: return "OK"; break; case 2: return "Good"; break; case 3: return "Great"; break; } return "??"; } /** * Set start * * @param datetime $start */ public function setStart($start) { $this->start = $start; } /** * Get start * * @return datetime */ public function getStart() { return $this->start; } /** * Set end * * @param datetime $end */ public function setEnd($end) { $this->end = $end; } /** * Get end * * @return datetime */ public function getEnd() { return $this->end; } /** * Set round * * @param Rebase\BigvBundle\Entity\Round $round */ public function setRound(\Rebase\BigvBundle\Entity\Round $round) { $this->round = $round; } /** * Get round * * @return Rebase\BigvBundle\Entity\Round */ public function getRound() { return $this->round; } /** * Set game * * @param Rebase\BigvBundle\Entity\Game $game */ public function setGame(\Rebase\BigvBundle\Entity\Game $game) { $this->game = $game; } public function removeGame() { if ($this->game) { $v = $this->game; $this->game = NULL; $v->removeSlot(); } } /** * Get game * * @return Rebase\BigvBundle\Entity\game */ public function getGame() { return $this->game; } }
daemonl/fxm
src/Rebase/BigvBundle/Entity/Slot.php
PHP
mit
3,896
<!DOCTYPE html> <html ng-app="todo"> <head> <title>Angular Jet Todo e2e Test</title> <!-- Angular --> <script src="../../../bower_components/angular/angular.min.js"></script> <!-- Firebase --> <script src="../../../bower_components/jet/deploy/jet.js"></script> <!-- AngularFire --> <script src="../../../dist/angular-jet.js"></script> <!-- Custom CSS --> <link rel="stylesheet" href="todo.css"> </head> <body ng-controller="TodoCtrl"> <div> <!-- Add a random todo button --> <button id="addRandomTodoButton" ng-click="addRandomTodo()">Add a Random Todo</button> </div> <!-- Add todo input --> <form ng-submit="addTodo()"> <input placeholder="What needs to be done?" ng-model="newTodo" autofocus> </form> <form> <select ng-model="orderAttr"> <option value="$value.title">Title</option> <option value="$value.id">ID</option> </select> </form> <!-- Todo list --> <div id="todos"> <div class="todo" ng-cloak ng-repeat="todo in todos | orderBy: orderAttr"> {{todo.$value[orderAttr]}} <input class="toggle" type="checkbox" ng-model="todo.$value.completed" /> <input class="edit" ng-model="todo.$value.title" /> <button class="removeTodoButton" ng-click="removeTodo(todo.$value)">Remove</button> <span ng-if="todo.$error" ng-click="todo.$revert()">{{todo.$error.data.message}} Click to revert.</span> </div> </div> <!-- Custom JS --> <script src="todo_unordered.js" defer></script> </body> </html>
lipp/angular-jet
tests/protractor/todo/todo_unordered.html
HTML
mit
1,591
{% extends 'base.html' %} {% block navigation %} <nav class="navbar navbar-default"> <div class="container-fluid"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="#">Brand</a> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav"> <li class="active"><a href="#">Link <span class="sr-only">(current)</span></a></li> <li><a href="#">Link</a></li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Dropdown <span class="caret"></span></a> <ul class="dropdown-menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> <li role="separator" class="divider"></li> <li><a href="#">One more separated link</a></li> </ul> </li> </ul> <form class="navbar-form navbar-left"> <div class="form-group"> <input type="text" class="form-control" placeholder="Search"> </div> <button type="submit" class="btn btn-default">Submit</button> </form> <ul class="nav navbar-nav navbar-right"> <li><a href="#">Link</a></li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Dropdown <span class="caret"></span></a> <ul class="dropdown-menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </li> </ul> </div><!-- /.navbar-collapse --> </div><!-- /.container-fluid --> </nav> {% endblock %}
tlubenov/tgdj_apps
tglserver/templates/navbar.html
HTML
mit
2,548
--- title: "Pulse" description: "Memory and lifetime analysis." --- Memory and lifetime analysis. Activate with `--pulse`. Supported languages: - C/C++/ObjC: Yes - C#/.Net: No - Erlang: Yes - Java: Yes ### What is Infer:Pulse? Pulse is an interprocedural memory safety analysis. Pulse can detect, for instance, [Null dereferences](/docs/next/all-issue-types#nullptr_dereference) in Java. Errors are only reported when all conditions on the erroneous path are true regardless of input. Pulse should gradually replace the original [biabduction](/docs/next/checker-biabduction) analysis of Infer. An example of a Null dereference found by Pulse is given below. ```java class Person { Person emergencyContact; String address; Person getEmergencyContact() { return this.emergencyContact; } } class Registry { void create() { Person p = new Person(); Person c = p.getEmergencyContact(); // Null dereference here System.out.println(c.address); } void printContact(Person p) { // No null dereference, as we don't know anything about `p` System.out.println(p.getEmergencyContact().address); } } ``` How to run pulse for Java: ```bash infer run --pulse -- javac Test.java ``` Pulse reports a Null dereference on this file on `create()`, as it tries to access the field `address` of object `c`, and `c` has value `null`. In contrast, Pulse gives no report for `printContact(Person p)`, as we cannot be sure that `p.getEmergencyContact()` will return `null`. Pulse then labels this error as latent and only reports if there is a call to `printContact(Person p)` satisfying the condition for Null dereference. ### Pulse x Nullsafe [Nullsafe](/docs/next/checker-eradicate) is a type checker for `@Nullable` annotations for Java. Classes following the Nullsafe discipline are annotated with `@Nullsafe`. Consider the classes `Person` and `Registry` from the previous example. Assuming that class `Person` is annotated with `@Nullsafe`. In this case, we also annotate `getEmergencyContact()` with `@Nullable`, to make explicit that this method can return the `null` value. There is still the risk that classes depending on `Person` have Null dereferences. In this case, Pulse would report a Null dereference on `Registry`. It could also be the case that class `Registry` is annotated with `@Nullsafe`. By default Pulse reports on `@Nullsafe` files too, see the `--pulse-nullsafe-report-npe` option (Facebook-specific: Pulse does not report on `@Nullsafe` files). ```java @Nullsafe(Nullsafe.Mode.LOCAL) class Person { Person emergencyContact; String address; @Nullable Person getEmergencyContact() { return this.emergencyContact; } } class Registry { ... // Pulse reports here } ``` ## List of Issue Types The following issue types are reported by this checker: - [BAD_KEY](/docs/next/all-issue-types#bad_key) - [BAD_MAP](/docs/next/all-issue-types#bad_map) - [BAD_RECORD](/docs/next/all-issue-types#bad_record) - [CONSTANT_ADDRESS_DEREFERENCE](/docs/next/all-issue-types#constant_address_dereference) - [MEMORY_LEAK](/docs/next/all-issue-types#memory_leak) - [NIL_BLOCK_CALL](/docs/next/all-issue-types#nil_block_call) - [NIL_INSERTION_INTO_COLLECTION](/docs/next/all-issue-types#nil_insertion_into_collection) - [NIL_MESSAGING_TO_NON_POD](/docs/next/all-issue-types#nil_messaging_to_non_pod) - [NO_MATCHING_BRANCH_IN_TRY](/docs/next/all-issue-types#no_matching_branch_in_try) - [NO_MATCHING_CASE_CLAUSE](/docs/next/all-issue-types#no_matching_case_clause) - [NO_MATCHING_FUNCTION_CLAUSE](/docs/next/all-issue-types#no_matching_function_clause) - [NO_MATCH_OF_RHS](/docs/next/all-issue-types#no_match_of_rhs) - [NO_TRUE_BRANCH_IN_IF](/docs/next/all-issue-types#no_true_branch_in_if) - [NULLPTR_DEREFERENCE](/docs/next/all-issue-types#nullptr_dereference) - [OPTIONAL_EMPTY_ACCESS](/docs/next/all-issue-types#optional_empty_access) - [PULSE_UNINITIALIZED_VALUE](/docs/next/all-issue-types#pulse_uninitialized_value) - [STACK_VARIABLE_ADDRESS_ESCAPE](/docs/next/all-issue-types#stack_variable_address_escape) - [USE_AFTER_DELETE](/docs/next/all-issue-types#use_after_delete) - [USE_AFTER_FREE](/docs/next/all-issue-types#use_after_free) - [USE_AFTER_LIFETIME](/docs/next/all-issue-types#use_after_lifetime) - [VECTOR_INVALIDATION](/docs/next/all-issue-types#vector_invalidation)
jvillard/infer
website/docs/checker-pulse.md
Markdown
mit
4,396
--- layout: post date: 2009-05-14 10:35:00 title: St Louis Sunrise tags: [archived-posts] categories: archives permalink: /:categories/:year/:month/:day/:title/ --- It's going to be raining the next few days, but this morning I was able to go for my walk, but the sun scudded through the clouds.... <a href="http://s562.photobucket.com/albums/ss67/pugaippadam/?action=view&current=IMG_0472.jpg" target="_blank"><img src="http://i562.photobucket.com/albums/ss67/pugaippadam/IMG_0472.jpg" border="0" alt="130509 sunrise"></a> <LJ user="asakiyume"> shares my love of the sky and I learnt the phrase, "sky ocean" from her...
deeyum/deeyum.github.io
_posts/archives/2009-05-14-St-Louis-Sunrise.md
Markdown
mit
625
// Regular expression that matches all symbols in the `Kaithi` script as per Unicode v6.0.0: /\uD804[\uDC80-\uDCC1]/;
mathiasbynens/unicode-data
6.0.0/scripts/Kaithi-regex.js
JavaScript
mit
117
using School.Domain.Models; namespace School.Domain.Contracts.Repositories { public interface IUserRepository : IRepository<User> { User GetByIdWithProperties(int id); User Authenticate(string username, string password); User GetByRefreshTokenId(string refreshTokenId); } }
mersocarlin/school-web-api
School/School.Domain/Contracts/Repositories/IUserRepository.cs
C#
mit
314
package com.cmput402w2016.t1.webapi.handler; import com.cmput402w2016.t1.data.Segment; import com.cmput402w2016.t1.webapi.Helper; import com.cmput402w2016.t1.webapi.WebApi; import com.sun.net.httpserver.HttpExchange; import com.sun.net.httpserver.HttpHandler; import java.util.Map; /** * Handler for the /segment webservice route */ public class SegmentHandler implements HttpHandler { /** * Handle the web request to the server * * @param httpExchange HttpExchange object containing the request */ @Override public void handle(HttpExchange httpExchange) { // Get & parse query try { String requestMethod = httpExchange.getRequestMethod(); if (requestMethod.equalsIgnoreCase("GET")) { String query = httpExchange.getRequestURI().getRawQuery(); Map<String, String> stringStringMap = Helper.queryToMap(query); if (stringStringMap.containsKey("geohash")) { String geohash = stringStringMap.get("geohash"); String neighbors = Segment.getClosestSegmentFromGeohash(geohash, WebApi.get_segment_table()); Helper.requestResponse(httpExchange, 200, neighbors); httpExchange.close(); return; } else if (stringStringMap.containsKey("lat") && stringStringMap.containsKey("lon")) { String lat = stringStringMap.get("lat"); String lon = stringStringMap.get("lon"); String neighbors = Segment.getClosestSegmentFromLatLon(lat, lon, WebApi.get_segment_table()); Helper.requestResponse(httpExchange, 200, neighbors); httpExchange.close(); return; } } Helper.malformedRequestResponse(httpExchange, 400, "Invalid query to the segment api"); httpExchange.close(); } catch (Exception e) { // Wasn't returned earlier, something must be wrong e.printStackTrace(); Helper.malformedRequestResponse(httpExchange, 400, e.getMessage()); httpExchange.close(); } } }
cmput402w2016/CMPUT402W16T1
MapCore/src/main/java/com/cmput402w2016/t1/webapi/handler/SegmentHandler.java
Java
mit
2,216
<div class="row"> <div class="col-lg-12"> <form method="post" action="<?php echo site_url('admin/pages/save'); ?>"> <input type="hidden" name="id" value="<?php echo !empty($page) ? $page->id : ''; ?>"/> <section class="panel"> <header class="panel-heading"><span class="h4"><?php echo !empty($page) ? $page->title : 'Pagina noua'; ?></span></header> <div class="panel-body"> <div class="form-group"> <label>Title *</label> <input name="title" type="text" value="<?php echo !empty($page) ? $page->title : ''; ?>" required class="form-control"> </div> <div class="form-group"> <label>Image</label> <input name="file" type="file" class="form-control"> </div> <div class="form-group"> <label>Content *</label> <textarea name="content" class="form-control" required rows="10"><?php echo !empty($page) ? $page->content : ''; ?></textarea> </div> </div> <footer class="panel-footer text-right bg-light lter"> <a href="<?php echo site_url('admin/pages'); ?>" class="btn btn-s-xs">Cancel</a> <button type="submit" class="btn btn-success btn-s-xs">Save</button> </footer> </section> </form> </div> </div>
nguyentrannhatrang/thoitrangchobe
application/views/admin/page.php
PHP
mit
1,628
package com.swfarm.biz.chain.bo; import java.io.Serializable; import java.sql.Timestamp; import java.util.Random; import com.swfarm.pub.framework.FormNumberCache; public class JobExecutionState implements Serializable { private Long id; private String jobName; private String jobInstanceName; private String saleChannel; private String accountNumber; private Timestamp executionTime = new Timestamp(System.currentTimeMillis()); public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getJobName() { return jobName; } public void setJobName(String jobName) { this.jobName = jobName; } public String getJobInstanceName() { return jobInstanceName; } public void setJobInstanceName(String jobInstanceName) { this.jobInstanceName = jobInstanceName; } public String getSaleChannel() { return saleChannel; } public void setSaleChannel(String saleChannel) { this.saleChannel = saleChannel; } public String getAccountNumber() { return accountNumber; } public void setAccountNumber(String accountNumber) { this.accountNumber = accountNumber; } public Timestamp getExecutionTime() { return executionTime; } public void setExecutionTime(Timestamp executionTime) { this.executionTime = executionTime; } public String generateJobInstanceName() { StringBuffer jobInstanceNameBuffer = new StringBuffer(); jobInstanceNameBuffer.append(this.jobName); jobInstanceNameBuffer.append(System.currentTimeMillis()); Random random = new Random(); int i1 = FormNumberCache.getRandomInteger(1, 9, random); int i2 = FormNumberCache.getRandomInteger(1, 9, random); int i3 = FormNumberCache.getRandomInteger(1, 9, random); int i4 = FormNumberCache.getRandomInteger(1, 9, random); jobInstanceNameBuffer.append(i1); jobInstanceNameBuffer.append(i2); jobInstanceNameBuffer.append(i3); jobInstanceNameBuffer.append(i4); return jobInstanceNameBuffer.toString(); } public static void main(String[] args) { } }
zhangqiang110/my4j
pms/src/main/java/com/swfarm/biz/chain/bo/JobExecutionState.java
Java
mit
2,105
import React from 'react'; import HomeLayout from '../layouts/HomeLayout'; import BookEditor from '../components/BookEditor'; import { get } from '../utils/request'; class BookEdit extends React.Component { constructor(props) { super(props); this.state = { book: null }; } componentWillMount() { const bookId = this.context.router.params.id; get('http://localhost:3000/book/' + bookId) .then(res => { this.setState({ book: res }); }); } render() { const { book } = this.state; return book ? <BookEditor editTarget={book} /> : <span>加载中...</span>; } } BookEdit.contextTypes = { router: React.PropTypes.object.isRequired }; export default BookEdit;
prodigalyijun/demo-by-antd
src/pages/BookEdit.js
JavaScript
mit
829
<!doctype html> <html> <head> <meta charset="utf-8"/> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-touch-fullscreen" content="yes"> <title>KISSY Combobox Demo</title> <link href="/kissy/src/css/src/dpl/base.css" rel="stylesheet"/> <link href="assets/dpl.css" rel="stylesheet"/> <link href="../menu/assets/dpl.css" rel="stylesheet"/> </head> <body> <div class="container"> <h1>KISSY Combobox</h1> </div> <script src="/kissy/build/seed.js"></script> <script> KISSY.use("menu", function (S, Menu) { new Menu({ width:200, render:'.container', listeners:{ "click":function (e) { var h; if (h = e.target.get("href")) { window.open(h); } } }, children:[ { content:"dpl", href:'demo/dpl/demo.html' }, { content:'other', xclass:'submenu', menu:{ children:[ { content:'简单静态使用', href:'demo/other/static-basic.html' }, { content:'简单动态使用', href:'demo/other/xhr-basic.html' }, { content:'简单 combobox', href:'demo/other/combobox.html' }, { content:'taobao 首页模式', href:'demo/other/fp.html' }, { content:'gmail 模式', href:'demo/other/gmail.html' }, { content:'gmail 光标跟随模式', href:'demo/other/at.html' }, { content:'weibo 光标跟随模式', href:'demo/other/at-weibo.html' } ] } } ] }).render(); }); </script> </body> </html>
007slm/kissy
src/combobox/demo.html
HTML
mit
2,727
package jasm const header = ` function jasm(stdlib, foreign, heap) { "use asm"; var pc = 0; // pseudo program counter var sp = 0; // stack pointer var ret = 0; // return address, for jal var r0 = 0, r1 = 0, r2 = 0, r3 = 0; // general purpose 32-bit registers var f0 = 0.0, f1 = 0.0, f2 = 0.0, f3 = 0.0; // temp floating point registers var err = 0; var memI32 = new stdlib.Int32Array(heap); var memU32 = new stdlib.Uint32Array(heap); var memI8 = new stdlib.Int8Array(heap); var memU8 = new stdlib.Uint8Array(heap); var memF64 = new stdlib.Float64Array(heap); function setpc(newpc) { newpc = newpc|0; pc = newpc|0; } function setsp(newsp) { newsp = newsp|0; sp = newsp|0; } function seterr(newerr) { newerr = newerr|0; err = newerr|0; } function setret(newret) { newret = newret|0; ret = newret|0; } function getpc() { return pc|0; } function getsp() { return sp|0; } function getret() { return ret|0; } function geterr() { return err|0; } function getr1() { return r1|0; } function getr2() { return r2|0; } function getr3() { return r3|0; } function getf0() { return +f0; } function getf1() { return +f1; } function getf2() { return +f2; } function getf3() { return +f3; } function clearRegs() { pc = 0|0; sp = 0|0; ret = 0|0; err = 0|0; r0 = 0|0; r1 = 0|0; r2 = 0|0; r3 = 0|0; f0 = 0.0; f1 = 0.0; f2 = 0.0; f3 = 0.0; } function step() { var pc = 0; pc_ = pc|0; pc = (pc + 4) | 0; switch (pc_|0) { ` const footer = ` default: err = 1|0; } } function run(ncycle) { ncycle = ncycle|0; while (ncycle|0 > 0) { step(); r0 = 0|0; ncycle = ((ncycle|0) + -1)|0; if ((err|0) != (0|0)) { break; } } } return { setpc: setpc, setsp: setsp, seterr: seterr, setret: setret, getpc: getpc, getsp: getsp, geterr: geterr, getret: getret, getr1: getr1, getr2: getr2, getr3: getr3, getf0: getf0, getf1: getf1, getf2: getf2, getf3: getf3, clearRegs: clearRegs, run: run, }; } `
h8liu/xlang
jasm/header.go
GO
mit
2,400
package controllers import com.thetestpeople.trt.json.JsonSerializers._ import com.thetestpeople.trt.model.Configuration import com.thetestpeople.trt.service.Service import com.thetestpeople.trt.utils.HasLogger import play.api.libs.json.Json import play.api.mvc.Action import play.api.mvc.Controller import play.api.Routes /** * Handle AJAX requests from the browser. */ class WebApiController(service: Service) extends Controller with HasLogger { def testNames(query: String) = Action { implicit request ⇒ Ok(Json.toJson(service.getTestNames(query))) } def groups(query: String) = Action { implicit request ⇒ Ok(Json.toJson(service.getGroups(query))) } def categories(query: String) = Action { implicit request ⇒ Ok(Json.toJson(service.getCategoryNames(query))) } def configurationChart(configuration: Configuration) = Action { implicit request ⇒ val counts = service.getAllHistoricalTestCounts.getHistoricalTestCounts(configuration).map(_.counts).getOrElse(Seq()) Ok(Json.toJson(counts)) } def javascriptRoutes = Action { implicit request ⇒ Ok(Routes.javascriptRouter("jsRoutes")( routes.javascript.WebApiController.testNames, routes.javascript.WebApiController.groups, routes.javascript.WebApiController.categories, routes.javascript.WebApiController.configurationChart)).as("text/javascript") } }
thetestpeople/trt
app/controllers/WebApiController.scala
Scala
mit
1,388
// Copyright (c) 2011-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Gamblr developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "overviewpage.h" #include "ui_overviewpage.h" #include "bitcoinunits.h" #include "clientmodel.h" #include "darksend.h" #include "darksendconfig.h" #include "guiconstants.h" #include "guiutil.h" #include "optionsmodel.h" #include "transactionfilterproxy.h" #include "transactiontablemodel.h" #include "walletmodel.h" #include "init.h" #include <QAbstractItemDelegate> #include <QPainter> #include <QTimer> #define DECORATION_SIZE 48 #define ICON_OFFSET 16 #define NUM_ITEMS 5 class TxViewDelegate : public QAbstractItemDelegate { Q_OBJECT public: TxViewDelegate(): QAbstractItemDelegate(), unit(BitcoinUnits::CHIP) { } inline void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index ) const { painter->save(); QIcon icon = qvariant_cast<QIcon>(index.data(Qt::DecorationRole)); QRect mainRect = option.rect; mainRect.moveLeft(ICON_OFFSET); QRect decorationRect(mainRect.topLeft(), QSize(DECORATION_SIZE, DECORATION_SIZE)); int xspace = DECORATION_SIZE + 8; int ypad = 6; int halfheight = (mainRect.height() - 2*ypad)/2; QRect amountRect(mainRect.left() + xspace, mainRect.top()+ypad, mainRect.width() - xspace - ICON_OFFSET, halfheight); QRect addressRect(mainRect.left() + xspace, mainRect.top()+ypad+halfheight, mainRect.width() - xspace, halfheight); icon.paint(painter, decorationRect); QDateTime date = index.data(TransactionTableModel::DateRole).toDateTime(); QString address = index.data(Qt::DisplayRole).toString(); qint64 amount = index.data(TransactionTableModel::AmountRole).toLongLong(); bool confirmed = index.data(TransactionTableModel::ConfirmedRole).toBool(); QVariant value = index.data(Qt::ForegroundRole); QColor foreground = option.palette.color(QPalette::Text); if(value.canConvert<QBrush>()) { QBrush brush = qvariant_cast<QBrush>(value); foreground = brush.color(); } painter->setPen(foreground); painter->drawText(addressRect, Qt::AlignLeft|Qt::AlignVCenter, address); if(amount < 0) { foreground = COLOR_NEGATIVE; } else if(!confirmed) { foreground = COLOR_UNCONFIRMED; } else { foreground = option.palette.color(QPalette::Text); } painter->setPen(foreground); QString amountText = BitcoinUnits::formatWithUnit(unit, amount, true); if(!confirmed) { amountText = QString("[") + amountText + QString("]"); } painter->drawText(amountRect, Qt::AlignRight|Qt::AlignVCenter, amountText); painter->setPen(option.palette.color(QPalette::Text)); painter->drawText(amountRect, Qt::AlignLeft|Qt::AlignVCenter, GUIUtil::dateTimeStr(date)); painter->restore(); } inline QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const { return QSize(DECORATION_SIZE, DECORATION_SIZE); } int unit; }; #include "overviewpage.moc" OverviewPage::OverviewPage(QWidget *parent) : QWidget(parent), ui(new Ui::OverviewPage), clientModel(0), walletModel(0), currentBalance(-1), currentUnconfirmedBalance(-1), currentImmatureBalance(-1), txdelegate(new TxViewDelegate()), filter(0) { ui->setupUi(this); // Recent transactions ui->listTransactions->setItemDelegate(txdelegate); ui->listTransactions->setIconSize(QSize(DECORATION_SIZE, DECORATION_SIZE)); ui->listTransactions->setMinimumHeight(NUM_ITEMS * (DECORATION_SIZE + 2)); ui->listTransactions->setAttribute(Qt::WA_MacShowFocusRect, false); connect(ui->listTransactions, SIGNAL(clicked(QModelIndex)), this, SLOT(handleTransactionClicked(QModelIndex))); // init "out of sync" warning labels ui->labelWalletStatus->setText("(" + tr("out of sync") + ")"); ui->labelDarksendSyncStatus->setText("(" + tr("out of sync") + ")"); ui->labelTransactionsStatus->setText("(" + tr("out of sync") + ")"); showingDarkSendMessage = 0; darksendActionCheck = 0; lastNewBlock = 0; if(fLiteMode){ ui->frameDarksend->setVisible(false); } else if(!fMasterNode) { timer = new QTimer(this); connect(timer, SIGNAL(timeout()), this, SLOT(darkSendStatus())); timer->start(333); } if(fMasterNode){ ui->toggleDarksend->setText("(" + tr("Disabled") + ")"); ui->darksendAuto->setText("(" + tr("Disabled") + ")"); ui->darksendReset->setText("(" + tr("Disabled") + ")"); ui->frameDarksend->setEnabled(false); }else if(!fEnableDarksend){ ui->toggleDarksend->setText(tr("Start Darksend Mixing")); } else { ui->toggleDarksend->setText(tr("Stop Darksend Mixing")); } // start with displaying the "out of sync" warnings showOutOfSyncWarning(true); } void OverviewPage::handleTransactionClicked(const QModelIndex &index) { if(filter) emit transactionClicked(filter->mapToSource(index)); } OverviewPage::~OverviewPage() { if(!fLiteMode && !fMasterNode) disconnect(timer, SIGNAL(timeout()), this, SLOT(darkSendStatus())); delete ui; } void OverviewPage::setBalance(qint64 balance, qint64 unconfirmedBalance, qint64 immatureBalance, qint64 anonymizedBalance) { int unit = walletModel->getOptionsModel()->getDisplayUnit(); currentBalance = balance; currentUnconfirmedBalance = unconfirmedBalance; currentImmatureBalance = immatureBalance; currentAnonymizedBalance = anonymizedBalance; ui->labelBalance->setText(BitcoinUnits::formatWithUnit(unit, balance)); ui->labelUnconfirmed->setText(BitcoinUnits::formatWithUnit(unit, unconfirmedBalance)); ui->labelImmature->setText(BitcoinUnits::formatWithUnit(unit, immatureBalance)); ui->labelAnonymized->setText(BitcoinUnits::formatWithUnit(unit, anonymizedBalance)); ui->labelTotal->setText(BitcoinUnits::formatWithUnit(unit, balance + unconfirmedBalance + immatureBalance)); // only show immature (newly mined) balance if it's non-zero, so as not to complicate things // for the non-mining users bool showImmature = immatureBalance != 0; ui->labelImmature->setVisible(showImmature); ui->labelImmatureText->setVisible(showImmature); if(cachedTxLocks != nCompleteTXLocks){ cachedTxLocks = nCompleteTXLocks; ui->listTransactions->update(); } } void OverviewPage::setClientModel(ClientModel *model) { this->clientModel = model; if(model) { // Show warning if this is a prerelease version connect(model, SIGNAL(alertsChanged(QString)), this, SLOT(updateAlerts(QString))); updateAlerts(model->getStatusBarWarnings()); } } void OverviewPage::setWalletModel(WalletModel *model) { this->walletModel = model; if(model && model->getOptionsModel()) { // Set up transaction list filter = new TransactionFilterProxy(); filter->setSourceModel(model->getTransactionTableModel()); filter->setLimit(NUM_ITEMS); filter->setDynamicSortFilter(true); filter->setSortRole(Qt::EditRole); filter->setShowInactive(false); filter->sort(TransactionTableModel::Status, Qt::DescendingOrder); ui->listTransactions->setModel(filter); ui->listTransactions->setModelColumn(TransactionTableModel::ToAddress); // Keep up to date with wallet setBalance(model->getBalance(), model->getUnconfirmedBalance(), model->getImmatureBalance(), model->getAnonymizedBalance()); connect(model, SIGNAL(balanceChanged(qint64, qint64, qint64, qint64)), this, SLOT(setBalance(qint64, qint64, qint64, qint64))); connect(model->getOptionsModel(), SIGNAL(displayUnitChanged(int)), this, SLOT(updateDisplayUnit())); connect(ui->darksendAuto, SIGNAL(clicked()), this, SLOT(darksendAuto())); connect(ui->darksendReset, SIGNAL(clicked()), this, SLOT(darksendReset())); connect(ui->toggleDarksend, SIGNAL(clicked()), this, SLOT(toggleDarksend())); } // update the display unit, to not use the default ("CHIP") updateDisplayUnit(); } void OverviewPage::updateDisplayUnit() { if(walletModel && walletModel->getOptionsModel()) { if(currentBalance != -1) setBalance(currentBalance, currentUnconfirmedBalance, currentImmatureBalance, currentAnonymizedBalance); // Update txdelegate->unit with the current unit txdelegate->unit = walletModel->getOptionsModel()->getDisplayUnit(); ui->listTransactions->update(); } } void OverviewPage::updateAlerts(const QString &warnings) { this->ui->labelAlerts->setVisible(!warnings.isEmpty()); this->ui->labelAlerts->setText(warnings); } void OverviewPage::showOutOfSyncWarning(bool fShow) { ui->labelWalletStatus->setVisible(fShow); ui->labelDarksendSyncStatus->setVisible(fShow); ui->labelTransactionsStatus->setVisible(fShow); } void OverviewPage::updateDarksendProgress() { if(IsInitialBlockDownload()) return; int64_t nBalance = pwalletMain->GetBalance(); if(nBalance == 0) { ui->darksendProgress->setValue(0); QString s(tr("No inputs detected")); ui->darksendProgress->setToolTip(s); return; } //get denominated unconfirmed inputs if(pwalletMain->GetDenominatedBalance(true, true) > 0) { QString s(tr("Found unconfirmed denominated outputs, will wait till they confirm to recalculate.")); ui->darksendProgress->setToolTip(s); return; } //Get the anon threshold int64_t nMaxToAnonymize = nAnonymizeGamblrAmount*COIN; // If it's more than the wallet amount, limit to that. if(nMaxToAnonymize > nBalance) nMaxToAnonymize = nBalance; if(nMaxToAnonymize == 0) return; // calculate parts of the progress, each of them shouldn't be higher than 1: // mixing progress of denominated balance int64_t denominatedBalance = pwalletMain->GetDenominatedBalance(); float denomPart = 0; if(denominatedBalance > 0) { denomPart = (float)pwalletMain->GetNormalizedAnonymizedBalance() / denominatedBalance; denomPart = denomPart > 1 ? 1 : denomPart; if(denomPart == 1 && nMaxToAnonymize > denominatedBalance) nMaxToAnonymize = denominatedBalance; } // % of fully anonymized balance float anonPart = 0; if(nMaxToAnonymize > 0) { anonPart = (float)pwalletMain->GetAnonymizedBalance() / nMaxToAnonymize; // if anonPart is > 1 then we are done, make denomPart equal 1 too anonPart = anonPart > 1 ? (denomPart = 1, 1) : anonPart; } // apply some weights to them (sum should be <=100) and calculate the whole progress int progress = 80 * denomPart + 20 * anonPart; if(progress >= 100) progress = 100; ui->darksendProgress->setValue(progress); std::ostringstream convert; convert << "Progress: " << progress << "%, inputs have an average of " << pwalletMain->GetAverageAnonymizedRounds() << " of " << nDarksendRounds << " rounds"; QString s(convert.str().c_str()); ui->darksendProgress->setToolTip(s); } void OverviewPage::darkSendStatus() { int nBestHeight = chainActive.Tip()->nHeight; if(nBestHeight != darkSendPool.cachedNumBlocks) { //we we're processing lots of blocks, we'll just leave if(GetTime() - lastNewBlock < 10) return; lastNewBlock = GetTime(); updateDarksendProgress(); QString strSettings(" " + tr("Rounds")); strSettings.prepend(QString::number(nDarksendRounds)).prepend(" / "); strSettings.prepend(BitcoinUnits::formatWithUnit( walletModel->getOptionsModel()->getDisplayUnit(), nAnonymizeGamblrAmount * COIN) ); ui->labelAmountRounds->setText(strSettings); } if(!fEnableDarksend) { if(nBestHeight != darkSendPool.cachedNumBlocks) { darkSendPool.cachedNumBlocks = nBestHeight; ui->darksendEnabled->setText(tr("Disabled")); ui->darksendStatus->setText(""); ui->toggleDarksend->setText(tr("Start Darksend Mixing")); } return; } // check darksend status and unlock if needed if(nBestHeight != darkSendPool.cachedNumBlocks) { // Balance and number of transactions might have changed darkSendPool.cachedNumBlocks = nBestHeight; /* *******************************************************/ ui->darksendEnabled->setText(tr("Enabled")); } int state = darkSendPool.GetState(); int entries = darkSendPool.GetEntriesCount(); int accepted = darkSendPool.GetLastEntryAccepted(); /* ** @TODO this string creation really needs some clean ups ---vertoe ** */ std::ostringstream convert; if(state == POOL_STATUS_IDLE) { convert << tr("Darksend is idle.").toStdString(); } else if(state == POOL_STATUS_ACCEPTING_ENTRIES) { if(entries == 0) { if(darkSendPool.strAutoDenomResult.size() == 0){ convert << tr("Mixing in progress...").toStdString(); } else { convert << darkSendPool.strAutoDenomResult; } showingDarkSendMessage = 0; } else if (accepted == 1) { convert << tr("Darksend request complete: Your transaction was accepted into the pool!").toStdString(); if(showingDarkSendMessage % 10 > 8) { darkSendPool.lastEntryAccepted = 0; showingDarkSendMessage = 0; } } else { if(showingDarkSendMessage % 70 <= 40) convert << tr("Submitted following entries to masternode:").toStdString() << " " << entries << "/" << darkSendPool.GetMaxPoolTransactions(); else if(showingDarkSendMessage % 70 <= 50) convert << tr("Submitted to masternode, waiting for more entries").toStdString() << " (" << entries << "/" << darkSendPool.GetMaxPoolTransactions() << " ) ."; else if(showingDarkSendMessage % 70 <= 60) convert << tr("Submitted to masternode, waiting for more entries").toStdString() << " (" << entries << "/" << darkSendPool.GetMaxPoolTransactions() << " ) .."; else if(showingDarkSendMessage % 70 <= 70) convert << tr("Submitted to masternode, waiting for more entries").toStdString() << " (" << entries << "/" << darkSendPool.GetMaxPoolTransactions() << " ) ..."; } } else if(state == POOL_STATUS_SIGNING) { if(showingDarkSendMessage % 70 <= 10) convert << tr("Found enough users, signing ...").toStdString(); else if(showingDarkSendMessage % 70 <= 20) convert << tr("Found enough users, signing ( waiting").toStdString() << ". )"; else if(showingDarkSendMessage % 70 <= 30) convert << tr("Found enough users, signing ( waiting").toStdString() << ".. )"; else if(showingDarkSendMessage % 70 <= 40) convert << tr("Found enough users, signing ( waiting").toStdString() << "... )"; } else if(state == POOL_STATUS_TRANSMISSION) { convert << tr("Transmitting final transaction.").toStdString(); } else if (state == POOL_STATUS_IDLE) { convert << tr("Darksend is idle.").toStdString(); } else if (state == POOL_STATUS_FINALIZE_TRANSACTION) { convert << tr("Finalizing transaction.").toStdString(); } else if(state == POOL_STATUS_ERROR) { convert << tr("Darksend request incomplete:").toStdString() << " " << darkSendPool.lastMessage << ". " << tr("Will retry...").toStdString(); } else if(state == POOL_STATUS_SUCCESS) { convert << tr("Darksend request complete:").toStdString() << " " << darkSendPool.lastMessage; } else if(state == POOL_STATUS_QUEUE) { if(showingDarkSendMessage % 70 <= 50) convert << tr("Submitted to masternode, waiting in queue").toStdString() << " ."; else if(showingDarkSendMessage % 70 <= 60) convert << tr("Submitted to masternode, waiting in queue").toStdString() << " .."; else if(showingDarkSendMessage % 70 <= 70) convert << tr("Submitted to masternode, waiting in queue").toStdString() << " ..."; } else { convert << tr("Unknown state:").toStdString() << " id = " << state; } if(state == POOL_STATUS_ERROR || state == POOL_STATUS_SUCCESS) darkSendPool.Check(); QString s(convert.str().c_str()); s = tr("Last Darksend message:\n") + s; if(s != ui->darksendStatus->text()) LogPrintf("Last Darksend message: %s\n", convert.str().c_str()); ui->darksendStatus->setText(s); if(darkSendPool.sessionDenom == 0){ ui->labelSubmittedDenom->setText(tr("N/A")); } else { std::string out; darkSendPool.GetDenominationsToString(darkSendPool.sessionDenom, out); QString s2(out.c_str()); ui->labelSubmittedDenom->setText(s2); } showingDarkSendMessage++; darksendActionCheck++; // Get DarkSend Denomination Status } void OverviewPage::darksendAuto(){ darkSendPool.DoAutomaticDenominating(); } void OverviewPage::darksendReset(){ darkSendPool.Reset(); QMessageBox::warning(this, tr("Darksend"), tr("Darksend was successfully reset."), QMessageBox::Ok, QMessageBox::Ok); } void OverviewPage::toggleDarksend(){ if(!fEnableDarksend){ int64_t balance = pwalletMain->GetBalance(); float minAmount = 1.49 * COIN; if(balance < minAmount){ QString strMinAmount( BitcoinUnits::formatWithUnit( walletModel->getOptionsModel()->getDisplayUnit(), minAmount)); QMessageBox::warning(this, tr("Darksend"), tr("Darksend requires at least %1 to use.").arg(strMinAmount), QMessageBox::Ok, QMessageBox::Ok); return; } // if wallet is locked, ask for a passphrase if (walletModel->getEncryptionStatus() == WalletModel::Locked) { WalletModel::UnlockContext ctx(walletModel->requestUnlock(false)); if(!ctx.isValid()) { //unlock was cancelled darkSendPool.cachedNumBlocks = 0; QMessageBox::warning(this, tr("Darksend"), tr("Wallet is locked and user declined to unlock. Disabling Darksend."), QMessageBox::Ok, QMessageBox::Ok); if (fDebug) LogPrintf("Wallet is locked and user declined to unlock. Disabling Darksend.\n"); return; } } } darkSendPool.cachedNumBlocks = 0; fEnableDarksend = !fEnableDarksend; if(!fEnableDarksend){ ui->toggleDarksend->setText(tr("Start Darksend Mixing")); } else { ui->toggleDarksend->setText(tr("Stop Darksend Mixing")); /* show darksend configuration if client has defaults set */ if(nAnonymizeGamblrAmount == 0){ DarksendConfig dlg(this); dlg.setModel(walletModel); dlg.exec(); } darkSendPool.DoAutomaticDenominating(); } }
knolza/gamblr
src/qt/overviewpage.cpp
C++
mit
19,463
var Peer = require('../lib/Peer'); var Connection = require('../lib/Connection'); var dns = require('dns'); // get a peer from dns seed dns.resolve('dnsseed.bluematt.me', function(err, seeds) { // use the first peer var peer = new Peer(seeds[0], 8608); //Custom peer: //var peer = new Peer('180.153.139.246', '8888'); // create a connection without an existing socket // but specify a socks5 proxy to create a socket // that's bound to that proxy in it's place var connection = new Connection(null, peer, { proxy: { host: '127.0.0.1', port: 9050 } }); connection.open(); connection.on('connect', function(data) { console.log('connected through socks5!'); }); connection.on('error', function(err) { console.log('There was an error running this example.'); console.log('Are you running Tor? Tor must running for this example to work.'); console.log('If you still get an error, you may need to use a different proxy from here:'); console.log('http://sockslist.net/'); //console.log(err); }); });
Bushstar/bitcore
examples/ConnectionTor.js
JavaScript
mit
1,072
import gzip import glob import numpy as np import pandas as pd from scipy.stats import pearsonr from scipy.stats import spearmanr def get_num_lines_gz(filename): num_lines = 0 with gzip.open(filename, "r") as fp: for line in fp: num_lines += 1 return num_lines def main(): """get stats from PAS-seq - num reads per file - gene quant level spearman correlations """ # files DATA_DIR = "/mnt/lab_data/kundaje/projects/skin/data/bds/processed.chipseq.2017-01-23.histones" # params marks = ["H3K27ac", "H3K4me1", "H3K27me3", "CTCF"] days = np.arange(0, 7, 3) days = ["d{}".format(day).replace(".", "") for day in days] reps = ["1", "2"] # results results = {} results["mark_or_tf"] = [] results["timepoint"] = [] results["replicate"] = [] #results["num_input_reads"] = [] results["num_nodup_reads"] = [] results["NRF"] = [] results["PBC1"] = [] results["PBC2"] = [] results["num_macs2_peaks"] = [] results["num_overlap_peaks"] = [] results["num_idr_peaks"] = [] for mark in marks: print mark for day in days: for rep in reps: # timepoint, rep results["mark_or_tf"].append(mark) results["timepoint"].append(day) results["replicate"].append(rep) # nodup reads nodup_log = glob.glob( "{}/*{}*{}*/qc/rep{}/*nodup.flagstat.qc".format( DATA_DIR, day, mark, rep))[0] with open(nodup_log, "r") as fp: for line in fp: if "in total" in line: num_nodup_reads = line.split("+")[0].strip() results["num_nodup_reads"].append(num_nodup_reads) # NRF/PBC1/PBC2 lib_log = glob.glob( "{}/*{}*{}*/qc/rep{}/*nodup.pbc.qc".format( DATA_DIR, day, mark, rep))[0] with open(lib_log, "r") as fp: # cols 5,6,7 is NRF/PBC1/PBC2 for line in fp: fields = line.strip().split() results["NRF"].append(fields[4]) results["PBC1"].append(fields[5]) results["PBC2"].append(fields[6]) # peak files macs2_peaks = glob.glob( "{}/*{}*{}*/peak/macs2/rep{}/*narrowPeak.gz".format( DATA_DIR, day, mark, rep))[0] num_macs2 = get_num_lines_gz(macs2_peaks) results["num_macs2_peaks"].append(num_macs2) if "CTCF" in mark: idr_peaks = glob.glob( "{}/*{}*{}*/peak/idr/true_reps/rep1-rep2/*filt.narrowPeak.gz".format( DATA_DIR, day, mark))[0] num_idr = get_num_lines_gz(idr_peaks) results["num_idr_peaks"].append(num_idr) results["num_overlap_peaks"].append("NA") else: results["num_idr_peaks"].append("NA") overlap_peaks = glob.glob( "{}/*{}*{}*/peak/macs2/overlap/*filt.narrowPeak.gz".format( DATA_DIR, day, mark, rep))[0] num_overlap = get_num_lines_gz(overlap_peaks) results["num_overlap_peaks"].append(num_overlap) # dataframe results = pd.DataFrame(results) ordered_headers = [ "mark_or_tf", "timepoint", "replicate", #"num_input_reads", "num_nodup_reads", "NRF", "PBC1", "PBC2", "num_macs2_peaks", "num_overlap_peaks", "num_idr_peaks"] results = results[ordered_headers] out_file = "ggr.ChIP-seq.QC.summary.txt" results.to_csv(out_file, sep="\t", header=True, index=False) return main()
vervacity/ggr-project
scripts/data_qc/summarize_chipseq_qc.py
Python
mit
4,085
interface IEmploymentSkill { name: string; } export default IEmploymentSkill;
borkovskij/scheduleGrsu
src/app/models/employmentSkill.ts
TypeScript
mit
81
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // Code generated by Microsoft (R) AutoRest Code Generator. package com.azure.resourcemanager.avs.implementation; import com.azure.core.http.rest.PagedIterable; import com.azure.core.http.rest.Response; import com.azure.core.http.rest.SimpleResponse; import com.azure.core.util.Context; import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.avs.fluent.PlacementPoliciesClient; import com.azure.resourcemanager.avs.fluent.models.PlacementPolicyInner; import com.azure.resourcemanager.avs.models.PlacementPolicies; import com.azure.resourcemanager.avs.models.PlacementPolicy; import com.fasterxml.jackson.annotation.JsonIgnore; public final class PlacementPoliciesImpl implements PlacementPolicies { @JsonIgnore private final ClientLogger logger = new ClientLogger(PlacementPoliciesImpl.class); private final PlacementPoliciesClient innerClient; private final com.azure.resourcemanager.avs.AvsManager serviceManager; public PlacementPoliciesImpl( PlacementPoliciesClient innerClient, com.azure.resourcemanager.avs.AvsManager serviceManager) { this.innerClient = innerClient; this.serviceManager = serviceManager; } public PagedIterable<PlacementPolicy> list(String resourceGroupName, String privateCloudName, String clusterName) { PagedIterable<PlacementPolicyInner> inner = this.serviceClient().list(resourceGroupName, privateCloudName, clusterName); return Utils.mapPage(inner, inner1 -> new PlacementPolicyImpl(inner1, this.manager())); } public PagedIterable<PlacementPolicy> list( String resourceGroupName, String privateCloudName, String clusterName, Context context) { PagedIterable<PlacementPolicyInner> inner = this.serviceClient().list(resourceGroupName, privateCloudName, clusterName, context); return Utils.mapPage(inner, inner1 -> new PlacementPolicyImpl(inner1, this.manager())); } public PlacementPolicy get( String resourceGroupName, String privateCloudName, String clusterName, String placementPolicyName) { PlacementPolicyInner inner = this.serviceClient().get(resourceGroupName, privateCloudName, clusterName, placementPolicyName); if (inner != null) { return new PlacementPolicyImpl(inner, this.manager()); } else { return null; } } public Response<PlacementPolicy> getWithResponse( String resourceGroupName, String privateCloudName, String clusterName, String placementPolicyName, Context context) { Response<PlacementPolicyInner> inner = this .serviceClient() .getWithResponse(resourceGroupName, privateCloudName, clusterName, placementPolicyName, context); if (inner != null) { return new SimpleResponse<>( inner.getRequest(), inner.getStatusCode(), inner.getHeaders(), new PlacementPolicyImpl(inner.getValue(), this.manager())); } else { return null; } } public void delete( String resourceGroupName, String privateCloudName, String clusterName, String placementPolicyName) { this.serviceClient().delete(resourceGroupName, privateCloudName, clusterName, placementPolicyName); } public void delete( String resourceGroupName, String privateCloudName, String clusterName, String placementPolicyName, Context context) { this.serviceClient().delete(resourceGroupName, privateCloudName, clusterName, placementPolicyName, context); } public PlacementPolicy getById(String id) { String resourceGroupName = Utils.getValueFromIdByName(id, "resourceGroups"); if (resourceGroupName == null) { throw logger .logExceptionAsError( new IllegalArgumentException( String .format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id))); } String privateCloudName = Utils.getValueFromIdByName(id, "privateClouds"); if (privateCloudName == null) { throw logger .logExceptionAsError( new IllegalArgumentException( String.format("The resource ID '%s' is not valid. Missing path segment 'privateClouds'.", id))); } String clusterName = Utils.getValueFromIdByName(id, "clusters"); if (clusterName == null) { throw logger .logExceptionAsError( new IllegalArgumentException( String.format("The resource ID '%s' is not valid. Missing path segment 'clusters'.", id))); } String placementPolicyName = Utils.getValueFromIdByName(id, "placementPolicies"); if (placementPolicyName == null) { throw logger .logExceptionAsError( new IllegalArgumentException( String .format( "The resource ID '%s' is not valid. Missing path segment 'placementPolicies'.", id))); } return this .getWithResponse(resourceGroupName, privateCloudName, clusterName, placementPolicyName, Context.NONE) .getValue(); } public Response<PlacementPolicy> getByIdWithResponse(String id, Context context) { String resourceGroupName = Utils.getValueFromIdByName(id, "resourceGroups"); if (resourceGroupName == null) { throw logger .logExceptionAsError( new IllegalArgumentException( String .format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id))); } String privateCloudName = Utils.getValueFromIdByName(id, "privateClouds"); if (privateCloudName == null) { throw logger .logExceptionAsError( new IllegalArgumentException( String.format("The resource ID '%s' is not valid. Missing path segment 'privateClouds'.", id))); } String clusterName = Utils.getValueFromIdByName(id, "clusters"); if (clusterName == null) { throw logger .logExceptionAsError( new IllegalArgumentException( String.format("The resource ID '%s' is not valid. Missing path segment 'clusters'.", id))); } String placementPolicyName = Utils.getValueFromIdByName(id, "placementPolicies"); if (placementPolicyName == null) { throw logger .logExceptionAsError( new IllegalArgumentException( String .format( "The resource ID '%s' is not valid. Missing path segment 'placementPolicies'.", id))); } return this.getWithResponse(resourceGroupName, privateCloudName, clusterName, placementPolicyName, context); } public void deleteById(String id) { String resourceGroupName = Utils.getValueFromIdByName(id, "resourceGroups"); if (resourceGroupName == null) { throw logger .logExceptionAsError( new IllegalArgumentException( String .format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id))); } String privateCloudName = Utils.getValueFromIdByName(id, "privateClouds"); if (privateCloudName == null) { throw logger .logExceptionAsError( new IllegalArgumentException( String.format("The resource ID '%s' is not valid. Missing path segment 'privateClouds'.", id))); } String clusterName = Utils.getValueFromIdByName(id, "clusters"); if (clusterName == null) { throw logger .logExceptionAsError( new IllegalArgumentException( String.format("The resource ID '%s' is not valid. Missing path segment 'clusters'.", id))); } String placementPolicyName = Utils.getValueFromIdByName(id, "placementPolicies"); if (placementPolicyName == null) { throw logger .logExceptionAsError( new IllegalArgumentException( String .format( "The resource ID '%s' is not valid. Missing path segment 'placementPolicies'.", id))); } this.delete(resourceGroupName, privateCloudName, clusterName, placementPolicyName, Context.NONE); } public void deleteByIdWithResponse(String id, Context context) { String resourceGroupName = Utils.getValueFromIdByName(id, "resourceGroups"); if (resourceGroupName == null) { throw logger .logExceptionAsError( new IllegalArgumentException( String .format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id))); } String privateCloudName = Utils.getValueFromIdByName(id, "privateClouds"); if (privateCloudName == null) { throw logger .logExceptionAsError( new IllegalArgumentException( String.format("The resource ID '%s' is not valid. Missing path segment 'privateClouds'.", id))); } String clusterName = Utils.getValueFromIdByName(id, "clusters"); if (clusterName == null) { throw logger .logExceptionAsError( new IllegalArgumentException( String.format("The resource ID '%s' is not valid. Missing path segment 'clusters'.", id))); } String placementPolicyName = Utils.getValueFromIdByName(id, "placementPolicies"); if (placementPolicyName == null) { throw logger .logExceptionAsError( new IllegalArgumentException( String .format( "The resource ID '%s' is not valid. Missing path segment 'placementPolicies'.", id))); } this.delete(resourceGroupName, privateCloudName, clusterName, placementPolicyName, context); } private PlacementPoliciesClient serviceClient() { return this.innerClient; } private com.azure.resourcemanager.avs.AvsManager manager() { return this.serviceManager; } public PlacementPolicyImpl define(String name) { return new PlacementPolicyImpl(name, this.manager()); } }
Azure/azure-sdk-for-java
sdk/avs/azure-resourcemanager-avs/src/main/java/com/azure/resourcemanager/avs/implementation/PlacementPoliciesImpl.java
Java
mit
11,094
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>tab 2</title> </head> <body> <div style="margin: auto;text-align:center; font-size:5em; margin-top: 100px"> <img src="icon_128.png" style="vertical-align:middle;"> pop-tabs </div> </body> </html>
pop-tabs/pop-tabs
contributors/demo/tab2.html
HTML
mit
277
// The MIT License (MIT) // // Copyright (c) Andrew Armstrong/FacticiusVir 2020 // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. // This file was automatically generated and should not be edited directly. using System; using System.Runtime.InteropServices; namespace SharpVk.Interop.Multivendor { /// <summary> /// /// </summary> [StructLayout(LayoutKind.Sequential)] public unsafe partial struct PhysicalDevicePCIBusInfoProperties { /// <summary> /// The type of this structure /// </summary> public SharpVk.StructureType SType; /// <summary> /// Null or a pointer to an extension-specific structure /// </summary> public void* Next; /// <summary> /// The PCI bus domain /// </summary> public uint PciDomain; /// <summary> /// The PCI bus identifier /// </summary> public uint PciBus; /// <summary> /// The PCI device identifier /// </summary> public uint PciDevice; /// <summary> /// The PCI device function identifier /// </summary> public uint PciFunction; } }
FacticiusVir/SharpVk
src/SharpVk/Interop/Multivendor/PhysicalDevicePCIBusInfoProperties.gen.cs
C#
mit
2,270
student_phoneNumber_name = {1: 'a', 3: 'c', 2: 'b'} def Handler() : while (1) : choice = eval(input("Enter :\t 1 - to search student name \n \t 2 - to insert new student record \n \t 0 - to quit\n")) print(choice) if (choice == 1) : if (student_phoneNumber_name) : phone_number = input("Enter student's phone number : ") name = SearchRecord(phone_number) if (name) : print("name : " + name ) else : print(str(phone_number) + "Does not exist in record" + str(name)) else : print("Record is empty ") elif (choice == 2) : phone_number = input("Enter student's phone number : ") name = input("Enter student's name : ") #best example to understand input() and raw_input() InsertRecord(phone_number, name) elif (choice == 0) : break else: print("Enter correct choice") def InsertRecord(x, y): student_phoneNumber_name[x] = y return; def SearchRecord(x): print(x) if (x in student_phoneNumber_name) : return student_phoneNumber_name[x] return False Handler() print(student_phoneNumber_name)
ajitghz582/PythonLearning
DAY_1_ASSIGNMENTS/1_name_phone_number.py
Python
mit
1,070
#!/bin/bash set -xv ## MACS0429 export ending=OCFSRI export SUBARUDIR=/gpfs/slac/kipac/fs1/u/awright/SUBARU/ export cluster="MACS1115+01" . ${cluster}.ini export config="10_3" export lens='pretty' export ending="OCFI" export filter="W-J-B" ./do_coadd_pretty.sh ${cluster} ${filter} 'pretty' 'none' ${ending} 'no' 'no' 2>&1 | tee -a scratch/OUT-coadd_${cluster}.${filter}_pretty.log export ending="OCFSI" export filter="W-C-IC" ./do_coadd_pretty.sh ${cluster} ${filter} 'pretty' 'none' ${ending} 'no' 'no' 2>&1 | tee -a scratch/OUT-coadd_${cluster}.${filter}_pretty.log export ending="OCFSRI" export filter="W-C-RC" ./do_coadd_pretty.sh ${cluster} ${filter} 'pretty' 'none' ${ending} 'no' 'no' 2>&1 | tee -a scratch/OUT-coadd_${cluster}.${filter}_pretty.log #/gpfs/slac/kipac/fs1/u/awright/SUBARU/MACS0429-02/W-J-V/SCIENCE/SUPA0043650_9OCFSI.sub.fits export ending="OCFSI" export filter="W-J-V" ./do_coadd_pretty.sh ${cluster} ${filter} 'pretty' 'none' ${ending} 'no' 'no' 2>&1 | tee -a scratch/OUT-coadd_${cluster}.${filter}_pretty.log export ending="OCFSFI" export filter="W-S-Z+" ./do_coadd_pretty.sh ${cluster} ${filter} 'pretty' 'none' ${ending} 'no' 'no' 2>&1 | tee -a scratch/OUT-coadd_${cluster}.${filter}_pretty.log exit 0; export cluster=MACS0429-02 . ${cluster}.ini export config="10_3" export lens='pretty' export ending="OCFI" export filter="W-J-B" ./do_coadd_pretty.sh ${cluster} ${filter} 'pretty' 'none' ${ending} 'no' 'no' 2>&1 | tee -a OUT-coadd_${cluster}.${filter}_pretty.log exit 0; #./do_coadd_pretty.sh ${cluster} W-C-RC 'pretty' 'none' ${ending} 'yes' 'yes' 2>&1 | tee -a OUT-coadd_${cluster}.W-C-RC_pretty.log export ending="OCFSFI" export filter="W-C-IC_2006-12-21_CALIB" ./do_coadd_pretty.sh ${cluster} ${filter} 'all 3s ' 'none' ${ending} 'no' 'no' 2>&1 | tee -a OUT-coadd_${cluster}.${filter}_pretty.log export ending="OCFSFI" export filter="W-C-IC" ./do_coadd_pretty.sh ${cluster} ${filter} 'pretty' 'none' ${ending} 'no' 'no' 2>&1 | tee -a OUT-coadd_${cluster}.${filter}_pretty.log export ending="OCFSI" export filter="W-C-RC_2009-01-23_CALIB" ./do_coadd_pretty.sh ${cluster} ${filter} 'all 3s ' 'none' ${ending} 'no' 'no' 2>&1 | tee -a OUT-coadd_${cluster}.${filter}_pretty.log #/gpfs/slac/kipac/fs1/u/awright/SUBARU/MACS0429-02/W-C-RC/SCIENCE/SUPA0043342_9OCFSRI.sub.fits export ending="OCFSRI" export filter="W-C-RC" ./do_coadd_pretty.sh ${cluster} ${filter} 'pretty' 'none' ${ending} 'no' 'no' 2>&1 | tee -a OUT-coadd_${cluster}.${filter}_pretty.log export ending="OCFI" export filter="W-J-B_2015-12-15_CALIB" ./do_coadd_pretty.sh ${cluster} ${filter} 'all 3s ' 'none' ${ending} 'no' 'no' 2>&1 | tee -a OUT-coadd_${cluster}.${filter}_pretty.log #/gpfs/slac/kipac/fs1/u/awright/SUBARU/MACS0429-02/W-J-V/SCIENCE/SUPA0043650_9OCFSI.sub.fits export ending="OCFSI" export filter="W-J-V_2009-01-23_CALIB" ./do_coadd_pretty.sh ${cluster} ${filter} 'all 3s' 'none' ${ending} 'no' 'no' 2>&1 | tee -a OUT-coadd_${cluster}.${filter}_pretty.log export ending="OCFSI" export filter="W-J-V" ./do_coadd_pretty.sh ${cluster} ${filter} 'pretty' 'none' ${ending} 'no' 'no' 2>&1 | tee -a OUT-coadd_${cluster}.${filter}_pretty.log export ending="OCFSFI" export filter="W-S-Z+_2015-12-15_CALIB" ./do_coadd_pretty.sh ${cluster} ${filter} 'all 3s' 'none' ${ending} 'no' 'no' 2>&1 | tee -a OUT-coadd_${cluster}.${filter}_pretty.log export filter="W-S-Z+" ./do_coadd_pretty.sh ${cluster} ${filter} 'pretty' 'none' ${ending} 'no' 'no' 2>&1 | tee -a OUT-coadd_${cluster}.${filter}_pretty.log exit 0; ## RXJ2129 . RXJ2129.ini export ending=OCFSRI export SUBARUDIR=/gpfs/slac/kipac/fs1/u/awright/SUBARU/ export cluster=RXJ2129 export filter=W-C-RC export config="10_3" export lens='pretty' #./do_coadd_pretty.sh ${cluster} W-C-RC 'pretty' 'none' ${ending} 'yes' 'yes' 2>&1 | tee -a OUT-coadd_${cluster}.W-C-RC_pretty.log export ending=OCFSRI ./do_coadd_pretty.sh ${cluster} W-J-V 'pretty' 'none' ${ending} 'no' 'no' 2>&1 | tee -a OUT-coadd_${cluster}.W-J-V_pretty.log export ending=OCFSFI ./do_coadd_pretty.sh ${cluster} W-S-I+ 'pretty' 'none' ${ending} 'no' 'no' 2>&1 | tee -a OUT-coadd_${cluster}.W-S-I+_pretty.log export ending=OCFSI ./do_coadd_pretty.sh ${cluster} W-J-B 'pretty' 'none' ${ending} 'no' 'no' 2>&1 | tee -a OUT-coadd_${cluster}.W-J-B_pretty.log export ending=OCFSFI ./do_coadd_pretty.sh ${cluster} W-S-Z+ 'pretty' 'none' ${ending} 'no' 'no' 2>&1 | tee -a OUT-coadd_${cluster}.W-S-Z+_pretty.log exit 0; export lens='pretty' ./do_coadd_pretty.sh ${cluster} W-C-RC 'pretty' 'none' ${ending} 'yes' 'yes' 2>&1 | tee -a OUT-coadd_${cluster}.W-C-RC_pretty.log . Zw2089.ini export cluster=Zw2089 export ending="OCFI" #./do_coadd_pretty.sh ${cluster} W-C-RC 'pretty' 'none' ${ending} 'yes' 'yes' 2>&1 | tee -a OUT-coadd_${cluster}.W-C-RC_pretty.log #./do_coadd_pretty.sh ${cluster} W-S-I+ 'pretty' 'none' ${ending} 'yes' 'yes' 2>&1 | tee -a OUT-coadd_${cluster}.W-S-I+_pretty.log export ending=OCFSFI ./do_coadd_pretty.sh ${cluster} W-S-Z+ 'pretty' 'none' ${ending} 'yes' 'yes' 2>&1 | tee -a OUT-coadd_${cluster}.W-S-Z+_pretty.log export ending="OCFI" ./do_coadd_pretty.sh ${cluster} W-J-B 'pretty' 'none' ${ending} 'yes' 'yes' 2>&1 | tee -a OUT-coadd_${cluster}.W-J-B_pretty.log #./do_coadd_pretty.sh ${cluster} W-J-V 'pretty' 'none' ${ending} 'yes' 'yes' 2>&1 | tee -a OUT-coadd_${cluster}.W-J-V_pretty.log exit 0; export cluster=Zw2089 export ending="OCFSIR" filter=W-S-I+ #./adam_pre_coadd_cleanup.sh Zw2089 W-S-I+ ./do_coadd_pretty.sh Zw2089 W-S-I+ "pretty" 'none' ${ending} 2>&1 | tee -a OUT-coadd_Zw2089.${filter}.log export cluster=Zw2089 export ending=OCFSIR export filter=W-J-V rm OUT-coadd_${cluster}.${filter}.log ./adam_pre_coadd_cleanup.sh ${cluster} ${filter} ./do_coadd_batch.sh Zw2089 W-J-V "all good exposure gabodsid" 'Zw2089_good_coadd_conditions.txt' ${ending} 2>&1 | tee -a OUT-coadd_${cluster}.${filter}.log #/gpfs/slac/kipac/fs1/u/awright/SUBARU/MACS0429-02/W-S-Z+/SCIENCE/SUPA0154653_9OCFSFI.sub.fits export ending="OCFSFI" export filter="W-S-Z+" #/gpfs/slac/kipac/fs1/u/awright/SUBARU/MACS0429-02/W-S-Z+_2015-12-15_CALIB/SCIENCE/SUPA0154638_9OCFSFI.sub.fits #/gpfs/slac/kipac/fs1/u/awright/SUBARU/MACS0429-02/W-S-Z+_2015-12-15_CALIB/SCIENCE/SUPA0154639_9OCFSFI.sub.fits ./do_coadd_pretty.sh ${cluster} ${filter} 'pretty' 'none' ${ending} 'no' 'no' 2>&1 | tee -a OUT-coadd_${cluster}.${filter}_pretty.log
deapplegate/wtgpipeline
make_pretty_fgas_coadd.sh
Shell
mit
6,379
import {Utils} from "../service/Utils"; Template.registerHelper( "displayHours", function (date) { return new moment(date).format("H[h]"); } ); Template.registerHelper( "displayHoursMinute", function (date) { return new moment(date).format("H[h]mm"); } ); Template.registerHelper( "displayHoursMinuteSeconde", function (date) { return new moment(date).format("H[h]mm ss[sec]"); } ); Template.registerHelper( "displayDateTime", function (date) { return new moment(date).format("ddd DD MMM HH[h]mm"); } ); Template.registerHelper( "displayDay", function (date) { return new moment(date).format("DD MMM"); } ); Template.registerHelper( "skillLabel", function () { return Skills.findOne({_id: this.toString()}).label; } ); Template.registerHelper( "onUpdateError", function (error) { return function (error) { Utils.onUpdateError(error.reason) } }); Template.registerHelper( "onUpdateSuccess", function (message) { return function (message) { Utils.onUpdateSuccess(message); } }); Template.registerHelper( "onDeleteError", function (error) { return function (error) { Utils.onUpdateError(error.reason) } }); Template.registerHelper( "onDeleteSuccess", function (message) { return function (message) { Utils.onUpdateSuccess(message); } }); Template.registerHelper( "allTeams", function () { return Teams.find(); } ); Template.registerHelper('equals', function (a, b) { return a === b; }); Template.registerHelper('adds', function (a, b) { return a + b; }); Template.registerHelper( "allOptionsTeams", function () { return Teams.find({ name: { $ne: ASSIGNMENTREADYTEAM } }); } ); Template.registerHelper( "allSkills", function (userId) { var userTeams = Meteor.users.findOne({_id: userId}).teams; return Skills.find({ teams: { $in: userTeams } }); } ); Template.registerHelper('ifNotEmpty', function (item, options) { if (item) { if (item instanceof Array) { if (item.length > 0) { return options.fn(this); } else { return options.inverse(this); } } else { if (item.fetch().length > 0) { return options.fn(this); } else { return options.inverse(this); } } } else { return options.inverse(this); } }); Template.registerHelper("equals", function (a, b) { return a === b; } ); Template.registerHelper("isMore", function (a, b) { return a > b; } ); Template.registerHelper("displayValidationState", function (state) { return DisplayedValidationState[state]; }); Template.registerHelper("RolesEnum", function () { return RolesEnum; }); Template.registerHelper( "currentUserId", function () { return Meteor.users.findOne({_id: Meteor.userId()})._id; } ); Template.registerHelper( "isCurrentUserTheOneLogged", function (currentUserId) { return currentUserId === Meteor.users.findOne({_id: Meteor.userId()})._id; } ) Template.registerHelper( "currentUserIdObject", function () { return { _id: Meteor.users.findOne({_id: Meteor.userId()})._id } } ); Template.registerHelper("cursorLength", function (array) { return array.fetch().length; } );
assomaker/manifmaker
app/client/helpers-events/global-helpers.js
JavaScript
mit
3,295
# To be PS 2.0 compatible, dont use Invoke-WebRequest $packageName = "DotNet3_5.exe" $downloadUrl = "https://download.microsoft.com/download/7/0/3/703455ee-a747-4cc8-bd3e-98a615c3aedb/dotNetFx35setup.exe" $targetFile = "C:\tmp\$packageName" # Download installer Write-Host "Downloading $packageName" -ForegroundColor Green (New-Object System.Net.WebClient).DownloadFile($downloadUrl, $targetFile) Write-Host "Installing $packageName" -ForegroundColor Green Start-Process -FilePath $targetFile -ArgumentList "/q","/norestart" -Wait Write-Host "Finished installing $packageName" -ForegroundColor Green
sparerd/vagrant
SharedScripts/Windows/DotNet/install_dotnet_35_for_desktop.ps1
PowerShell
mit
602
// +build windows package sers // taken from https://github.com/tarm/goserial // and slightly modified // (C) 2011, 2012 Tarmigan Casebolt, Benjamin Siegert, Michael Meier // All rights reserved. // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. import ( "fmt" "os" "sync" "syscall" "unsafe" ) type serialPort struct { f *os.File fd syscall.Handle rl sync.Mutex wl sync.Mutex ro *syscall.Overlapped wo *syscall.Overlapped } type structDCB struct { DCBlength, BaudRate uint32 flags [4]byte wReserved, XonLim, XoffLim uint16 ByteSize, Parity, StopBits byte XonChar, XoffChar, ErrorChar, EofChar, EvtChar byte wReserved1 uint16 } type structTimeouts struct { ReadIntervalTimeout uint32 ReadTotalTimeoutMultiplier uint32 ReadTotalTimeoutConstant uint32 WriteTotalTimeoutMultiplier uint32 WriteTotalTimeoutConstant uint32 } //func openPort(name string) (rwc io.ReadWriteCloser, err error) { // TODO func Open(name string) (rwc SerialPort, err error) { if len(name) > 0 && name[0] != '\\' { name = "\\\\.\\" + name } h, err := syscall.CreateFile(syscall.StringToUTF16Ptr(name), syscall.GENERIC_READ|syscall.GENERIC_WRITE, 0, nil, syscall.OPEN_EXISTING, syscall.FILE_ATTRIBUTE_NORMAL|syscall.FILE_FLAG_OVERLAPPED, 0) if err != nil { return nil, err } f := os.NewFile(uintptr(h), name) defer func() { if err != nil { f.Close() } }() /*if err = setCommState(h, baud); err != nil { return }*/ if err = setupComm(h, 64, 64); err != nil { return } if err = setCommTimeouts(h, 0.0); err != nil { return } if err = setCommMask(h); err != nil { return } ro, err := newOverlapped() if err != nil { return } wo, err := newOverlapped() if err != nil { return } port := new(serialPort) port.f = f port.fd = h port.ro = ro port.wo = wo return port, nil } func (p *serialPort) Close() error { return p.f.Close() } func (p *serialPort) Write(buf []byte) (int, error) { p.wl.Lock() defer p.wl.Unlock() if err := resetEvent(p.wo.HEvent); err != nil { return 0, err } var n uint32 err := syscall.WriteFile(p.fd, buf, &n, p.wo) //fmt.Printf("n %d err %v\n", n, err) _ = fmt.Printf if err != nil && err != syscall.ERROR_IO_PENDING { //fmt.Printf("returning...\n") return int(n), err } return getOverlappedResult(p.fd, p.wo) } func (p *serialPort) Read(buf []byte) (int, error) { //fmt.Printf("read(<%d bytes>)\n", len(buf)) if p == nil || p.f == nil { return 0, fmt.Errorf("Invalid port on read %v %v", p, p.f) } p.rl.Lock() defer p.rl.Unlock() if err := resetEvent(p.ro.HEvent); err != nil { return 0, err } var done uint32 //fmt.Printf("calling ReadFile... ") err := syscall.ReadFile(p.fd, buf, &done, p.ro) //fmt.Printf(" done. %d, %v\n", done, err) if err != nil && err != syscall.ERROR_IO_PENDING { return int(done), err } //fmt.Printf("getting OverlappedResult... ") n, err := getOverlappedResult(p.fd, p.ro) //fmt.Printf(" done. n %d err %v\n", n, err) if n == 0 && err == nil { return n, winSersTimeout{} } return n, err } var ( nSetCommState, nSetCommTimeouts, nSetCommMask, nSetupComm, nGetOverlappedResult, nCreateEvent, nResetEvent uintptr ) func init() { k32, err := syscall.LoadLibrary("kernel32.dll") if err != nil { panic("LoadLibrary " + err.Error()) } defer syscall.FreeLibrary(k32) nSetCommState = getProcAddr(k32, "SetCommState") nSetCommTimeouts = getProcAddr(k32, "SetCommTimeouts") nSetCommMask = getProcAddr(k32, "SetCommMask") nSetupComm = getProcAddr(k32, "SetupComm") nGetOverlappedResult = getProcAddr(k32, "GetOverlappedResult") nCreateEvent = getProcAddr(k32, "CreateEventW") nResetEvent = getProcAddr(k32, "ResetEvent") } func getProcAddr(lib syscall.Handle, name string) uintptr { addr, err := syscall.GetProcAddress(lib, name) if err != nil { panic(name + " " + err.Error()) } return addr } func setCommState(h syscall.Handle, baud, databits, parity, handshake int) error { var params structDCB params.DCBlength = uint32(unsafe.Sizeof(params)) params.flags[0] = 0x01 // fBinary params.flags[0] |= 0x10 // Assert DSR params.ByteSize = byte(databits) params.BaudRate = uint32(baud) //params.ByteSize = 8 switch parity { case N: params.flags[0] &^= 0x02 params.Parity = 0 // NOPARITY case E: params.flags[0] |= 0x02 params.Parity = 2 // EVENPARITY case O: params.flags[0] |= 0x02 params.Parity = 1 // ODDPARITY default: return StringError("invalid parity setting") } switch handshake { case NO_HANDSHAKE: // TODO: reset handshake default: return StringError("only NO_HANDSHAKE is supported on windows") } r, _, err := syscall.Syscall(nSetCommState, 2, uintptr(h), uintptr(unsafe.Pointer(&params)), 0) if r == 0 { return err } return nil } func setCommTimeouts(h syscall.Handle, constTimeout float64) error { var timeouts structTimeouts const MAXDWORD = 1<<32 - 1 timeouts.ReadIntervalTimeout = MAXDWORD timeouts.ReadTotalTimeoutMultiplier = MAXDWORD //timeouts.ReadTotalTimeoutConstant = MAXDWORD - 1 if constTimeout == 0 { timeouts.ReadTotalTimeoutConstant = MAXDWORD - 1 } else { timeouts.ReadTotalTimeoutConstant = uint32(constTimeout * 1000.0) } /* From http://msdn.microsoft.com/en-us/library/aa363190(v=VS.85).aspx For blocking I/O see below: Remarks: If an application sets ReadIntervalTimeout and ReadTotalTimeoutMultiplier to MAXDWORD and sets ReadTotalTimeoutConstant to a value greater than zero and less than MAXDWORD, one of the following occurs when the ReadFile function is called: If there are any bytes in the input buffer, ReadFile returns immediately with the bytes in the buffer. If there are no bytes in the input buffer, ReadFile waits until a byte arrives and then returns immediately. If no bytes arrive within the time specified by ReadTotalTimeoutConstant, ReadFile times out. */ r, _, err := syscall.Syscall(nSetCommTimeouts, 2, uintptr(h), uintptr(unsafe.Pointer(&timeouts)), 0) if r == 0 { return err } return nil } func setupComm(h syscall.Handle, in, out int) error { r, _, err := syscall.Syscall(nSetupComm, 3, uintptr(h), uintptr(in), uintptr(out)) if r == 0 { return err } return nil } func setCommMask(h syscall.Handle) error { const EV_RXCHAR = 0x0001 r, _, err := syscall.Syscall(nSetCommMask, 2, uintptr(h), EV_RXCHAR, 0) if r == 0 { return err } return nil } func resetEvent(h syscall.Handle) error { r, _, err := syscall.Syscall(nResetEvent, 1, uintptr(h), 0, 0) if r == 0 { return err } return nil } func newOverlapped() (*syscall.Overlapped, error) { var overlapped syscall.Overlapped r, _, err := syscall.Syscall6(nCreateEvent, 4, 0, 1, 0, 0, 0, 0) if r == 0 { return nil, err } overlapped.HEvent = syscall.Handle(r) return &overlapped, nil } func getOverlappedResult(h syscall.Handle, overlapped *syscall.Overlapped) (int, error) { var n int r, _, err := syscall.Syscall6(nGetOverlappedResult, 4, uintptr(h), uintptr(unsafe.Pointer(overlapped)), uintptr(unsafe.Pointer(&n)), 1, 0, 0) if r == 0 { return n, err } //fmt.Printf("n %d err %v\n", n, err) return n, nil } func (sp *serialPort) SetMode(baudrate, databits, parity, stopbits, handshake int) error { if err := setCommState(syscall.Handle(sp.f.Fd()), baudrate, databits, parity, handshake); err != nil { return err } //return StringError("SetMode not implemented yet on Windows") return nil } func (sp *serialPort) SetReadParams(minread int, timeout float64) error { // TODO: minread is ignored! return setCommTimeouts(sp.fd, timeout) //return StringError("SetReadParams not implemented yet on Windows") } type winSersTimeout struct{} func (wst winSersTimeout) Error() string { return "a timeout has occured" } func (wst winSersTimeout) Timeout() bool { return true }
capnm/termzero
src/termzero/sers/sers_windows.go
GO
mit
8,070
DrawListBuddy ============= A buddy for doing sort order on 2d objects in XNA/MonoGame
dmanning23/DrawListBuddy
README.md
Markdown
mit
88
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DOCUMENT %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Essential LaTeX headers \documentclass{standalone} \usepackage{tikz} % Graph \begin{document} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% TIKZ STYLE %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Colors \definecolor{nothing}{HTML}{FFFFFF} \definecolor{player1}{HTML}{FF0000} \definecolor{player2}{HTML}{00FF00} \definecolor{coin}{HTML}{E9DF42} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% TIKZ FIGURE %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \begin{tikzpicture} % Nodes \node[draw, circle, fill=nothing] at (0, 8) (0-8) {}; \node[draw, circle, fill=nothing] at (1, 8) (1-8) {}; \node[draw, circle, fill=nothing] at (2, 8) (2-8) {}; \node[draw, circle, fill=nothing] at (3, 8) (3-8) {}; \node[draw, circle, fill=nothing] at (4, 8) (4-8) {}; \node[draw, circle, fill=nothing] at (5, 8) (5-8) {}; \node[draw, circle, fill=nothing] at (6, 8) (6-8) {}; \node[draw, circle, fill=nothing] at (7, 8) (7-8) {}; \node[draw, circle, fill=coin] at (8, 8) (8-8) {}; \node[draw, circle, fill=nothing] at (0, 7) (0-7) {}; \node[draw, circle, fill=nothing] at (1, 7) (1-7) {}; \node[draw, circle, fill=nothing] at (2, 7) (2-7) {}; \node[draw, circle, fill=nothing] at (3, 7) (3-7) {}; \node[draw, circle, fill=nothing] at (4, 7) (4-7) {}; \node[draw, circle, fill=nothing] at (5, 7) (5-7) {}; \node[draw, circle, fill=nothing] at (6, 7) (6-7) {}; \node[draw, circle, fill=nothing] at (7, 7) (7-7) {}; \node[draw, circle, fill=nothing] at (8, 7) (8-7) {}; \node[draw, circle, fill=nothing] at (0, 6) (0-6) {}; \node[draw, circle, fill=nothing] at (1, 6) (1-6) {}; \node[draw, circle, fill=nothing] at (2, 6) (2-6) {}; \node[draw, circle, fill=nothing] at (3, 6) (3-6) {}; \node[draw, circle, fill=nothing] at (4, 6) (4-6) {}; \node[draw, circle, fill=nothing] at (5, 6) (5-6) {}; \node[draw, circle, fill=nothing] at (6, 6) (6-6) {}; \node[draw, circle, fill=nothing] at (7, 6) (7-6) {}; \node[draw, circle, fill=nothing] at (8, 6) (8-6) {}; \node[draw, circle, fill=nothing] at (0, 5) (0-5) {}; \node[draw, circle, fill=nothing] at (1, 5) (1-5) {}; \node[draw, circle, fill=nothing] at (2, 5) (2-5) {}; \node[draw, circle, fill=nothing] at (3, 5) (3-5) {}; \node[draw, circle, fill=nothing] at (4, 5) (4-5) {}; \node[draw, circle, fill=nothing] at (5, 5) (5-5) {}; \node[draw, circle, fill=nothing] at (6, 5) (6-5) {}; \node[draw, circle, fill=nothing] at (7, 5) (7-5) {}; \node[draw, circle, fill=nothing] at (8, 5) (8-5) {}; \node[draw, circle, fill=nothing] at (0, 4) (0-4) {}; \node[draw, circle, fill=nothing] at (1, 4) (1-4) {}; \node[draw, circle, fill=nothing] at (2, 4) (2-4) {}; \node[draw, circle, fill=nothing] at (3, 4) (3-4) {}; \node[draw, circle, fill=nothing] at (4, 4) (4-4) {}; \node[draw, circle, fill=nothing] at (5, 4) (5-4) {}; \node[draw, circle, fill=nothing] at (6, 4) (6-4) {}; \node[draw, circle, fill=nothing] at (7, 4) (7-4) {}; \node[draw, circle, fill=nothing] at (8, 4) (8-4) {}; \node[draw, circle, fill=nothing] at (0, 3) (0-3) {}; \node[draw, circle, fill=nothing] at (1, 3) (1-3) {}; \node[draw, circle, fill=nothing] at (2, 3) (2-3) {}; \node[draw, circle, fill=nothing] at (3, 3) (3-3) {}; \node[draw, circle, fill=nothing] at (4, 3) (4-3) {}; \node[draw, circle, fill=nothing] at (5, 3) (5-3) {}; \node[draw, circle, fill=nothing] at (6, 3) (6-3) {}; \node[draw, circle, fill=nothing] at (7, 3) (7-3) {}; \node[draw, circle, fill=nothing] at (8, 3) (8-3) {}; \node[draw, circle, fill=nothing] at (0, 2) (0-2) {}; \node[draw, circle, fill=nothing] at (1, 2) (1-2) {}; \node[draw, circle, fill=nothing] at (2, 2) (2-2) {}; \node[draw, circle, fill=nothing] at (3, 2) (3-2) {}; \node[draw, circle, fill=nothing] at (4, 2) (4-2) {}; \node[draw, circle, fill=nothing] at (5, 2) (5-2) {}; \node[draw, circle, fill=nothing] at (6, 2) (6-2) {}; \node[draw, circle, fill=nothing] at (7, 2) (7-2) {}; \node[draw, circle, fill=nothing] at (8, 2) (8-2) {}; \node[draw, circle, fill=nothing] at (0, 1) (0-1) {}; \node[draw, circle, fill=nothing] at (1, 1) (1-1) {}; \node[draw, circle, fill=nothing] at (2, 1) (2-1) {}; \node[draw, circle, fill=nothing] at (3, 1) (3-1) {}; \node[draw, circle, fill=nothing] at (4, 1) (4-1) {}; \node[draw, circle, fill=nothing] at (5, 1) (5-1) {}; \node[draw, circle, fill=nothing] at (6, 1) (6-1) {}; \node[draw, circle, fill=nothing] at (7, 1) (7-1) {}; \node[draw, circle, fill=nothing] at (8, 1) (8-1) {}; \node[draw, circle, fill=player1] at (0, 0) (0-0) {}; \node[draw, circle, fill=nothing] at (1, 0) (1-0) {}; \node[draw, circle, fill=nothing] at (2, 0) (2-0) {}; \node[draw, circle, fill=nothing] at (3, 0) (3-0) {}; \node[draw, circle, fill=nothing] at (4, 0) (4-0) {}; \node[draw, circle, fill=nothing] at (5, 0) (5-0) {}; \node[draw, circle, fill=nothing] at (6, 0) (6-0) {}; \node[draw, circle, fill=nothing] at (7, 0) (7-0) {}; \node[draw, circle, fill=nothing] at (8, 0) (8-0) {}; % Edges \draw[] (0-8) -- (0-7); \draw[] (1-8) -- (2-8); \draw[] (1-8) -- (1-7); \draw[] (2-8) -- (3-8); \draw[] (2-8) -- (2-7); \draw[] (3-8) -- (3-7); \draw[] (4-8) -- (5-8); \draw[] (4-8) -- (4-7); \draw[] (5-8) -- (6-8); \draw[] (5-8) -- (5-7); \draw[] (6-8) -- (7-8); \draw[] (6-8) -- (6-7); \draw[] (7-8) -- (8-8); \draw[] (7-8) -- (7-7); \draw[] (8-8) -- (8-7); \draw[] (0-7) -- (1-7); \draw[] (0-7) -- (0-6); \draw[] (1-7) -- (2-7); \draw[] (1-7) -- (1-6); \draw[] (2-7) -- (3-7); \draw[] (2-7) -- (2-6); \draw[] (4-7) -- (5-7); \draw[] (4-7) -- (4-6); \draw[] (5-7) -- (6-7); \draw[] (5-7) -- (5-6); \draw[] (6-7) -- (6-6); \draw[] (0-6) -- (0-5); \draw[] (1-6) -- (2-6); \draw[] (1-6) -- (1-5); \draw[] (2-6) -- (3-6); \draw[] (2-6) -- (2-5); \draw[] (3-6) -- (4-6); \draw[] (3-6) -- (3-5); \draw[] (4-6) -- (5-6); \draw[] (4-6) -- (4-5); \draw[] (5-6) -- (6-6); \draw[] (6-6) -- (7-6); \draw[] (6-6) -- (6-5); \draw[] (7-6) -- (8-6); \draw[] (7-6) -- (7-5); \draw[] (8-6) -- (8-5); \draw[] (0-5) -- (1-5); \draw[] (0-5) -- (0-4); \draw[] (1-5) -- (2-5); \draw[] (1-5) -- (1-4); \draw[] (2-5) -- (3-5); \draw[] (2-5) -- (2-4); \draw[] (3-5) -- (3-4); \draw[] (4-5) -- (5-5); \draw[] (5-5) -- (5-4); \draw[] (6-5) -- (7-5); \draw[] (6-5) -- (6-4); \draw[] (7-5) -- (8-5); \draw[] (8-5) -- (8-4); \draw[] (0-4) -- (1-4); \draw[] (0-4) -- (0-3); \draw[] (1-4) -- (1-3); \draw[] (2-4) -- (3-4); \draw[] (2-4) -- (2-3); \draw[] (4-4) -- (4-3); \draw[] (5-4) -- (6-4); \draw[] (6-4) -- (7-4); \draw[] (6-4) -- (6-3); \draw[] (7-4) -- (8-4); \draw[] (0-3) -- (0-2); \draw[] (1-3) -- (1-2); \draw[] (2-3) -- (3-3); \draw[] (3-3) -- (4-3); \draw[] (3-3) -- (3-2); \draw[] (4-3) -- (4-2); \draw[] (5-3) -- (5-2); \draw[] (6-3) -- (7-3); \draw[] (6-3) -- (6-2); \draw[] (7-3) -- (8-3); \draw[] (7-3) -- (7-2); \draw[] (8-3) -- (8-2); \draw[] (2-2) -- (3-2); \draw[] (2-2) -- (2-1); \draw[] (3-2) -- (4-2); \draw[] (3-2) -- (3-1); \draw[] (4-2) -- (5-2); \draw[] (4-2) -- (4-1); \draw[] (5-2) -- (6-2); \draw[] (5-2) -- (5-1); \draw[] (6-2) -- (7-2); \draw[] (6-2) -- (6-1); \draw[] (7-2) -- (7-1); \draw[] (8-2) -- (8-1); \draw[] (0-1) -- (1-1); \draw[] (0-1) -- (0-0); \draw[] (1-1) -- (1-0); \draw[] (2-1) -- (2-0); \draw[] (3-1) -- (4-1); \draw[] (3-1) -- (3-0); \draw[] (4-1) -- (5-1); \draw[] (4-1) -- (4-0); \draw[] (5-1) -- (6-1); \draw[] (5-1) -- (5-0); \draw[] (6-1) -- (7-1); \draw[] (6-1) -- (6-0); \draw[] (8-1) -- (8-0); \draw[] (0-0) -- (1-0); \draw[] (1-0) -- (2-0); \draw[] (3-0) -- (4-0); \draw[] (6-0) -- (7-0); \draw[] (7-0) -- (8-0); \end{tikzpicture} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \end{document} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
dimtion/jml
outputFiles/statistics/archives/ourIA/closest.py/0.6/7/game.tex
TeX
mit
13,286
/* Aranea * Copyright (c) 2011-2012, Quoc-Viet Nguyen * See LICENSE file for copyright and license details. */ #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <string.h> #include <errno.h> #include <fcntl.h> #include <sys/socket.h> #include <sys/stat.h> #include <aranea/aranea.h> #define CGI_EXT_LEN_ ((int)sizeof(CGI_EXT) - 1) /** Buffer for CGI environment variables */ #define CGI_BUFF g_buff int cgi_hit(const char *name, const int len) { if (len > CGI_EXT_LEN_) { if (memcmp(name + len - CGI_EXT_LEN_, CGI_EXT, CGI_EXT_LEN_) == 0) { return 1; } } return 0; } /** Check if file is executable. * HTTP error code is set to client->response.status_code. */ static int cgi_is_executable(const char *path, struct client_t *client) { struct stat st; if (access(path, X_OK) != 0) { client->response.status_code = HTTP_STATUS_FORBIDDEN; return -1; } if (stat(path, &st) == -1) { A_ERR("stat: %s", strerror(errno)); client->response.status_code = HTTP_STATUS_SERVERERROR; return -1; } if (S_ISDIR(st.st_mode)) { client->response.status_code = HTTP_STATUS_FORBIDDEN; return -1; } return 0; } #define CGI_ADD_ENV_(env, cnt, buf, ...) \ do { \ *env = buf; \ len = sizeof(CGI_BUFF) - (buf - CGI_BUFF); \ if (len > 0) { \ len = snprintf(buf, len, __VA_ARGS__); \ buf += len + 1; /* skip NULL */ \ ++env; \ ++cnt; \ } \ } while (0) /** Generate CGI environment from HTTP request. * Values are saved in g_buff (g_cgienv) */ static int cgi_gen_env(const struct request_t *req, char **env) { int cnt, len; char *buf; cnt = 0; buf = CGI_BUFF; #ifdef CGI_DOCUMENT_ROOT CGI_ADD_ENV_(env, cnt, buf, "DOCUMENT_ROOT=%s", g_config.root); #endif #ifdef CGI_REQUEST_METHOD CGI_ADD_ENV_(env, cnt, buf, "REQUEST_METHOD=%s", req->method); #endif #ifdef CGI_REQUEST_URI CGI_ADD_ENV_(env, cnt, buf, "REQUEST_URI=%s", req->url); #endif if (req->query_string) { CGI_ADD_ENV_(env, cnt, buf, "QUERY_STRING=%s", req->query_string); } if (req->header[HEADER_CONTENTTYPE]) { CGI_ADD_ENV_(env, cnt, buf, "CONTENT_TYPE=%s", req->header[HEADER_CONTENTTYPE]); } if (req->header[HEADER_CONTENTLENGTH]) { CGI_ADD_ENV_(env, cnt, buf, "CONTENT_LENGTH=%s", req->header[HEADER_CONTENTLENGTH]); } #ifdef CGI_HTTP_COOKIE if (req->header[HEADER_COOKIE]) { CGI_ADD_ENV_(env, cnt, buf, "HTTP_COOKIE=%s", req->header[HEADER_COOKIE]); } #endif *env = NULL; return cnt; } #if HAVE_VFORK == 1 # define FORK_() vfork() # define EXIT_(x) _exit(x) #else # define FORK_() fork() # define EXIT_(x) exit(x) #endif /* HAVE_VFORK */ /** Execute file. * HTTP error code is set to client->response.status_code. */ static int cgi_exec(const char *path, struct client_t *client) { char *argv[2]; char *envp[MAX_CGIENV_ITEM]; pid_t pid; int newio; /* set socket back to blocking */ newio = fcntl(client->remote_fd, F_GETFL, NULL); if (newio == -1 || fcntl(client->remote_fd, F_SETFL, newio & (~O_NONBLOCK)) == -1) { A_ERR("fcntl: F_SETFL O_NONBLOCK %s", strerror(errno)); client->response.status_code = HTTP_STATUS_SERVERERROR; return -1; } pid = FORK_(); if (pid < 0) { client->response.status_code = HTTP_STATUS_SERVERERROR; return -1; } if (pid == 0) { /* child */ /* Generate CGI parameters before touching to the buffer */ cgi_gen_env(&client->request, envp); /* Send minimal header */ client->response.status_code = HTTP_STATUS_OK; client->data_length = http_gen_header(&client->response, client->data, sizeof(client->data), 0); if (send(client->remote_fd, client->data, client->data_length, 0) < 0) { EXIT_(1); } /* Tie CGI's stdin to the socket */ if (client->flags & CLIENT_FLAG_POST) { if (dup2(client->remote_fd, STDIN_FILENO) < 0) { EXIT_(1); } } /* Tie CGI's stdout to the socket */ if (dup2(client->remote_fd, STDOUT_FILENO) < 0) { EXIT_(1); } /* close unused FDs */ server_close_fds(); /* No error log */ newio = open("/dev/null", O_WRONLY); if (newio != STDERR_FILENO) { dup2(newio, STDERR_FILENO); close(newio); } /* Execute cgi script */ argv[0] = (char *)path; argv[1] = NULL; execve(path, argv, envp); EXIT_(1); /* exec error */ } /* parent */ client->state = STATE_NONE; /* Remove this client */ return 0; } int cgi_process(struct client_t *client, const char *path) { if (cgi_is_executable(path, client) != 0) { return -1; } if (client->flags & CLIENT_FLAG_HEADERONLY) { client->response.status_code = HTTP_STATUS_OK; client->data_length = http_gen_header(&client->response, client->data, sizeof(client->data), HTTP_FLAG_END); client->state = STATE_SEND_HEADER; return 0; } return cgi_exec(path, client); } /* vim: set ts=4 sw=4 expandtab: */
nqv/aranea
src/cgi.c
C
mit
5,878
ESPSlider ========= ESPSlider is a custom UIView that works like a rating UISlider, it changes values by touching or by draging inside. See it in action: https://vimeo.com/92618816 To install you can basically drag .h and .m files to your project, import and configure or you can simple add to your Podfile ```ruby pod 'ESPSlider', '~> 1.0' ``` For use it, you can simply instantiate ESPSlider programatically: ```objc ESPSlider *slider = [[ESPSlider alloc] initWithFrame:CGRectMake(20.0, 20.0, 300.0, 30.0)]; [self.view addSubview:slider]; ``` Or you can add a UIView to your Storyboard/xib, set Custom Class to ESPSlider and add an IBOutlet to configure the component. ![Setting Custom Class](https://dl.dropboxusercontent.com/s/4gwg8ajtm0tdtle/image1.png?dl=1&token_hash=AAE3DPdcKsZoU389sug4_UUjq6sOXT-ZMhMluw_RsoaBSA) ```objc @property (nonatomic, strong) IBOutlet ESPSlider *slider; ``` ![Setting Outlet](https://dl.dropboxusercontent.com/s/rvd1nrb5bnppqwo/image2.png?token_hash=AAGhcV4rGh4azi930HFKh61m5arYNu6RvEjSJoBXKw6KNA) After that, you only need to do is to configure component: ```objc slider.minimumSize = CGSizeMake(20.0, 30.0); [slider setImage:[UIImage imageNamed:@"normal"] forState:ESPSliderStateNormal]; [slider setImage:[UIImage imageNamed:@"selected"] forState:ESPSliderStateSelected]; slider.minimumValue = 2; slider.maximumValue = 7; ``` And set the value change block: ```objc [self.slider setValueChangedBlock:^(CGFloat value){ // Do something with current value }]; ``` **The whole component is based on Ray Wenderlich 5 Star Rating View tutorial:** http://www.raywenderlich.com/1768/uiview-tutorial-for-ios-how-to-make-a-custom-uiview-in-ios-5-a-5-star-rating-view
espeiorin/ESPSlider
HOWTO.md
Markdown
mit
1,708
"use strict"; /* * Copyright (c) 2013-2019 Bert Freudenberg * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ Object.extend(Squeak.Primitives.prototype, 'ScratchPluginAdditions', { // methods not handled by generated ScratchPlugin scratch_primitiveOpenURL: function(argCount) { var url = this.stackNonInteger(0).bytesAsString(); if (url == "") return false; if (/^\/SqueakJS\//.test(url)) { url = url.slice(10); // remove file root var path = Squeak.splitFilePath(url), template = Squeak.Settings["squeak-template:" + path.dirname]; if (template) url = JSON.parse(template).url + "/" + path.basename; } window.open(url, "_blank"); // likely blocked as pop-up, but what can we do? return this.popNIfOK(argCount); }, scratch_primitiveGetFolderPath: function(argCount) { var index = this.stackInteger(0); if (!this.success) return false; var path; switch (index) { case 1: path = '/'; break; // home dir // case 2: path = '/desktop'; break; // desktop // case 3: path = '/documents'; break; // documents // case 4: path = '/pictures'; break; // my pictures // case 5: path = '/music'; break; // my music } if (!path) return false; this.vm.popNandPush(argCount + 1, this.makeStString(this.filenameToSqueak(path))); return true; }, });
bertfreudenberg/SqueakJS
vm.plugins.scratch.browser.js
JavaScript
mit
2,534
<?php /* TwigBundle:Exception:traces.html.twig */ class __TwigTemplate_172db66ae695714ab527ff22427d903f9649fdf96e97dbc795a82cac4ba36f2f extends Twig_Template { public function __construct(Twig_Environment $env) { parent::__construct($env); $this->parent = false; $this->blocks = array( ); } protected function doDisplay(array $context, array $blocks = array()) { // line 1 echo "<div class=\"block\"> "; // line 2 if (($this->getContext($context, "count") > 0)) { // line 3 echo " <h2> <span><small>["; // line 4 echo twig_escape_filter($this->env, (($this->getContext($context, "count") - $this->getContext($context, "position")) + 1), "html", null, true); echo "/"; echo twig_escape_filter($this->env, ($this->getContext($context, "count") + 1), "html", null, true); echo "]</small></span> "; // line 5 echo $this->env->getExtension('code')->abbrClass($this->getAttribute($this->getContext($context, "exception"), "class")); echo ": "; echo $this->env->getExtension('code')->formatFileFromText(nl2br(twig_escape_filter($this->env, $this->getAttribute($this->getContext($context, "exception"), "message"), "html", null, true))); echo "&nbsp; "; // line 6 ob_start(); // line 7 echo " <a href=\"#\" onclick=\"toggle('traces-"; echo twig_escape_filter($this->env, $this->getContext($context, "position"), "html", null, true); echo "', 'traces'); switchIcons('icon-traces-"; echo twig_escape_filter($this->env, $this->getContext($context, "position"), "html", null, true); echo "-open', 'icon-traces-"; echo twig_escape_filter($this->env, $this->getContext($context, "position"), "html", null, true); echo "-close'); return false;\"> <img class=\"toggle\" id=\"icon-traces-"; // line 8 echo twig_escape_filter($this->env, $this->getContext($context, "position"), "html", null, true); echo "-close\" alt=\"-\" src=\"data:image/gif;base64,R0lGODlhEgASAMQSANft94TG57Hb8GS44ez1+mC24IvK6ePx+Wa44dXs92+942e54o3L6W2844/M6dnu+P/+/l614P///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAABIALAAAAAASABIAQAVCoCQBTBOd6Kk4gJhGBCTPxysJb44K0qD/ER/wlxjmisZkMqBEBW5NHrMZmVKvv9hMVsO+hE0EoNAstEYGxG9heIhCADs=\" style=\"display: "; echo (((0 == $this->getContext($context, "count"))) ? ("inline") : ("none")); echo "\" /> <img class=\"toggle\" id=\"icon-traces-"; // line 9 echo twig_escape_filter($this->env, $this->getContext($context, "position"), "html", null, true); echo "-open\" alt=\"+\" src=\"data:image/gif;base64,R0lGODlhEgASAMQTANft99/v+Ga44bHb8ITG52S44dXs9+z1+uPx+YvK6WC24G+944/M6W28443L6dnu+Ge54v/+/l614P///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAABMALAAAAAASABIAQAVS4DQBTiOd6LkwgJgeUSzHSDoNaZ4PU6FLgYBA5/vFID/DbylRGiNIZu74I0h1hNsVxbNuUV4d9SsZM2EzWe1qThVzwWFOAFCQFa1RQq6DJB4iIQA7\" style=\"display: "; echo (((0 == $this->getContext($context, "count"))) ? ("none") : ("inline")); echo "\" /> </a> "; echo trim(preg_replace('/>\s+</', '><', ob_get_clean())); // line 12 echo " </h2> "; } else { // line 14 echo " <h2>Stack Trace</h2> "; } // line 16 echo " <a id=\"traces-link-"; // line 17 echo twig_escape_filter($this->env, $this->getContext($context, "position"), "html", null, true); echo "\"></a> <ol class=\"traces list-exception\" id=\"traces-"; // line 18 echo twig_escape_filter($this->env, $this->getContext($context, "position"), "html", null, true); echo "\" style=\"display: "; echo (((0 == $this->getContext($context, "count"))) ? ("block") : ("none")); echo "\"> "; // line 19 $context['_parent'] = (array) $context; $context['_seq'] = twig_ensure_traversable($this->getAttribute($this->getContext($context, "exception"), "trace")); foreach ($context['_seq'] as $context["i"] => $context["trace"]) { // line 20 echo " <li> "; // line 21 $this->env->loadTemplate("TwigBundle:Exception:trace.html.twig")->display(array("prefix" => $this->getContext($context, "position"), "i" => $this->getContext($context, "i"), "trace" => $this->getContext($context, "trace"))); // line 22 echo " </li> "; } $_parent = $context['_parent']; unset($context['_seq'], $context['_iterated'], $context['i'], $context['trace'], $context['_parent'], $context['loop']); $context = array_intersect_key($context, $_parent) + $_parent; // line 24 echo " </ol> </div> "; } public function getTemplateName() { return "TwigBundle:Exception:traces.html.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 94 => 22, 92 => 21, 89 => 20, 85 => 19, 79 => 18, 75 => 17, 72 => 16, 68 => 14, 64 => 12, 56 => 9, 50 => 8, 41 => 7, 27 => 4, 24 => 3, 22 => 2, 201 => 92, 199 => 91, 196 => 90, 187 => 84, 183 => 82, 173 => 74, 171 => 73, 168 => 72, 166 => 71, 163 => 70, 158 => 67, 156 => 66, 151 => 63, 142 => 59, 138 => 57, 136 => 56, 133 => 55, 123 => 47, 121 => 46, 117 => 44, 115 => 43, 112 => 42, 105 => 40, 101 => 24, 91 => 31, 86 => 28, 69 => 25, 66 => 24, 62 => 23, 51 => 20, 49 => 19, 39 => 6, 32 => 12, 19 => 1, 57 => 12, 54 => 21, 43 => 8, 40 => 7, 33 => 5, 30 => 3,); } }
Alexandrovic/WebSmartravel
app/cache/dev/twig/17/2d/b66ae695714ab527ff22427d903f9649fdf96e97dbc795a82cac4ba36f2f.php
PHP
mit
6,030
<?php namespace CallFire\Common\Resource; class RetryResults extends AbstractResource { }
CallFire/CallFire-PHP-SDK
src/CallFire/Common/Resource/RetryResults.php
PHP
mit
93
const React = require('react'); const { ViewPropTypes } = ReactNative = require('react-native'); const { View, Animated, StyleSheet, ScrollView, Text, Platform, Dimensions, I18nManager } = ReactNative; const Button = require('./Button'); //import { PropTypes } from 'react' const WINDOW_WIDTH = Dimensions.get('window').width; const ScrollableTabBar = React.createClass({ propTypes: { goToPage: React.PropTypes.func, activeTab: React.PropTypes.number, tabs: React.PropTypes.array, backgroundColor: React.PropTypes.string, activeTextColor: React.PropTypes.string, inactiveTextColor: React.PropTypes.string, scrollOffset: React.PropTypes.number, //style: ViewPropTypes.style, //tabStyle: ViewPropTypes.style, //tabsContainerStyle: ViewPropTypes.style, //tabStyle: ViewPropTypes.style, textStyle: Text.propTypes.style, renderTab: React.PropTypes.func, //underlineStyle: ViewPropTypes.style, onScroll:React.PropTypes.func, }, getDefaultProps() { return { scrollOffset: 52, activeTextColor: 'navy', inactiveTextColor: 'black', backgroundColor: null, style: {}, tabStyle: {}, tabsContainerStyle: {}, tabStyle: {}, underlineStyle: {}, }; }, getInitialState() { this._tabsMeasurements = []; return { _leftTabUnderline: new Animated.Value(0), _widthTabUnderline: new Animated.Value(0), _containerWidth: null, }; }, componentDidMount() { this.props.scrollValue.addListener(this.updateView); }, updateView(offset) { //console.log("updateView="+JSON.stringify(offset)); //console.log("updateView="+JSON.stringify(this.props)); const position = Math.floor(offset.value); const pageOffset = offset.value % 1; const tabCount = this.props.tabs.length; const lastTabPosition = tabCount - 1; if (tabCount === 0 || offset.value < 0 || offset.value > lastTabPosition) { return; } if (this.necessarilyMeasurementsCompleted(position, position === lastTabPosition)) { this.updateTabPanel(position, pageOffset); this.updateTabUnderline(position, pageOffset, tabCount); } }, necessarilyMeasurementsCompleted(position, isLastTab) { return this._tabsMeasurements[position] && (isLastTab || this._tabsMeasurements[position + 1]) && this._tabContainerMeasurements && this._containerMeasurements; }, updateTabPanel(position, pageOffset) { const containerWidth = this._containerMeasurements.width; const tabWidth = this._tabsMeasurements[position].width; //console.log("containerWidth="+containerWidth+" tabWidth="+tabWidth); const nextTabMeasurements = this._tabsMeasurements[position + 1]; const nextTabWidth = nextTabMeasurements && nextTabMeasurements.width || 0; const tabOffset = this._tabsMeasurements[position].left; const absolutePageOffset = pageOffset * tabWidth; let newScrollX = tabOffset + absolutePageOffset; // center tab and smooth tab change (for when tabWidth changes a lot between two tabs) newScrollX -= (containerWidth - (1 - pageOffset) * tabWidth - pageOffset * nextTabWidth) / 2; newScrollX = newScrollX >= 0 ? newScrollX : 0; if (Platform.OS === 'android') { this._scrollView.scrollTo({x: newScrollX, y: 0, animated: false, }); } else { const rightBoundScroll = this._tabContainerMeasurements.width - (this._containerMeasurements.width); newScrollX = newScrollX > rightBoundScroll ? rightBoundScroll : newScrollX; this._scrollView.scrollTo({x: newScrollX, y: 0, animated: false, }); } }, updateTabUnderline(position, pageOffset, tabCount) { const tabPad = this.props.underlineAlignText?this.props.tabPadding:0; const lineLeft = this._tabsMeasurements[position].left; const lineRight = this._tabsMeasurements[position].right; if (position < tabCount - 1) { const nextTabLeft = this._tabsMeasurements[position + 1].left; const nextTabRight = this._tabsMeasurements[position + 1].right; const newLineLeft = (pageOffset * nextTabLeft + (1 - pageOffset) * lineLeft); const newLineRight = (pageOffset * nextTabRight + (1 - pageOffset) * lineRight); this.state._leftTabUnderline.setValue(newLineLeft+tabPad); this.state._widthTabUnderline.setValue(newLineRight - newLineLeft -tabPad*2); } else { this.state._leftTabUnderline.setValue(lineLeft+tabPad); this.state._widthTabUnderline.setValue(lineRight - lineLeft-tabPad*2); } }, renderTab(name, page, isTabActive, onPressHandler, onLayoutHandler) { const { activeTextColor, inactiveTextColor, textStyle, } = this.props; const textColor = isTabActive ? activeTextColor : inactiveTextColor; const fontWeight = isTabActive ? 'bold' : 'normal'; return <Button key={`${name}_${page}`} accessible={true} accessibilityLabel={name} accessibilityTraits='button' onPress={() => onPressHandler(page)} onLayout={onLayoutHandler} > <View style={[this.props.tabStyle||styles.tab, ]}> <Text style={[{color: textColor, fontWeight, }, textStyle, ]}> {name} </Text> </View> </Button>; }, measureTab(page, event) { console.log("measureTab="+page+"layout "+JSON.stringify(event.nativeEvent.layout)); const { x, width, height, } = event.nativeEvent.layout; this._tabsMeasurements[page] = {left: x, right: x + width, width, height, }; this.updateView({value: this.props.scrollValue._value, }); }, render() { const tabUnderlineStyle = { position: 'absolute', height: 1, backgroundColor: 'navy', bottom: 0, }; const key = I18nManager.isRTL ? 'right' : 'left'; const dynamicTabUnderline = { [`${key}`]: this.state._leftTabUnderline, width: this.state._widthTabUnderline } return <View style={[this.props.tabsContainerStyle||styles.container, ]} onLayout={this.onContainerLayout} > <ScrollView automaticallyAdjustContentInsets={false} ref={(scrollView) => { this._scrollView = scrollView; }} horizontal={true} showsHorizontalScrollIndicator={false} showsVerticalScrollIndicator={false} directionalLockEnabled={true} onScroll={this.props.onScroll} bounces={false} scrollsToTop={false} > <View style={[styles.tabs, {width: this.state._containerWidth, }, ]} ref={'tabContainer'} onLayout={this.onTabContainerLayout} > {this.props.tabs.map((name, page) => { const isTabActive = this.props.activeTab === page; const renderTab = this.props.renderTab || this.renderTab; return renderTab(name, page, isTabActive, this.props.goToPage, this.measureTab.bind(this, page)); })} <Animated.View style={[tabUnderlineStyle, dynamicTabUnderline, this.props.underlineStyle, ]} /> </View> </ScrollView> </View>; }, componentWillReceiveProps(nextProps) { // If the tabs change, force the width of the tabs container to be recalculated if (JSON.stringify(this.props.tabs) !== JSON.stringify(nextProps.tabs) && this.state._containerWidth) { this.setState({ _containerWidth: null, }); } }, onTabContainerLayout(e) { this._tabContainerMeasurements = e.nativeEvent.layout; let width = this._tabContainerMeasurements.width; if (width < WINDOW_WIDTH) { width = WINDOW_WIDTH; } this.setState({ _containerWidth: width, }); this.updateView({value: this.props.scrollValue._value, }); }, onContainerLayout(e) { this._containerMeasurements = e.nativeEvent.layout; this.updateView({value: this.props.scrollValue._value, }); }, }); module.exports = ScrollableTabBar; const styles = StyleSheet.create({ tab: { height: 49, alignItems: 'center', justifyContent: 'center', paddingLeft: 20, paddingRight: 20, }, container: { height: 50, borderWidth: 1, borderTopWidth: 0, borderLeftWidth: 0, borderRightWidth: 0, borderColor: '#ccc', }, tabs: { flexDirection: 'row', // justifyContent: 'space-around', android设备可能撞车 }, });
jackuhan/react-native-viewpager-indicator
ScrollableTabBar.js
JavaScript
mit
8,319
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("eXpand.XafMVVM.Module.Win")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("-")] [assembly: AssemblyProduct("eXpand.XafMVVM.Module.Win")] [assembly: AssemblyCopyright("Copyright © - 2007")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. [assembly: ComVisible(false)] // Version information for an assembly consists of the following four values: // // Major Version // Minor Version // Build Number // Revision // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: [assembly: AssemblyVersion("1.0.*")]
biohazard999/XafMVVM
src/XMVVM/XMVVM.ExpressApp.Demos/XMVVM.ExpressApp.Demos.Module.Win/Properties/AssemblyInfo.cs
C#
mit
1,201
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Runtime.InteropServices.WindowsRuntime; using System.Threading.Tasks; using Windows.ApplicationModel; using Windows.ApplicationModel.Activation; using Windows.Foundation; using Windows.Foundation.Collections; using Windows.UI.Popups; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Controls.Primitives; using Windows.UI.Xaml.Data; using Windows.UI.Xaml.Input; using Windows.UI.Xaml.Media; using Windows.UI.Xaml.Navigation; namespace murlok_uwp { /// <summary> /// Provides application-specific behavior to supplement the default Application class. /// </summary> sealed partial class App : Application { /// <summary> /// Initializes the singleton application object. This is the first line of authored code /// executed, and as such is the logical equivalent of main() or WinMain(). /// </summary> public App() { this.InitializeComponent(); this.Suspending += OnSuspending; } /// <summary> /// Invoked when the application is launched normally by the end user. Other entry points /// will be used such as when the application is launched to open a specific file. /// </summary> /// <param name="e">Details about the launch request and process.</param> protected override void OnLaunched(LaunchActivatedEventArgs e) { #if DEBUG if (System.Diagnostics.Debugger.IsAttached) { this.DebugSettings.EnableFrameRateCounter = true; } #endif Frame rootFrame = Window.Current.Content as Frame; // Do not repeat app initialization when the Window already has content, // just ensure that the window is active if (rootFrame == null) { // Create a Frame to act as the navigation context and navigate to the first page rootFrame = new Frame(); rootFrame.NavigationFailed += OnNavigationFailed; if (e.PreviousExecutionState == ApplicationExecutionState.Terminated) { //TODO: Load state from previously suspended application } // Place the frame in the current Window Window.Current.Content = rootFrame; } if (e.PrelaunchActivated == false) { if (rootFrame.Content == null) { // When the navigation stack isn't restored navigate to the first page, // configuring the new page by passing required information as a navigation // parameter rootFrame.Navigate(typeof(MainPage), e.Arguments); } // Ensure the current window is active Window.Current.Activate(); } LaunchBackgroundProcess(); } /// <summary> /// Invoked when Navigation to a certain page fails /// </summary> /// <param name="sender">The Frame which failed navigation</param> /// <param name="e">Details about the navigation failure</param> void OnNavigationFailed(object sender, NavigationFailedEventArgs e) { throw new Exception("Failed to load Page " + e.SourcePageType.FullName); } /// <summary> /// Invoked when application execution is being suspended. Application state is saved /// without knowing whether the application will be terminated or resumed with the contents /// of memory still intact. /// </summary> /// <param name="sender">The source of the suspend request.</param> /// <param name="e">Details about the suspend request.</param> private void OnSuspending(object sender, SuspendingEventArgs e) { var deferral = e.SuspendingOperation.GetDeferral(); //TODO: Save application state and stop any background activity deferral.Complete(); } private async void LaunchBackgroundProcess() { try { await FullTrustProcessLauncher.LaunchFullTrustProcessForCurrentAppAsync(); } catch (Exception) { System.Diagnostics.Debug.WriteLine("BackgroundProcess failed to launch"); } } } }
murlokswarm/windows
native/murlok-uwp/App.xaml.cs
C#
mit
4,543
<?php namespace jk204\SIMalliance\ASN1\FileSystem; use FG\ASN1\Universal\OctetString; class filePath extends OctetString { }
jk204/sim-profile-asn1
src/jk204/SIMalliance/ASN1/FileSystem/filePath.php
PHP
mit
128
class ExercisesController < ApplicationController load_and_authorize_resource before_action :set_exercise, only: [:show, :edit, :update, :destroy] respond_to :html def index @exercises = Exercise.all respond_with(@exercises) end def show respond_with(@exercise) end def new @exercise = Exercise.new respond_with(@exercise) end def edit end def create @exercise = Exercise.new(exercise_params) @exercise.save respond_with(@exercise) end def update @exercise.update(exercise_params) respond_with(@exercise) end def destroy @exercise.destroy respond_with(@exercise) end private def set_exercise @exercise = Exercise.find(params[:id]) end def exercise_params params.require(:exercise).permit(:title, :content) end end
project-awesome/pa-skills-oauth-cancan
app/controllers/exercises_controller.rb
Ruby
mit
837
--- layout: post status: publish published: true title: Bad Boys for Life author: display_name: Dylan login: dylan email: dylan@dylanreed.com url: / author_login: dylan author_email: dylan@dylanreed.com author_url: / wordpress_id: 54 wordpress_url: http://dylanreed.org/?p=54 date: '2003-07-27 09:29:35 -0500' date_gmt: '2003-07-27 15:29:35 -0500' categories: - Awesome tags: [] comments: [] --- I saw Bad Boys II today. It was pretty good, not as good as legally blonde II, but good. Lots of explosions and a few good car chases. lots of gross morgue humor so thats good. I had fun on saturday at the arts picnic. I dressed up as a clown and ran a muck. a muck a muck a muck thats how i ran. i did probably three 30 min shows and did some crazy unicycling. I am so sleepy. dylan
dylanreed/dylan.blog
_posts/2003-07-27-bad-boys-for-life.markdown
Markdown
mit
791
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>W30206_text</title> <link rel="stylesheet" type="text/css" href="style.css" /> </head> <body> <div style="margin-left: auto; margin-right: auto; width: 800px; overflow: hidden;"> <div style="float: left;"> <a href="page31.html">&laquo;</a> </div> <div style="float: right;"> </div> </div> <hr/> <div style="position: absolute; margin-left: 165px; margin-top: 220px;"> <p class="styleSans428.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">238% A??? AMEN; R003 ROAD LOCATION PLAT CONTINENTAL RESOURCES INC. <br/>SECTIONS 4, T152N, R99W MCKENZIE COUNTY, NORTH DAKOTA <br/>LAWRENCE & ULA W/DDEL - 57/25E7/4 SECTION 4 | 440.0 FEET 0/? 26.67 RODS t <br/>‘ 7 — 2 N 02' 36: 16: 77.1’ I 2 — 3 N 64' 10, 28” E 268.; ;3—4 N44'14 74 94.2 <br/>I I <br/> <br/>I I m ...... ELI <br/>BOULDER 2—4H BOULDER 3—4H1 <br/>N 87’ 33"44” w 7394.8 <br/>I CERT/FY THAT THIS PLAT CORRECTLY REPRESENTS PERSON AUTHORIZING SURVEY; WORK PEREQRMED BY ME OR UNDER MY RESPONSIBLE CHAD NE WBY <br/>BASIS OF BEAR/N0: TRUE NORTH <br/>BROS! ENC/WEIRIJVG' IJVCI <br/>BOX 357 BOWMAN, ND. 58623 PHONE: 70]—523~334O FAX: 701—523—5243 <br/>PROJECT NO. 12—10 <br/> </p> </div> <div style="position: absolute; margin-left: 2530px; margin-top: 330px;"> <p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p> </div> </body> </html>
datamade/elpc_bakken
ocr_extracted/W30206_text/page32.html
HTML
mit
1,685
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>W21828_extracted</title> <link rel="stylesheet" type="text/css" href="style.css" /> </head> <body> <div style="margin-left: auto; margin-right: auto; width: 800px; overflow: hidden;"> <div style="float: left;"> <a href="page42.html">&laquo;</a> </div> <div style="float: right;"> </div> </div> <hr/> <div style="position: absolute; margin-left: 55px; margin-top: 110px;"> <p class="styleSans1.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p> </div> <div style="position: absolute; margin-left: 0px; margin-top: 275px;"> <p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p> </div> <div style="position: absolute; margin-left: 219px; margin-top: 137px;"> <p class="styleSans1.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p> </div> <div style="position: absolute; margin-left: 247px; margin-top: 440px;"> <p class="styleSans13.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">TRIANGLE <br/>PETROLEUM CORPORATION </p> </div> <div style="position: absolute; margin-left: 495px; margin-top: 715px;"> <p class="styleSans19.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Triangle Petroleum Corporation <br/>Bravo Prospect Gullickson Trust 150-101-36-25 Gullickson Trust 150-101-36-25-4H <br/>Gullickson Trust 150-101-36-25-4H </p> </div> <div style="position: absolute; margin-left: 495px; margin-top: 1292px;"> <p class="styleSans11.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Plan: Plan #1_Triang|e Petroleum </p> </div> <div style="position: absolute; margin-left: 495px; margin-top: 1595px;"> <p class="styleSans18.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Standard Planning Report - Geographic <br/>10 January, 2012 </p> </div> </body> </html>
datamade/elpc_bakken
ocr_extracted/W21828_text/page43.html
HTML
mit
2,297
/* Copyright (c) 2015 - 2021 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include <hip/hip_runtime_api.h> #include "test_common.h" int main() { int val; hipDeviceAttribute_t attr = hipDeviceAttributeMaxThreadsPerBlock; ///< Maximum number of threads per block. HIP_PRINT_STATUS(hipDeviceGetAttribute(NULL, attr, 0)); HIP_PRINT_STATUS(hipDeviceGetAttribute(&val, attr, 0)); HIP_PRINT_STATUS(hipDeviceGetAttribute(NULL, attr, -1)); HIP_PRINT_STATUS(hipDeviceGetAttribute(&val, attr, -1)); attr = hipDeviceAttribute_t(91); HIP_PRINT_STATUS(hipDeviceGetAttribute(NULL, attr, 0)); HIP_PRINT_STATUS(hipDeviceGetAttribute(&val, attr, 0)); HIP_PRINT_STATUS(hipDeviceGetAttribute(NULL, attr, -1)); HIP_PRINT_STATUS(hipDeviceGetAttribute(&val, attr, -1)); }
ROCm-Developer-Tools/HIP
tests/src/nvcc/Device/hipDeviceGetAttribute.cpp
C++
mit
1,836
<?php namespace Oro\Bundle\FlexibleEntityBundle\AttributeType; use Oro\Bundle\FlexibleEntityBundle\AttributeType\AbstractAttributeType; use Oro\Bundle\FlexibleEntityBundle\Model\FlexibleValueInterface; /** * Datetime attribute type */ class DateTimeType extends AbstractAttributeType { /** * {@inheritdoc} */ protected function prepareValueFormOptions(FlexibleValueInterface $value) { $options = parent::prepareValueFormOptions($value); $options['widget'] = 'single_text'; $options['input'] = 'datetime'; return $options; } /** * {@inheritdoc} */ public function getName() { return 'oro_flexibleentity_datetime'; } }
umpirsky/platform
src/Oro/Bundle/FlexibleEntityBundle/AttributeType/DateTimeType.php
PHP
mit
716
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; using System.Linq; namespace T2rkus.Spark.Core.Cli { public class CommandOption { public CommandOption(string template, CommandOptionType optionType) { Template = template; OptionType = optionType; Values = new List<string>(); foreach (var part in Template.Split(new[] { ' ', '|' }, StringSplitOptions.RemoveEmptyEntries)) { if (part.StartsWith("--")) { LongName = part.Substring(2); } else if (part.StartsWith("-")) { var optName = part.Substring(1); // If there is only one char and it is not an English letter, it is a symbol option (e.g. "-?") if (optName.Length == 1 && !IsEnglishLetter(optName[0])) { SymbolName = optName; } else { ShortName = optName; } } else if (part.StartsWith("<") && part.EndsWith(">")) { ValueName = part.Substring(1, part.Length - 2); } else { throw new ArgumentException($"Invalid template pattern '{template}'", nameof(template)); } } if (string.IsNullOrEmpty(LongName) && string.IsNullOrEmpty(ShortName) && string.IsNullOrEmpty(SymbolName)) { throw new ArgumentException($"Invalid template pattern '{template}'", nameof(template)); } } public string Template { get; set; } public string ShortName { get; set; } public string LongName { get; set; } public string SymbolName { get; set; } public string ValueName { get; set; } public string Description { get; set; } public List<string> Values { get; private set; } public CommandOptionType OptionType { get; private set; } public bool ShowInHelpText { get; set; } = true; public bool Inherited { get; set; } public bool TryParse(string value) { switch (OptionType) { case CommandOptionType.MultipleValue: Values.Add(value); break; case CommandOptionType.SingleValue: if (Values.Any()) { return false; } Values.Add(value); break; case CommandOptionType.NoValue: if (value != null) { return false; } // Add a value to indicate that this option was specified Values.Add("on"); break; default: break; } return true; } public bool HasValue() { return Values.Any(); } public string Value() { return HasValue() ? Values[0] : null; } private bool IsEnglishLetter(char c) { return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'); } } }
T2RKUS/Spark
T2rkus.Spark/T2rkus.Spark.Core.Cli/T2rkus.Spark.Core.Cli/Parser/CommandOption.cs
C#
mit
3,607
/* * This file is part of jGui API, licensed under the MIT License (MIT). * * Copyright (c) 2016 johni0702 <https://github.com/johni0702> * Copyright (c) contributors * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package de.johni0702.minecraft.gui.element; import de.johni0702.minecraft.gui.GuiRenderer; import de.johni0702.minecraft.gui.RenderInfo; import de.johni0702.minecraft.gui.container.GuiContainer; import de.johni0702.minecraft.gui.utils.lwjgl.Dimension; import de.johni0702.minecraft.gui.utils.lwjgl.Point; import de.johni0702.minecraft.gui.utils.lwjgl.ReadableDimension; import de.johni0702.minecraft.gui.versions.MCVer; import net.minecraft.client.MinecraftClient; import net.minecraft.util.Identifier; public abstract class AbstractGuiElement<T extends AbstractGuiElement<T>> implements GuiElement<T> { protected static final Identifier TEXTURE = new Identifier("jgui", "gui.png"); private final MinecraftClient minecraft = MCVer.getMinecraft(); private GuiContainer container; private GuiElement tooltip; private boolean enabled = true; protected Dimension minSize, maxSize; /** * The last size this element was render at layer 0. * May be {@code null} when this element has not yet been rendered. */ private ReadableDimension lastSize; public AbstractGuiElement() { } public AbstractGuiElement(GuiContainer container) { container.addElements(null, this); } protected abstract T getThis(); @Override public void layout(ReadableDimension size, RenderInfo renderInfo) { if (size == null) { if (getContainer() == null) { throw new RuntimeException("Any top containers must implement layout(null, ...) themselves!"); } getContainer().layout(size, renderInfo.layer(renderInfo.layer + getLayer())); return; } if (renderInfo.layer == 0) { lastSize = size; } } @Override public void draw(GuiRenderer renderer, ReadableDimension size, RenderInfo renderInfo) { } @Override public T setEnabled(boolean enabled) { this.enabled = enabled; return getThis(); } @Override public T setEnabled() { return setEnabled(true); } @Override public T setDisabled() { return setEnabled(false); } @Override public GuiElement getTooltip(RenderInfo renderInfo) { if (tooltip != null && lastSize != null) { Point mouse = new Point(renderInfo.mouseX, renderInfo.mouseY); if (container != null) { container.convertFor(this, mouse); } if (mouse.getX() > 0 && mouse.getY() > 0 && mouse.getX() < lastSize.getWidth() && mouse.getY() < lastSize.getHeight()) { return tooltip; } } return null; } @Override public T setTooltip(GuiElement tooltip) { this.tooltip = tooltip; return getThis(); } @Override public T setContainer(GuiContainer container) { this.container = container; return getThis(); } public T setMinSize(ReadableDimension minSize) { this.minSize = new Dimension(minSize); return getThis(); } public T setMaxSize(ReadableDimension maxSize) { this.maxSize = new Dimension(maxSize); return getThis(); } public T setSize(ReadableDimension size) { setMinSize(size); return setMaxSize(size); } public T setSize(int width, int height) { return setSize(new Dimension(width, height)); } public T setWidth(int width) { if (minSize == null) { minSize = new Dimension(width, 0); } else { minSize.setWidth(width); } if (maxSize == null) { maxSize = new Dimension(width, Integer.MAX_VALUE); } else { maxSize.setWidth(width); } return getThis(); } public T setHeight(int height) { if (minSize == null) { minSize = new Dimension(0, height); } else { minSize.setHeight(height); } if (maxSize == null) { maxSize = new Dimension(Integer.MAX_VALUE, height); } else { maxSize.setHeight(height); } return getThis(); } public int getLayer() { return 0; } @Override public ReadableDimension getMinSize() { ReadableDimension calcSize = calcMinSize(); if (minSize == null) { return calcSize; } else { if (minSize.getWidth() >= calcSize.getWidth() && minSize.getHeight() >= calcSize.getHeight()) { return minSize; } else { return new Dimension( Math.max(calcSize.getWidth(), minSize.getWidth()), Math.max(calcSize.getHeight(), minSize.getHeight()) ); } } } protected abstract ReadableDimension calcMinSize(); @Override public ReadableDimension getMaxSize() { return maxSize == null ? new Dimension(Integer.MAX_VALUE, Integer.MAX_VALUE) : maxSize; } public MinecraftClient getMinecraft() { return this.minecraft; } public GuiContainer getContainer() { return this.container; } public boolean isEnabled() { return this.enabled; } protected ReadableDimension getLastSize() { return this.lastSize; } }
ReplayMod/jGui
src/main/java/de/johni0702/minecraft/gui/element/AbstractGuiElement.java
Java
mit
6,656
#-- encoding: UTF-8 #-- copyright # OpenProject is a project management system. # Copyright (C) 2012-2013 the OpenProject Foundation (OPF) # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. # # OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: # Copyright (C) 2006-2013 Jean-Philippe Lang # Copyright (C) 2010-2013 the ChiliProject Team # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # See doc/COPYRIGHT.rdoc for more details. #++ require File.expand_path('../../test_helper', __FILE__) class EnabledModuleTest < ActiveSupport::TestCase def test_enabling_wiki_should_create_a_wiki CustomField.delete_all FactoryGirl.create(:type_standard) project = Project.create!(:name => 'Project with wiki', :identifier => 'wikiproject') assert_nil project.wiki project.enabled_module_names = ['wiki'] wiki = FactoryGirl.create :wiki, :project => project project.reload assert_not_nil project.wiki assert_equal 'Wiki', project.wiki.start_page end def test_reenabling_wiki_should_not_create_another_wiki project = FactoryGirl.create :project wiki = FactoryGirl.create :wiki, :project => project project.reload assert_not_nil project.wiki project.enabled_module_names = [] project.reload assert_no_difference 'Wiki.count' do project.enabled_module_names = ['wiki'] end assert_not_nil project.wiki end end
mximos/openproject-heroku
test/unit/enabled_module_test.rb
Ruby
mit
2,169
var expect = require('chai').expect, sinon = require('sinon'), EventEmitter = require('../src/EventEmitter'); describe('EventEmitter tests', function() { var emitter, foo, bar; beforeEach(function() { emitter = new EventEmitter(); foo = sinon.spy(); bar = sinon.spy(); }); describe('.on', function() { it('should throw error if foo is not a function', function() { var fn = emitter.on.bind(null, 'abc', 'abc'); expect(fn).to.throw(TypeError); }); it('should register event with emitter._events', function() { emitter.on('data', foo); expect(emitter._events.data[0]).to.equal(foo); }); it('should be able to register multiple foos', function() { emitter.on('data', foo); emitter.on('data', bar); expect(emitter._events.data[0]).to.equal(foo); expect(emitter._events.data[1]).to.equal(bar); }); it('should return itself', function() { expect(emitter.on('data', foo)).to.equal(emitter); }); it('emits newListener event with event name and listener args', function() { var emitSpy = sinon.spy(emitter, 'emit'); emitter.on('foo', foo); sinon.assert.calledOnce(emitSpy); sinon.assert.calledWith(emitSpy, 'newListener', 'foo', foo); }); }); describe('.emit', function() { beforeEach(function() { emitter.on('data', foo); emitter.on('data', bar); }); it('should trigger listeners bound to event', function() { emitter.emit('data'); expect(foo.calledOnce).to.be.true; expect(bar.calledOnce).to.be.true; }); it('should trigger listeners in order', function() { emitter.emit('data'); expect(foo.calledBefore(bar)).to.be.true; }); it('should apply arguments to each listener', function() { var arg1 = 1, arg2 = '2', arg3 = {}; emitter.emit('data', arg1, arg2, arg3); sinon.assert.calledWithExactly(foo, arg1, arg2, arg3); }); it('should bind "this" to the emitter in listener', function(done) { var fn = function() { expect(this).to.equal(emitter); done(); }; emitter.on('data', fn); emitter.emit('data'); }); it('should return true if listeners were fired', function() { expect(emitter.emit('data')).to.be.true; }); it('should return false if no listeners fired', function() { expect(emitter.emit('adf')).to.be.false; }); }); describe('.removeAllListeners', function() { beforeEach(function() { emitter.on('foo', foo); emitter.on('foo', function() {}); emitter.on('bar', bar); }); it('should remove all listeners if no parameter', function() { emitter.removeAllListeners(); expect(emitter._events).to.be.empty; }); it('should only remove listeners to specified event', function() { emitter.removeAllListeners('foo'); expect(emitter._events.foo).to.be.undefined; expect(emitter._events.bar).to.not.be.undefined; }); it('should return the emitter', function() { expect(emitter.removeAllListeners()).to.equal(emitter); }); }); describe('.removeListener', function() { var baz; beforeEach(function() { baz = sinon.spy(); emitter.on('foo', foo); emitter.on('foo', baz); emitter.on('bar', bar); }); it('should remove only one listener for event', function() { emitter.removeListener('foo', baz); expect(emitter._events.foo.length).to.equal(1); expect(emitter._events.foo[0]).to.equal(foo); }); it('should throw error if listener is not a function', function() { var fn = emitter.removeListener.bind(emitter, 'foo', 'foo'); expect(fn).to.throw(TypeError); }); it('should return the emitter', function() { expect(emitter.removeListener('foo', foo)).to.equal(emitter); }); it('should be able to remove listener added by .once', function() { var qux = sinon.spy(); emitter.once('bar', qux); emitter.removeListener('bar', qux); expect(emitter._events.bar.length).to.equal(1); expect(emitter._events.bar[0]).to.equal(bar); }); it('should emit removeListener event with event name and listener args', function() { var emitSpy = sinon.spy(emitter, 'emit'); emitter.removeListener('foo', foo); sinon.assert.calledOnce(emitSpy); sinon.assert.calledWith(emitSpy, 'removeListener', 'foo', foo); }); }); describe('.once', function() { it('should throw error if listener is not a function', function() { var fn = emitter.once.bind(null, 'abc', 'abc'); expect(fn).to.throw(TypeError); }); it('should register a listener', function() { emitter.once('foo', foo); expect(emitter._events.foo.length).to.equal(1); }); it('should run registered function', function() { emitter.once('foo', foo); emitter.emit('foo'); expect(foo.calledOnce).to.be.true; }); it('should remove listener after .emit', function() { emitter.once('foo', foo); emitter.emit('foo'); expect(emitter._events.foo).to.be.empty; }); it('should pass all parameters from listener', function() { var arg1 = 1, arg2 = '2', arg3 = {}; emitter.once('foo', foo); emitter.emit('foo', arg1, arg2, arg3); sinon.assert.calledWithExactly(foo, arg1, arg2, arg3); }); it('should return the emitter', function() { expect(emitter.once('foo', foo)).to.equal(emitter); }); it('emits newListener event with event name and listener args', function() { var emitSpy = sinon.spy(emitter, 'emit'); emitter.once('foo', foo); sinon.assert.calledOnce(emitSpy); sinon.assert.calledWith(emitSpy, 'newListener', 'foo', foo); }); }); describe('.listeners', function() { beforeEach(function() { emitter.on('foo', foo); emitter.on('bar', bar); }); it('should return an array of listeners for an event', function() { expect(emitter.listeners('foo')).to.deep.equal([foo]); }); it('should return an empty array for unregistered events', function() { expect(emitter.listeners('abcd')).to.deep.equal([]); }); }); describe('.addListener', function() { it('should be alias to .on', function() { expect(emitter.addListener).to.equal(emitter.on); }); }); describe('.off', function() { it('should alias to .removeListener', function() { expect(emitter.off).to.equal(emitter.removeListener); }); }); describe('EventEmitter.listenerCount', function() { beforeEach(function() { emitter.on('foo', foo); emitter.on('foo', function() {}); emitter.on('bar', bar); }); it('should return 0 for non emitters', function() { expect(EventEmitter.listenerCount(1)).to.equal(0); }); it('should return 0 for no listeners', function() { expect(EventEmitter.listenerCount(emitter, 'baz')).to.equal(0); }); it('should return number of listeners', function() { expect(EventEmitter.listenerCount(emitter, 'foo')).to.equal(2); }); }); });
jimgswang/EventEmitter
test/EventEmitter.test.js
JavaScript
mit
8,204
#!/bin/bash . 'functions.sh' print "Building site............" GIT=`which git` # Clone repo and add symblink if [ ! -d $ROOTFS/app/project/docroot ] then print "Downloading latest Drupal Core ..." exec 'wget -O - http://ftp.drupal.org/files/projects/drupal-7.39.tar.gz | tar zxf -' exec 'mv drupal-7.39 app/project/docroot' exec 'ln -s project/docroot app/docroot' print "Cloning git repo ..." exec "$GIT clone git@bitbucket.org:kurobits/condo-profile.git app/project/docroot/profiles/condo" DEFAULT_DIR="$ROOTFS/app/project/docroot/sites/default" print "Adding config and files directory ..." exec "mkdir -p $DEFAULT_DIR/files" exec "chmod a+rw $DEFAULT_DIR/files" exec "cp $DEFAULT_DIR/default.settings.php $DEFAULT_DIR/settings.php" echo '' >> $DEFAULT_DIR/settings.php echo '// read local settings' >> $DEFAULT_DIR/settings.php echo 'if (file_exists(__DIR__ . "/local.settings.php")) {' >> $DEFAULT_DIR/settings.php echo ' require(__DIR__ . "/local.settings.php");' >> $DEFAULT_DIR/settings.php echo '}' >> $DEFAULT_DIR/settings.php print "Copying local settings for site ..." exec "cp $ROOTFS/local.settings.php $DEFAULT_DIR" print '' print '----------------------------------------------------------------------' print 'Levantar contenedores con ./d4d up y luego entrar a:' print 'http://localhost:8000/install.php' fi # Add local settings and files directory
cesarmiquel/mu-docker-drupal
build-site.sh
Shell
mit
1,464
/* * Copyright (C) 2008 Apple Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** * @constructor * @extends {WebInspector.Object} * @param {string} id * @param {string} name */ WebInspector.ProfileType = function(id, name) { WebInspector.Object.call(this); this._id = id; this._name = name; /** @type {!Array.<!WebInspector.ProfileHeader>} */ this._profiles = []; /** @type {?WebInspector.ProfileHeader} */ this._profileBeingRecorded = null; this._nextProfileUid = 1; window.addEventListener("unload", this._clearTempStorage.bind(this), false); } /** * @enum {string} */ WebInspector.ProfileType.Events = { AddProfileHeader: "add-profile-header", ProfileComplete: "profile-complete", RemoveProfileHeader: "remove-profile-header", ViewUpdated: "view-updated" } WebInspector.ProfileType.prototype = { /** * @return {boolean} */ hasTemporaryView: function() { return false; }, /** * @return {?string} */ fileExtension: function() { return null; }, get statusBarItems() { return []; }, get buttonTooltip() { return ""; }, get id() { return this._id; }, get treeItemTitle() { return this._name; }, get name() { return this._name; }, /** * @return {boolean} */ buttonClicked: function() { return false; }, get description() { return ""; }, /** * @return {boolean} */ isInstantProfile: function() { return false; }, /** * @return {boolean} */ isEnabled: function() { return true; }, /** * @return {!Array.<!WebInspector.ProfileHeader>} */ getProfiles: function() { /** * @param {!WebInspector.ProfileHeader} profile * @return {boolean} * @this {WebInspector.ProfileType} */ function isFinished(profile) { return this._profileBeingRecorded !== profile; } return this._profiles.filter(isFinished.bind(this)); }, /** * @return {?Element} */ decorationElement: function() { return null; }, /** * @nosideeffects * @param {number} uid * @return {?WebInspector.ProfileHeader} */ getProfile: function(uid) { for (var i = 0; i < this._profiles.length; ++i) { if (this._profiles[i].uid === uid) return this._profiles[i]; } return null; }, /** * @param {!File} file */ loadFromFile: function(file) { var name = file.name; if (name.endsWith(this.fileExtension())) name = name.substr(0, name.length - this.fileExtension().length); var profile = this.createProfileLoadedFromFile(name); profile.setFromFile(); this.setProfileBeingRecorded(profile); this.addProfile(profile); profile.loadFromFile(file); }, /** * @param {string} title * @return {!WebInspector.ProfileHeader} */ createProfileLoadedFromFile: function(title) { throw new Error("Needs implemented."); }, /** * @param {!WebInspector.ProfileHeader} profile */ addProfile: function(profile) { this._profiles.push(profile); this.dispatchEventToListeners(WebInspector.ProfileType.Events.AddProfileHeader, profile); }, /** * @param {!WebInspector.ProfileHeader} profile */ removeProfile: function(profile) { var index = this._profiles.indexOf(profile); if (index === -1) return; this._profiles.splice(index, 1); this._disposeProfile(profile); }, _clearTempStorage: function() { for (var i = 0; i < this._profiles.length; ++i) this._profiles[i].removeTempFile(); }, /** * @nosideeffects * @return {?WebInspector.ProfileHeader} */ profileBeingRecorded: function() { return this._profileBeingRecorded; }, /** * @param {?WebInspector.ProfileHeader} profile */ setProfileBeingRecorded: function(profile) { if (this._profileBeingRecorded) this._profileBeingRecorded.target().profilingLock.release(); if (profile) profile.target().profilingLock.acquire(); this._profileBeingRecorded = profile; }, profileBeingRecordedRemoved: function() { }, _reset: function() { var profiles = this._profiles.slice(0); for (var i = 0; i < profiles.length; ++i) this._disposeProfile(profiles[i]); this._profiles = []; this._nextProfileUid = 1; }, /** * @param {!WebInspector.ProfileHeader} profile */ _disposeProfile: function(profile) { this.dispatchEventToListeners(WebInspector.ProfileType.Events.RemoveProfileHeader, profile); profile.dispose(); if (this._profileBeingRecorded === profile) { this.profileBeingRecordedRemoved(); this.setProfileBeingRecorded(null); } }, __proto__: WebInspector.Object.prototype } /** * @interface */ WebInspector.ProfileType.DataDisplayDelegate = function() { } WebInspector.ProfileType.DataDisplayDelegate.prototype = { /** * @param {?WebInspector.ProfileHeader} profile * @return {?WebInspector.View} */ showProfile: function(profile) { }, /** * @param {!HeapProfilerAgent.HeapSnapshotObjectId} snapshotObjectId * @param {string} perspectiveName */ showObject: function(snapshotObjectId, perspectiveName) { } } /** * @constructor * @extends {WebInspector.TargetAwareObject} * @param {!WebInspector.Target} target * @param {!WebInspector.ProfileType} profileType * @param {string} title */ WebInspector.ProfileHeader = function(target, profileType, title) { WebInspector.TargetAwareObject.call(this, target); this._profileType = profileType; this.title = title; this.uid = profileType._nextProfileUid++; this._fromFile = false; } /** * @constructor * @param {?string} subtitle * @param {boolean|undefined} wait */ WebInspector.ProfileHeader.StatusUpdate = function(subtitle, wait) { /** @type {?string} */ this.subtitle = subtitle; /** @type {boolean|undefined} */ this.wait = wait; } WebInspector.ProfileHeader.Events = { UpdateStatus: "UpdateStatus", ProfileReceived: "ProfileReceived" } WebInspector.ProfileHeader.prototype = { /** * @return {!WebInspector.ProfileType} */ profileType: function() { return this._profileType; }, /** * @param {?string} subtitle * @param {boolean=} wait */ updateStatus: function(subtitle, wait) { this.dispatchEventToListeners(WebInspector.ProfileHeader.Events.UpdateStatus, new WebInspector.ProfileHeader.StatusUpdate(subtitle, wait)); }, /** * Must be implemented by subclasses. * @param {!WebInspector.ProfileType.DataDisplayDelegate} dataDisplayDelegate * @return {!WebInspector.ProfileSidebarTreeElement} */ createSidebarTreeElement: function(dataDisplayDelegate) { throw new Error("Needs implemented."); }, /** * @param {!WebInspector.ProfileType.DataDisplayDelegate} dataDisplayDelegate * @return {!WebInspector.View} */ createView: function(dataDisplayDelegate) { throw new Error("Not implemented."); }, removeTempFile: function() { if (this._tempFile) this._tempFile.remove(); }, dispose: function() { }, /** * @param {!Function} callback */ load: function(callback) { }, /** * @return {boolean} */ canSaveToFile: function() { return false; }, saveToFile: function() { throw new Error("Needs implemented"); }, /** * @param {!File} file */ loadFromFile: function(file) { throw new Error("Needs implemented"); }, /** * @return {boolean} */ fromFile: function() { return this._fromFile; }, setFromFile: function() { this._fromFile = true; }, __proto__: WebInspector.TargetAwareObject.prototype } /** * @constructor * @implements {WebInspector.Searchable} * @implements {WebInspector.ProfileType.DataDisplayDelegate} * @extends {WebInspector.PanelWithSidebarTree} */ WebInspector.ProfilesPanel = function() { WebInspector.PanelWithSidebarTree.call(this, "profiles"); this.registerRequiredCSS("panelEnablerView.css"); this.registerRequiredCSS("heapProfiler.css"); this.registerRequiredCSS("profilesPanel.css"); this._target = /** @type {!WebInspector.Target} */ (WebInspector.targetManager.activeTarget()); this._target.profilingLock.addEventListener(WebInspector.Lock.Events.StateChanged, this._onProfilingStateChanged, this); this._searchableView = new WebInspector.SearchableView(this); var mainView = new WebInspector.VBox(); this._searchableView.show(mainView.element); mainView.show(this.mainElement()); this.profilesItemTreeElement = new WebInspector.ProfilesSidebarTreeElement(this); this.sidebarTree.appendChild(this.profilesItemTreeElement); this.profileViews = document.createElement("div"); this.profileViews.id = "profile-views"; this.profileViews.classList.add("vbox"); this._searchableView.element.appendChild(this.profileViews); var statusBarContainer = document.createElementWithClass("div", "profiles-status-bar"); mainView.element.insertBefore(statusBarContainer, mainView.element.firstChild); this._statusBarElement = statusBarContainer.createChild("div", "status-bar"); this.sidebarElement().classList.add("profiles-sidebar-tree-box"); var statusBarContainerLeft = document.createElementWithClass("div", "profiles-status-bar"); this.sidebarElement().insertBefore(statusBarContainerLeft, this.sidebarElement().firstChild); this._statusBarButtons = statusBarContainerLeft.createChild("div", "status-bar"); this.recordButton = new WebInspector.StatusBarButton("", "record-profile-status-bar-item"); this.recordButton.addEventListener("click", this.toggleRecordButton, this); this._statusBarButtons.appendChild(this.recordButton.element); this.clearResultsButton = new WebInspector.StatusBarButton(WebInspector.UIString("Clear all profiles."), "clear-status-bar-item"); this.clearResultsButton.addEventListener("click", this._reset, this); this._statusBarButtons.appendChild(this.clearResultsButton.element); this._profileTypeStatusBarItemsContainer = this._statusBarElement.createChild("div"); this._profileViewStatusBarItemsContainer = this._statusBarElement.createChild("div"); this._profileGroups = {}; this._launcherView = new WebInspector.MultiProfileLauncherView(this); this._launcherView.addEventListener(WebInspector.MultiProfileLauncherView.EventTypes.ProfileTypeSelected, this._onProfileTypeSelected, this); this._profileToView = []; this._typeIdToSidebarSection = {}; var types = WebInspector.ProfileTypeRegistry.instance.profileTypes(); for (var i = 0; i < types.length; i++) this._registerProfileType(types[i]); this._launcherView.restoreSelectedProfileType(); this.profilesItemTreeElement.select(); this._showLauncherView(); this._createFileSelectorElement(); this.element.addEventListener("contextmenu", this._handleContextMenuEvent.bind(this), true); this._registerShortcuts(); this._configureCpuProfilerSamplingInterval(); WebInspector.settings.highResolutionCpuProfiling.addChangeListener(this._configureCpuProfilerSamplingInterval, this); } /** * @constructor */ WebInspector.ProfileTypeRegistry = function() { this._profileTypes = []; this.cpuProfileType = new WebInspector.CPUProfileType(); this._addProfileType(this.cpuProfileType); this.heapSnapshotProfileType = new WebInspector.HeapSnapshotProfileType(); this._addProfileType(this.heapSnapshotProfileType); this.trackingHeapSnapshotProfileType = new WebInspector.TrackingHeapSnapshotProfileType(); this._addProfileType(this.trackingHeapSnapshotProfileType); HeapProfilerAgent.enable(); if (Capabilities.isMainFrontend && WebInspector.experimentsSettings.canvasInspection.isEnabled()) { this.canvasProfileType = new WebInspector.CanvasProfileType(); this._addProfileType(this.canvasProfileType); } } WebInspector.ProfileTypeRegistry.prototype = { /** * @param {!WebInspector.ProfileType} profileType */ _addProfileType: function(profileType) { this._profileTypes.push(profileType); }, /** * @return {!Array.<!WebInspector.ProfileType>} */ profileTypes: function() { return this._profileTypes; } } WebInspector.ProfilesPanel.prototype = { /** * @return {!WebInspector.SearchableView} */ searchableView: function() { return this._searchableView; }, _createFileSelectorElement: function() { if (this._fileSelectorElement) this.element.removeChild(this._fileSelectorElement); this._fileSelectorElement = WebInspector.createFileSelectorElement(this._loadFromFile.bind(this)); this.element.appendChild(this._fileSelectorElement); }, _findProfileTypeByExtension: function(fileName) { var types = WebInspector.ProfileTypeRegistry.instance.profileTypes(); for (var i = 0; i < types.length; i++) { var type = types[i]; var extension = type.fileExtension(); if (!extension) continue; if (fileName.endsWith(type.fileExtension())) return type; } return null; }, _registerShortcuts: function() { this.registerShortcuts(WebInspector.ShortcutsScreen.ProfilesPanelShortcuts.StartStopRecording, this.toggleRecordButton.bind(this)); }, _configureCpuProfilerSamplingInterval: function() { var intervalUs = WebInspector.settings.highResolutionCpuProfiling.get() ? 100 : 1000; ProfilerAgent.setSamplingInterval(intervalUs, didChangeInterval); function didChangeInterval(error) { if (error) WebInspector.messageSink.addErrorMessage(error, true); } }, /** * @param {!File} file */ _loadFromFile: function(file) { this._createFileSelectorElement(); var profileType = this._findProfileTypeByExtension(file.name); if (!profileType) { var extensions = []; var types = WebInspector.ProfileTypeRegistry.instance.profileTypes(); for (var i = 0; i < types.length; i++) { var extension = types[i].fileExtension(); if (!extension || extensions.indexOf(extension) !== -1) continue; extensions.push(extension); } WebInspector.messageSink.addMessage(WebInspector.UIString("Can't load file. Only files with extensions '%s' can be loaded.", extensions.join("', '"))); return; } if (!!profileType.profileBeingRecorded()) { WebInspector.messageSink.addMessage(WebInspector.UIString("Can't load profile while another profile is recording.")); return; } profileType.loadFromFile(file); }, /** * @return {boolean} */ toggleRecordButton: function() { if (!this.recordButton.enabled()) return true; var type = this._selectedProfileType; var isProfiling = type.buttonClicked(); this._updateRecordButton(isProfiling); if (isProfiling) { this._launcherView.profileStarted(); if (type.hasTemporaryView()) this.showProfile(type.profileBeingRecorded()); } else { this._launcherView.profileFinished(); } return true; }, _onProfilingStateChanged: function() { this._updateRecordButton(this.recordButton.toggled); }, /** * @param {boolean} toggled */ _updateRecordButton: function(toggled) { var enable = toggled || !this._target.profilingLock.isAcquired(); this.recordButton.setEnabled(enable); this.recordButton.toggled = toggled; if (enable) this.recordButton.title = this._selectedProfileType ? this._selectedProfileType.buttonTooltip : ""; else this.recordButton.title = WebInspector.UIString("Another profiler is already active"); if (this._selectedProfileType) this._launcherView.updateProfileType(this._selectedProfileType, enable); }, _profileBeingRecordedRemoved: function() { this._updateRecordButton(false); this._launcherView.profileFinished(); }, /** * @param {!WebInspector.Event} event */ _onProfileTypeSelected: function(event) { this._selectedProfileType = /** @type {!WebInspector.ProfileType} */ (event.data); this._updateProfileTypeSpecificUI(); }, _updateProfileTypeSpecificUI: function() { this._updateRecordButton(this.recordButton.toggled); this._profileTypeStatusBarItemsContainer.removeChildren(); var statusBarItems = this._selectedProfileType.statusBarItems; if (statusBarItems) { for (var i = 0; i < statusBarItems.length; ++i) this._profileTypeStatusBarItemsContainer.appendChild(statusBarItems[i]); } }, _reset: function() { WebInspector.Panel.prototype.reset.call(this); var types = WebInspector.ProfileTypeRegistry.instance.profileTypes(); for (var i = 0; i < types.length; i++) types[i]._reset(); delete this.visibleView; delete this.currentQuery; this.searchCanceled(); this._profileGroups = {}; this._updateRecordButton(false); this._launcherView.profileFinished(); this.sidebarTree.element.classList.remove("some-expandable"); this._launcherView.detach(); this.profileViews.removeChildren(); this._profileViewStatusBarItemsContainer.removeChildren(); this.removeAllListeners(); this.recordButton.visible = true; this._profileViewStatusBarItemsContainer.classList.remove("hidden"); this.clearResultsButton.element.classList.remove("hidden"); this.profilesItemTreeElement.select(); this._showLauncherView(); }, _showLauncherView: function() { this.closeVisibleView(); this._profileViewStatusBarItemsContainer.removeChildren(); this._launcherView.show(this.profileViews); this.visibleView = this._launcherView; }, _garbageCollectButtonClicked: function() { HeapProfilerAgent.collectGarbage(); }, /** * @param {!WebInspector.ProfileType} profileType */ _registerProfileType: function(profileType) { this._launcherView.addProfileType(profileType); var profileTypeSection = new WebInspector.ProfileTypeSidebarSection(this, profileType); this._typeIdToSidebarSection[profileType.id] = profileTypeSection this.sidebarTree.appendChild(profileTypeSection); profileTypeSection.childrenListElement.addEventListener("contextmenu", this._handleContextMenuEvent.bind(this), true); /** * @param {!WebInspector.Event} event * @this {WebInspector.ProfilesPanel} */ function onAddProfileHeader(event) { this._addProfileHeader(/** @type {!WebInspector.ProfileHeader} */ (event.data)); } /** * @param {!WebInspector.Event} event * @this {WebInspector.ProfilesPanel} */ function onRemoveProfileHeader(event) { this._removeProfileHeader(/** @type {!WebInspector.ProfileHeader} */ (event.data)); } /** * @param {!WebInspector.Event} event * @this {WebInspector.ProfilesPanel} */ function profileComplete(event) { this.showProfile(/** @type {!WebInspector.ProfileHeader} */ (event.data)); } profileType.addEventListener(WebInspector.ProfileType.Events.ViewUpdated, this._updateProfileTypeSpecificUI, this); profileType.addEventListener(WebInspector.ProfileType.Events.AddProfileHeader, onAddProfileHeader, this); profileType.addEventListener(WebInspector.ProfileType.Events.RemoveProfileHeader, onRemoveProfileHeader, this); profileType.addEventListener(WebInspector.ProfileType.Events.ProfileComplete, profileComplete, this); var profiles = profileType.getProfiles(); for (var i = 0; i < profiles.length; i++) this._addProfileHeader(profiles[i]); }, /** * @param {?Event} event */ _handleContextMenuEvent: function(event) { var element = event.srcElement; while (element && !element.treeElement && element !== this.element) element = element.parentElement; if (!element) return; if (element.treeElement && element.treeElement.handleContextMenuEvent) { element.treeElement.handleContextMenuEvent(event, this); return; } var contextMenu = new WebInspector.ContextMenu(event); if (this.visibleView instanceof WebInspector.HeapSnapshotView) { this.visibleView.populateContextMenu(contextMenu, event); } if (element !== this.element || event.srcElement === this.sidebarElement()) { contextMenu.appendItem(WebInspector.UIString("Load\u2026"), this._fileSelectorElement.click.bind(this._fileSelectorElement)); } contextMenu.show(); }, showLoadFromFileDialog: function() { this._fileSelectorElement.click(); }, /** * @param {!WebInspector.ProfileHeader} profile */ _addProfileHeader: function(profile) { var profileType = profile.profileType(); var typeId = profileType.id; this._typeIdToSidebarSection[typeId].addProfileHeader(profile); if (!this.visibleView || this.visibleView === this._launcherView) this.showProfile(profile); }, /** * @param {!WebInspector.ProfileHeader} profile */ _removeProfileHeader: function(profile) { if (profile.profileType()._profileBeingRecorded === profile) this._profileBeingRecordedRemoved(); var i = this._indexOfViewForProfile(profile); if (i !== -1) this._profileToView.splice(i, 1); var profileType = profile.profileType(); var typeId = profileType.id; var sectionIsEmpty = this._typeIdToSidebarSection[typeId].removeProfileHeader(profile); // No other item will be selected if there aren't any other profiles, so // make sure that view gets cleared when the last profile is removed. if (sectionIsEmpty) { this.profilesItemTreeElement.select(); this._showLauncherView(); } }, /** * @param {?WebInspector.ProfileHeader} profile * @return {?WebInspector.View} */ showProfile: function(profile) { if (!profile || (profile.profileType().profileBeingRecorded() === profile) && !profile.profileType().hasTemporaryView()) return null; var view = this._viewForProfile(profile); if (view === this.visibleView) return view; this.closeVisibleView(); view.show(this.profileViews); this.visibleView = view; var profileTypeSection = this._typeIdToSidebarSection[profile.profileType().id]; var sidebarElement = profileTypeSection.sidebarElementForProfile(profile); sidebarElement.revealAndSelect(); this._profileViewStatusBarItemsContainer.removeChildren(); var statusBarItems = view.statusBarItems; if (statusBarItems) for (var i = 0; i < statusBarItems.length; ++i) this._profileViewStatusBarItemsContainer.appendChild(statusBarItems[i]); return view; }, /** * @param {!HeapProfilerAgent.HeapSnapshotObjectId} snapshotObjectId * @param {string} perspectiveName */ showObject: function(snapshotObjectId, perspectiveName) { var heapProfiles = WebInspector.ProfileTypeRegistry.instance.heapSnapshotProfileType.getProfiles(); for (var i = 0; i < heapProfiles.length; i++) { var profile = heapProfiles[i]; // FIXME: allow to choose snapshot if there are several options. if (profile.maxJSObjectId >= snapshotObjectId) { this.showProfile(profile); var view = this._viewForProfile(profile); view.highlightLiveObject(perspectiveName, snapshotObjectId); break; } } }, /** * @param {!WebInspector.ProfileHeader} profile * @return {!WebInspector.View} */ _viewForProfile: function(profile) { var index = this._indexOfViewForProfile(profile); if (index !== -1) return this._profileToView[index].view; var view = profile.createView(this); view.element.classList.add("profile-view"); this._profileToView.push({ profile: profile, view: view}); return view; }, /** * @param {!WebInspector.ProfileHeader} profile * @return {number} */ _indexOfViewForProfile: function(profile) { for (var i = 0; i < this._profileToView.length; i++) { if (this._profileToView[i].profile === profile) return i; } return -1; }, closeVisibleView: function() { if (this.visibleView) this.visibleView.detach(); delete this.visibleView; }, /** * @param {string} query * @param {boolean} shouldJump * @param {boolean=} jumpBackwards */ performSearch: function(query, shouldJump, jumpBackwards) { this.searchCanceled(); var visibleView = this.visibleView; if (!visibleView) return; /** * @this {WebInspector.ProfilesPanel} */ function finishedCallback(view, searchMatches) { if (!searchMatches) return; this._searchableView.updateSearchMatchesCount(searchMatches); this._searchResultsView = view; if (shouldJump) { if (jumpBackwards) view.jumpToLastSearchResult(); else view.jumpToFirstSearchResult(); this._searchableView.updateCurrentMatchIndex(view.currentSearchResultIndex()); } } visibleView.currentQuery = query; visibleView.performSearch(query, finishedCallback.bind(this)); }, jumpToNextSearchResult: function() { if (!this._searchResultsView) return; if (this._searchResultsView !== this.visibleView) return; this._searchResultsView.jumpToNextSearchResult(); this._searchableView.updateCurrentMatchIndex(this._searchResultsView.currentSearchResultIndex()); }, jumpToPreviousSearchResult: function() { if (!this._searchResultsView) return; if (this._searchResultsView !== this.visibleView) return; this._searchResultsView.jumpToPreviousSearchResult(); this._searchableView.updateCurrentMatchIndex(this._searchResultsView.currentSearchResultIndex()); }, searchCanceled: function() { if (this._searchResultsView) { if (this._searchResultsView.searchCanceled) this._searchResultsView.searchCanceled(); this._searchResultsView.currentQuery = null; this._searchResultsView = null; } this._searchableView.updateSearchMatchesCount(0); }, /** * @param {!Event} event * @param {!WebInspector.ContextMenu} contextMenu * @param {!Object} target */ appendApplicableItems: function(event, contextMenu, target) { if (!(target instanceof WebInspector.RemoteObject)) return; if (WebInspector.inspectorView.currentPanel() !== this) return; var object = /** @type {!WebInspector.RemoteObject} */ (target); var objectId = object.objectId; if (!objectId) return; var heapProfiles = WebInspector.ProfileTypeRegistry.instance.heapSnapshotProfileType.getProfiles(); if (!heapProfiles.length) return; /** * @this {WebInspector.ProfilesPanel} */ function revealInView(viewName) { HeapProfilerAgent.getHeapObjectId(objectId, didReceiveHeapObjectId.bind(this, viewName)); } /** * @this {WebInspector.ProfilesPanel} */ function didReceiveHeapObjectId(viewName, error, result) { if (WebInspector.inspectorView.currentPanel() !== this) return; if (!error) this.showObject(result, viewName); } if (WebInspector.settings.showAdvancedHeapSnapshotProperties.get()) contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Reveal in Dominators view" : "Reveal in Dominators View"), revealInView.bind(this, "Dominators")); contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Reveal in Summary view" : "Reveal in Summary View"), revealInView.bind(this, "Summary")); }, __proto__: WebInspector.PanelWithSidebarTree.prototype } /** * @constructor * @extends {WebInspector.SidebarSectionTreeElement} * @param {!WebInspector.ProfileType.DataDisplayDelegate} dataDisplayDelegate * @param {!WebInspector.ProfileType} profileType */ WebInspector.ProfileTypeSidebarSection = function(dataDisplayDelegate, profileType) { WebInspector.SidebarSectionTreeElement.call(this, profileType.treeItemTitle, null, true); this._dataDisplayDelegate = dataDisplayDelegate; this._profileTreeElements = []; this._profileGroups = {}; this.hidden = true; } /** * @constructor */ WebInspector.ProfileTypeSidebarSection.ProfileGroup = function() { this.profileSidebarTreeElements = []; this.sidebarTreeElement = null; } WebInspector.ProfileTypeSidebarSection.prototype = { /** * @param {!WebInspector.ProfileHeader} profile */ addProfileHeader: function(profile) { this.hidden = false; var profileType = profile.profileType(); var sidebarParent = this; var profileTreeElement = profile.createSidebarTreeElement(this._dataDisplayDelegate); this._profileTreeElements.push(profileTreeElement); if (!profile.fromFile() && profileType.profileBeingRecorded() !== profile) { var profileTitle = profile.title; var group = this._profileGroups[profileTitle]; if (!group) { group = new WebInspector.ProfileTypeSidebarSection.ProfileGroup(); this._profileGroups[profileTitle] = group; } group.profileSidebarTreeElements.push(profileTreeElement); var groupSize = group.profileSidebarTreeElements.length; if (groupSize === 2) { // Make a group TreeElement now that there are 2 profiles. group.sidebarTreeElement = new WebInspector.ProfileGroupSidebarTreeElement(this._dataDisplayDelegate, profile.title); var firstProfileTreeElement = group.profileSidebarTreeElements[0]; // Insert at the same index for the first profile of the group. var index = this.children.indexOf(firstProfileTreeElement); this.insertChild(group.sidebarTreeElement, index); // Move the first profile to the group. var selected = firstProfileTreeElement.selected; this.removeChild(firstProfileTreeElement); group.sidebarTreeElement.appendChild(firstProfileTreeElement); if (selected) firstProfileTreeElement.revealAndSelect(); firstProfileTreeElement.small = true; firstProfileTreeElement.mainTitle = WebInspector.UIString("Run %d", 1); this.treeOutline.element.classList.add("some-expandable"); } if (groupSize >= 2) { sidebarParent = group.sidebarTreeElement; profileTreeElement.small = true; profileTreeElement.mainTitle = WebInspector.UIString("Run %d", groupSize); } } sidebarParent.appendChild(profileTreeElement); }, /** * @param {!WebInspector.ProfileHeader} profile * @return {boolean} */ removeProfileHeader: function(profile) { var index = this._sidebarElementIndex(profile); if (index === -1) return false; var profileTreeElement = this._profileTreeElements[index]; this._profileTreeElements.splice(index, 1); var sidebarParent = this; var group = this._profileGroups[profile.title]; if (group) { var groupElements = group.profileSidebarTreeElements; groupElements.splice(groupElements.indexOf(profileTreeElement), 1); if (groupElements.length === 1) { // Move the last profile out of its group and remove the group. var pos = sidebarParent.children.indexOf(group.sidebarTreeElement); this.insertChild(groupElements[0], pos); groupElements[0].small = false; groupElements[0].mainTitle = group.sidebarTreeElement.title; this.removeChild(group.sidebarTreeElement); } if (groupElements.length !== 0) sidebarParent = group.sidebarTreeElement; } sidebarParent.removeChild(profileTreeElement); profileTreeElement.dispose(); if (this.children.length) return false; this.hidden = true; return true; }, /** * @param {!WebInspector.ProfileHeader} profile * @return {?WebInspector.ProfileSidebarTreeElement} */ sidebarElementForProfile: function(profile) { var index = this._sidebarElementIndex(profile); return index === -1 ? null : this._profileTreeElements[index]; }, /** * @param {!WebInspector.ProfileHeader} profile * @return {number} */ _sidebarElementIndex: function(profile) { var elements = this._profileTreeElements; for (var i = 0; i < elements.length; i++) { if (elements[i].profile === profile) return i; } return -1; }, __proto__: WebInspector.SidebarSectionTreeElement.prototype } /** * @constructor * @implements {WebInspector.ContextMenu.Provider} */ WebInspector.ProfilesPanel.ContextMenuProvider = function() { } WebInspector.ProfilesPanel.ContextMenuProvider.prototype = { /** * @param {!Event} event * @param {!WebInspector.ContextMenu} contextMenu * @param {!Object} target */ appendApplicableItems: function(event, contextMenu, target) { WebInspector.inspectorView.panel("profiles").appendApplicableItems(event, contextMenu, target); } } /** * @constructor * @extends {WebInspector.SidebarTreeElement} * @param {!WebInspector.ProfileType.DataDisplayDelegate} dataDisplayDelegate * @param {!WebInspector.ProfileHeader} profile * @param {string} className */ WebInspector.ProfileSidebarTreeElement = function(dataDisplayDelegate, profile, className) { this._dataDisplayDelegate = dataDisplayDelegate; this.profile = profile; WebInspector.SidebarTreeElement.call(this, className, profile.title, "", profile, false); this.refreshTitles(); profile.addEventListener(WebInspector.ProfileHeader.Events.UpdateStatus, this._updateStatus, this); if (profile.canSaveToFile()) this._createSaveLink(); else profile.addEventListener(WebInspector.ProfileHeader.Events.ProfileReceived, this._onProfileReceived, this); } WebInspector.ProfileSidebarTreeElement.prototype = { _createSaveLink: function() { this._saveLinkElement = this.titleContainer.createChild("span", "save-link"); this._saveLinkElement.textContent = WebInspector.UIString("Save"); this._saveLinkElement.addEventListener("click", this._saveProfile.bind(this), false); }, _onProfileReceived: function(event) { this._createSaveLink(); }, /** * @param {!WebInspector.Event} event */ _updateStatus: function(event) { var statusUpdate = event.data; if (statusUpdate.subtitle !== null) this.subtitle = statusUpdate.subtitle; if (typeof statusUpdate.wait === "boolean") this.wait = statusUpdate.wait; this.refreshTitles(); }, dispose: function() { this.profile.removeEventListener(WebInspector.ProfileHeader.Events.UpdateStatus, this._updateStatus, this); this.profile.removeEventListener(WebInspector.ProfileHeader.Events.ProfileReceived, this._onProfileReceived, this); }, onselect: function() { this._dataDisplayDelegate.showProfile(this.profile); }, /** * @return {boolean} */ ondelete: function() { this.profile.profileType().removeProfile(this.profile); return true; }, /** * @param {!Event} event * @param {!WebInspector.ProfilesPanel} panel */ handleContextMenuEvent: function(event, panel) { var profile = this.profile; var contextMenu = new WebInspector.ContextMenu(event); // FIXME: use context menu provider contextMenu.appendItem(WebInspector.UIString("Load\u2026"), panel._fileSelectorElement.click.bind(panel._fileSelectorElement)); if (profile.canSaveToFile()) contextMenu.appendItem(WebInspector.UIString("Save\u2026"), profile.saveToFile.bind(profile)); contextMenu.appendItem(WebInspector.UIString("Delete"), this.ondelete.bind(this)); contextMenu.show(); }, _saveProfile: function(event) { this.profile.saveToFile(); }, __proto__: WebInspector.SidebarTreeElement.prototype } /** * @constructor * @extends {WebInspector.SidebarTreeElement} * @param {!WebInspector.ProfileType.DataDisplayDelegate} dataDisplayDelegate * @param {string} title * @param {string=} subtitle */ WebInspector.ProfileGroupSidebarTreeElement = function(dataDisplayDelegate, title, subtitle) { WebInspector.SidebarTreeElement.call(this, "profile-group-sidebar-tree-item", title, subtitle, null, true); this._dataDisplayDelegate = dataDisplayDelegate; } WebInspector.ProfileGroupSidebarTreeElement.prototype = { onselect: function() { if (this.children.length > 0) this._dataDisplayDelegate.showProfile(this.children[this.children.length - 1].profile); }, __proto__: WebInspector.SidebarTreeElement.prototype } /** * @constructor * @extends {WebInspector.SidebarTreeElement} * @param {!WebInspector.ProfilesPanel} panel */ WebInspector.ProfilesSidebarTreeElement = function(panel) { this._panel = panel; this.small = false; WebInspector.SidebarTreeElement.call(this, "profile-launcher-view-tree-item", WebInspector.UIString("Profiles"), "", null, false); } WebInspector.ProfilesSidebarTreeElement.prototype = { onselect: function() { this._panel._showLauncherView(); }, get selectable() { return true; }, __proto__: WebInspector.SidebarTreeElement.prototype } importScript("../sdk/CPUProfileModel.js"); importScript("CPUProfileDataGrid.js"); importScript("CPUProfileBottomUpDataGrid.js"); importScript("CPUProfileTopDownDataGrid.js"); importScript("CPUProfileFlameChart.js"); importScript("CPUProfileView.js"); importScript("HeapSnapshotCommon.js"); importScript("HeapSnapshotProxy.js"); importScript("HeapSnapshotDataGrids.js"); importScript("HeapSnapshotGridNodes.js"); importScript("HeapSnapshotView.js"); importScript("ProfileLauncherView.js"); importScript("CanvasProfileView.js"); importScript("CanvasReplayStateView.js"); WebInspector.ProfileTypeRegistry.instance = new WebInspector.ProfileTypeRegistry();
buglloc/ios-debug-proxy-devtools
profiler/ProfilesPanel.js
JavaScript
mit
42,236
//============================================================================= // Darken Region // LAX_DarkenRegion.js // v0.02 //============================================================================= //============================================================================= /*: * @plugindesc v0.02 Use regions to black out areas. * @author LuciusAxelrod * * * @help * Place regions on the map in the editor, then either add them to the default * list or add them to the dark region list using the add command listed below. * Note: Tiles without a region are in region 0. Adding region 0 to the dark * region list will black out every tile * * Plugin Commands: * DarkenRegion add [region list] # Adds the listed regions to the dark * region list. The list is space * separated. For example: * DarkenRegion add 1 3 5 78 * DarkenRegion remove [region list] # Removes the listed regions from the * dark region list. The list is space * separated. For example: * DarkenRegion remove 4 7 200 2 * DarkenRegion toggle [region list] # Toggle on/off each of the listed * regions. For example: * DarkenRegion toggle 1 5 7 112 250 * DarkenRegion clear # Clears the dark region list. */ //============================================================================= //============================================================================= // Parameter Variables //============================================================================= (function() { var _Game_Interpreter_pluginCommand = Game_Interpreter.prototype.pluginCommand; Game_Interpreter.prototype.pluginCommand = function(command, args) { _Game_Interpreter_pluginCommand.call(this, command, args); if (command === 'DarkenRegion') { if(args[0] === 'add') { for(var i = 1; i < args.length; i++) { $gameSystem.addToDarkList(args[i]); } } else if(args[0] === 'remove') { for(var i = 1; i < args.length; i++) { $gameSystem.removeFromDarkList(args[i]); } } else if(args[0] === 'toggle') { for(var i = 1; i < args.length; i++) { if($gameSystem.isDarkRegion(args[i])) { $gameSystem.removeFromDarkList(args[i]); } else { $gameSystem.addToDarkList(args[i]); } } } else if(args[0] === 'clear') { $gameSystem.clearDarkList(); } } }; Game_System.prototype.isDarkRegion = function(regionId) { if(this._darkList) { return !!this._darkList[regionId]; } } Game_System.prototype.addToDarkList = function(regionId) { if(!this._darkList) { this.clearDarkList(); } this._darkList[Number(regionId)] = true; } Game_System.prototype.removeFromDarkList = function(regionId) { if(this._darkList) { this._darkList[Number(regionId)] = false; } } Game_System.prototype.clearDarkList = function() { this._darkList = []; } Tilemap.prototype._paintTiles = function(startX, startY, x, y) { var tableEdgeVirtualId = 10000; var darkRegionVirtualId = 10000; var mx = startX + x; var my = startY + y; var dx = (mx * this._tileWidth).mod(this._layerWidth); var dy = (my * this._tileHeight).mod(this._layerHeight); var lx = dx / this._tileWidth; var ly = dy / this._tileHeight; var tileId0 = this._readMapData(mx, my, 0); var tileId1 = this._readMapData(mx, my, 1); var tileId2 = this._readMapData(mx, my, 2); var tileId3 = this._readMapData(mx, my, 3); var tileId5 = this._readMapData(mx, my, 5); var shadowBits = this._readMapData(mx, my, 4); var upperTileId1 = this._readMapData(mx, my - 1, 1); var lowerTiles = []; var upperTiles = []; if (this._isHigherTile(tileId0)) { upperTiles.push(tileId0); } else { lowerTiles.push(tileId0); } if (this._isHigherTile(tileId1)) { upperTiles.push(tileId1); } else { lowerTiles.push(tileId1); } lowerTiles.push(-shadowBits); if (this._isTableTile(upperTileId1) && !this._isTableTile(tileId1)) { if (!Tilemap.isShadowingTile(tileId0)) { lowerTiles.push(tableEdgeVirtualId + upperTileId1); } } if (this._isOverpassPosition(mx, my)) { upperTiles.push(tileId2); upperTiles.push(tileId3); } else { if (this._isHigherTile(tileId2)) { upperTiles.push(tileId2); } else { lowerTiles.push(tileId2); } if (this._isHigherTile(tileId3)) { upperTiles.push(tileId3); } else { lowerTiles.push(tileId3); } if($gameSystem.isDarkRegion(tileId5)){ upperTiles.push(darkRegionVirtualId + tileId5); } } var lastLowerTiles = this._readLastTiles(0, lx, ly); if (!lowerTiles.equals(lastLowerTiles) || (Tilemap.isTileA1(tileId0) && this._frameUpdated)) { this._lowerBitmap.clearRect(dx, dy, this._tileWidth, this._tileHeight); for (var i = 0; i < lowerTiles.length; i++) { var lowerTileId = lowerTiles[i]; if (lowerTileId < 0) { this._drawShadow(this._lowerBitmap, shadowBits, dx, dy); } else if (lowerTileId >= tableEdgeVirtualId) { this._drawTableEdge(this._lowerBitmap, upperTileId1, dx, dy); } else { this._drawTile(this._lowerBitmap, lowerTileId, dx, dy); } } this._writeLastTiles(0, lx, ly, lowerTiles); } var lastUpperTiles = this._readLastTiles(1, lx, ly); if (!upperTiles.equals(lastUpperTiles)) { this._upperBitmap.clearRect(dx, dy, this._tileWidth, this._tileHeight); for (var j = 0; j < upperTiles.length; j++) { if(upperTiles[j] >= darkRegionVirtualId) { this._drawDarkness(this._upperBitmap, dx, dy); } else { this._drawTile(this._upperBitmap, upperTiles[j], dx, dy); } } this._writeLastTiles(1, lx, ly, upperTiles); } }; Tilemap.prototype._drawDarkness = function(bitmap, dx, dy) { var w = this._tileWidth; var h = this._tileHeight; var color = 'rgba(0,0,0,1)'; bitmap.fillRect(dx, dy, w, h, color); }; })();
LuciusAxelrod/LAX_Plugins
LAX_DarkenRegion/v0.02/LAX_DarkenRegion.js
JavaScript
mit
6,112
<!DOCTYPE html> <html> <h1>Sensor Data</h1> </center> <table> <tr> <td>Temperature</td> <td> <input id="temperature" type="text" value=""> </td> </tr> <tr> <td>Precipitation</td> <td> <input id="precipitation" type="text" value=""> </td> </tr> <tr> <td>Humidity</td> <td> <input id="humidity" type="text" value=""> </td> </tr> <tr> <td>Wind</td> <td> <input id="wind" type="text" value=""> </td> </tr> <tr> <td></td> <td> <button id="save" onclick="saveWeather()">Save</button> <button id="clear" onclick="clearForm()">Clear</button> <button id="read" onclick="readWeather()">Read</button> </td> </tr> </table> </center> <script> var saveWeather = function(){ }; var readWeather = function(){ }; var clearForm = function(){ }; </script> </html>
onexi/onexi.github.io
abel/35_local_storage/inclass/exercise_01.html
HTML
mit
782
"use strict"; (function() { function get_promise(endpoint) { return function($http) { return $http.get(endpoint); }; } angular.module('pagerbot-admin', ['ngRoute', 'ngTable', 'angular-loading-bar']) .config(function ($routeProvider) { $routeProvider .when('/intro', { templateUrl: 'views/intro.html', controller: 'PagerdutyCtrl', resolve: { pd: function(pagerduty_promise) { return pagerduty_promise; } } }) .when('/chatbot-settings', { templateUrl: 'views/bot.html', controller: 'BotSetupCtrl', resolve: { bot_info: get_promise('/api/bot') } }) .when('/plugin-setup', { templateUrl: 'views/plugins.html', controller: 'PluginSetupCtrl', resolve: { plugin_info: get_promise('/api/plugins') } }) .when('/user-aliases', { templateUrl: 'views/users.html', controller: 'UserAliasCtrl', resolve: { users: get_promise('/api/users') } }) .when('/schedule-aliases', { templateUrl: 'views/schedules.html', controller: 'ScheduleAliasCtrl', resolve: { schedules: get_promise('/api/schedules') } }) .when('/deploy', { templateUrl: 'views/deploy.html', controller: 'DeployCtrl' }) .otherwise({ redirectTo: '/intro' }); }); })();
stripe-contrib/pagerbot
public/js/app.js
JavaScript
mit
1,579
<?php /** * AAddress filter form. * * @package alumni * @subpackage filter * @author E.R. Nurwijayadi * @version 1.0 */ class AAddressFormFilter extends BaseAAddressFormFilter { /** * @see AddressFormFilter */ static protected $order_by_choices = array( null => '', 6 => 'ID', 21 => 'Name (Alumna/us)', '' => '----------', 60 => 'Address', 61 => 'Region', 63 => 'Code: Country', 64 => 'Code: Province', 65 => 'Code: District', 66 => 'Postal Code', 67 => 'Street', 68 => 'Area', 69 => 'Building' ); public function configure() { $this->widgetSchema->setFormFormatterName('list'); $this->disableCSRFProtection(); $this->addAllCommunityFields($this); $this->widgetSchema['order_by'] = new sfWidgetFormChoice(array( 'choices' => self::$order_by_choices)); $this->validatorSchema['order_by'] = new sfValidatorPass(); $this->widgetSchema['department_id'] = new sfWidgetFormChoice(array( 'choices' => array(null => '') )); $this->useFields(array( 'department_id', 'faculty_id', 'program_id', 'class_year', 'decade', 'order_by' )); $query = Doctrine_Core::getTable('AAddress') ->createQuery('r') ->leftJoin('r.Country n') ->leftJoin('r.Province p') ->leftJoin('r.District w') ->leftJoin('r.Alumni a') ->leftJoin('a.ACommunities ac'); $this->setQuery($query); } public function addOrderByColumnQuery(Doctrine_Query $query, $field, $values) { $order_by_choices = array( 6 => 'r.lid', 21 => 'a.name', 60 => 'r.address', 61 => 'r.region', 63 => 'r.country_id', 64 => 'r.province_id', 65 => 'r.district_id', 66 => 'r.postal_code', 67 => 'r.street', 68 => 'r.area', 69 => 'r.building' ); if ( array_key_exists($values, $order_by_choices) ) $query->orderBy( $order_by_choices[$values] ); } /* This parts needs Trait in PHP 5.4 */ public function addDepartmentIdColumnQuery(Doctrine_Query $query, $field, $values) { if (!empty($values) ) $query->andWhere('ac.department_id = ?', $values); } public function addFacultyIdColumnQuery(Doctrine_Query $query, $field, $values) { if (!empty($values) ) $query->andWhere('ac.faculty_id = ?', $values); } public function addProgramIdColumnQuery(Doctrine_Query $query, $field, $values) { if (!empty($values) ) $query->andWhere('ac.program_id = ?', $values); } public function addClassYearColumnQuery(Doctrine_Query $query, $field, $values) { if (!empty($values['text']) ) $query->andWhere('ac.class_year = ?', $values['text']); } public function addDecadeColumnQuery(Doctrine_Query $query, $field, $values) { $decades = array(1960, 1970, 1980, 1990, 2000, 2010); if ( in_array( $values, $decades ) ) { $query->andWhere('ac.class_year >= ?', $values); $query->andWhere('ac.class_year <= ?', $values+9); } } }
epsi-rns/AlumniBook-SF
lib/filter/doctrine/AAddressFormFilter.class.php
PHP
mit
2,921
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class DailySeedAndCleanup extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('featured_games', function (Blueprint $table) { $table->increments('id'); $table->date('day')->unique(); $table->integer('seed_id'); $table->string('description')->default(''); $table->timestamps(); }); Schema::table('seeds', function (Blueprint $table) { $table->dropColumn(['patch']); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('seeds', function (Blueprint $table) { $table->json('patch'); }); Schema::dropIfExists('featured_games'); } }
sporchia/alttp_vt_randomizer
database/migrations/2017_11_17_174259_daily_seed_and_cleanup.php
PHP
mit
972
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); /** * Default theme for reveal.js. * * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se */ @font-face { font-family: 'League Gothic'; src: url("../../lib/font/league_gothic-webfont.eot"); src: url("../../lib/font/league_gothic-webfont.eot?#iefix") format("embedded-opentype"), url("../../lib/font/league_gothic-webfont.woff") format("woff"), url("../../lib/font/league_gothic-webfont.ttf") format("truetype"), url("../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular") format("svg"); font-weight: normal; font-style: normal; } /********************************************* * GLOBAL STYLES *********************************************/ body { background: #1c1e20; background: -moz-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%); background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #555a5f), color-stop(100%, #1c1e20)); background: -webkit-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%); background: -o-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%); background: -ms-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%); background: radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%); background-color: #2b2b2b; } .reveal { font-family: "Lato", sans-serif; font-size: 36px; font-weight: normal; letter-spacing: -0.02em; color: #eeeeee; } ::selection { color: white; background: #ff5e99; text-shadow: none; } /********************************************* * HEADERS *********************************************/ .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 { margin: 0 0 20px 0; color: #eeeeee; font-family: "Lato", Helvetica, sans-serif; line-height: 0.9em; letter-spacing: 0.02em; font-weight: 700; text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); } .reveal h1 { text-shadow: 0 1px 0 #cccccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbbbbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaaaaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); } /********************************************* * LINKS *********************************************/ .reveal a:not(.image) { color: #13daec; text-decoration: none; -webkit-transition: color .15s ease; -moz-transition: color .15s ease; -ms-transition: color .15s ease; -o-transition: color .15s ease; transition: color .15s ease; } .reveal a:not(.image):hover { color: #71e9f4; text-shadow: none; border: none; } .reveal .roll span:after { color: #fff; background: #0d99a5; } /********************************************* * IMAGES *********************************************/ .reveal section img { margin: 15px 0px; background: rgba(255, 255, 255, 0.12); border: 4px solid #eeeeee; box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); -webkit-transition: all .2s linear; -moz-transition: all .2s linear; -ms-transition: all .2s linear; -o-transition: all .2s linear; transition: all .2s linear; } .reveal a:hover img { background: rgba(255, 255, 255, 0.2); border-color: #13daec; box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } /********************************************* * NAVIGATION CONTROLS *********************************************/ .reveal .controls div.navigate-left, .reveal .controls div.navigate-left.enabled { border-right-color: #13daec; } .reveal .controls div.navigate-right, .reveal .controls div.navigate-right.enabled { border-left-color: #13daec; } .reveal .controls div.navigate-up, .reveal .controls div.navigate-up.enabled { border-bottom-color: #13daec; } .reveal .controls div.navigate-down, .reveal .controls div.navigate-down.enabled { border-top-color: #13daec; } .reveal .controls div.navigate-left.enabled:hover { border-right-color: #71e9f4; } .reveal .controls div.navigate-right.enabled:hover { border-left-color: #71e9f4; } .reveal .controls div.navigate-up.enabled:hover { border-bottom-color: #71e9f4; } .reveal .controls div.navigate-down.enabled:hover { border-top-color: #71e9f4; } /********************************************* * PROGRESS BAR *********************************************/ .reveal .progress { background: rgba(0, 0, 0, 0.2); } .reveal .progress span { background: #13daec; -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } /********************************************* * SLIDE NUMBER *********************************************/ .reveal .slide-number { color: #13daec; }
pablocubico/fosdem2015
css/theme/default.css
CSS
mit
5,125
<?php namespace GEPedag\EntidadesBundle\Controller; use Symfony\Component\HttpFoundation\Request; use Symfony\Bundle\FrameworkBundle\Controller\Controller; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template; use GEPedag\EntidadesBundle\Entity\Asignatura; use GEPedag\EntidadesBundle\Form\AsignaturaType; class AsignaturaController extends Controller { /** * @Method("GET") * @Template() */ public function indexAction() { $em = $this->getDoctrine()->getManager(); $entities = $em->getRepository('GEPedagEntidadesBundle:Asignatura')->findAll(); return [ 'entities' => $entities ]; } /** * @Method("POST") */ public function createAction(Request $request) { $asignatura = new Asignatura(); $form = $this->createForm(new AsignaturaType(), $asignatura); $form->handleRequest($request); if ($form->isValid()) { $em = $this->getDoctrine()->getManager(); $em->persist($asignatura); $em->flush(); $this->get('session')->getFlashBag()->add( 'success', 'La asignatura <i>' . $asignatura . '</i> se ha creado con éxito!'); return $this->redirect($this->generateUrl('ge_asign_homepage')); } // print_r($form->getErrors());die; // foreach ($form->getErrors() as $error) { // } $this->get('session')->getFlashBag()->add('error', 'Error al registrar la asignatura.'); return $this->redirect($this->generateUrl('ge_asign_homepage')); } /** * @Method("GET") * @Template("GEPedagEntidadesBundle:Asignatura:new_edit.html.twig") */ public function newAction() { $asignatura = new Asignatura(); $titulo = 'Crear'; $form = $this->createForm(new AsignaturaType(), $asignatura); $form->add('submit', 'submit', array('label' => $titulo)); return [ 'action' => $this->generateUrl('ge_asign_create'), 'entity' => $asignatura, 'form' => $form->createView(), 'titulo' => $titulo, ]; } /** * @Method("GET") */ public function editAction($id) { $titulo = 'Actualizar'; $em = $this->getDoctrine()->getManager(); $asignatura = $em->getRepository('GEPedagEntidadesBundle:Asignatura')->find($id); if (!$asignatura) { throw $this->createNotFoundException('No existe la Asignatura con id: ' . $id); } $editForm = $this->createForm(new AsignaturaType(), $asignatura); $editForm->add('submit', 'submit', array('label' => $titulo)); return $this->render('GEPedagEntidadesBundle:Asignatura:new_edit.html.twig', [ 'action' => $this->generateUrl('ge_asign_update', array('id' => $asignatura->getId())), 'entity' => $asignatura, 'titulo' => $titulo, 'form' => $editForm->createView() ]); } /** * @Method("POST") */ public function updateAction(Request $request, $id) { $em = $this->getDoctrine()->getManager(); $asignatura = $em->getRepository('GEPedagEntidadesBundle:Asignatura')->find($id); if (!$asignatura) { $this->get('session')->getFlashBag()->add( 'error', 'No existe la asignatura con id: ' . $id); return $this->redirect($this->generateUrl('ge_asign_homepage')); } $editForm = $this->createForm(new AsignaturaType(), $asignatura); $editForm->handleRequest($request); if ($editForm->isValid()) { $em->persist($asignatura); $em->flush(); $this->get('session')->getFlashBag()->add( 'success', 'Muy Bien! La asignatura <i>' . $asignatura . '</i> se ha actualizado con éxito!'); return $this->redirect($this->generateUrl('ge_asign_homepage')); } $this->get('session')->getFlashBag()->add( 'success', 'Error al crear la asignatura.'); return $this->redirect($this->generateUrl('ge_asign_homepage')); } /** * @Method("GET") */ public function deleteAction(Request $request, $id) { $em = $this->getDoctrine()->getManager(); $asignatura = $em->getRepository('GEPedagEntidadesBundle:Asignatura')->find($id); if (!$asignatura) { $this->get('session')->getFlashBag()->add( 'error', 'No existe la asignatura con id: ' . $id); return $this->redirect($this->generateUrl('ge_asign_homepage')); } $em->remove($asignatura); $em->flush(); $this->get('session')->getFlashBag()->add( 'success', 'La asignatura <i>' . $asignatura . '</i> se ha eliminado.'); return $this->redirect($this->generateUrl('ge_asign_homepage')); } }
yanpozka/management-system-symfony
src/GEPedag/EntidadesBundle/Controller/AsignaturaController.php
PHP
mit
4,996
QMathematics ============ Dependence: 1. QT (QTSQL QTSVG QTSCRIPT QTPLUGIN) 2. MySql (qsqlmysql4.dll libmysql.dll) 3. QWT 4. GSL
ATetiukhin/QMathematics
README.md
Markdown
mit
134
--- layout: post title: (转)为何大量中国精英纷纷选择移民海外 category: 生活 description: (转)为何大量中国精英纷纷选择移民海外 --- 微信上一篇文章,觉得说的很有道理,转载以示赞同。文章链接[在此](http://mp.weixin.qq.com/s?__biz=MzA4Mzk3OTkxOQ==&mid=402690985&idx=1&sn=bc5c030b5b8018feeb3eacdb3ecf332b)。 原文声明:文章来源:同舟共进,尊重原创,版权归原作者所有,由移民家园网综合整理。 大约在最近10年,国内越来越多社会精英移居海外,成为媒体、政府和公众关注与讨论的话题。 初看起来,这是中国在卷入全球化浪潮之后产生的人员流动的自然现象。在中华人民共和国历史的前期,人员流出与流入水平接近于零;上世纪70年代末改革开放后,人员的流动(主要是外流)开始产生并且规模越来越大,但与世界上许多国家和地区相比并不引人注目。 只是在最近,这个问题才引起注意和谈论,事实上,主要原因还不在于流出的绝对数量,而在于增长的势头及其特殊含义。 与精英外流现象相映成趣的是,也有大量的海外精英流入内地寻求发展机会。最主要的有两部分人,一是早年留学国外,取得学位并在国外的大学、科研机构、公司或政府部门得到职位的中国公民,他们感到在自己工作的领域中,国内的发展机会似乎更多,或者,他们更喜欢自己熟悉的文化环境。二是台湾、香港的企业家,他们看中了在大陆的获利机会或地方的优惠政策。据此,应该认识到,人员流动决不是单向,而是双向的。但一进一出,动机和目标却迥然不同。 上述两类人到大陆工作的动机是寻求机会和发展空间,无意变换自己的国籍或身份,而国内精英移居海外,大多是以取得外国国籍为目的。移居海外的精英中,不少人只是追求拿到一个外国身份,他们挣钱和交友仍旧在国内,这种现象非常值得玩味。 同样值得注意的是,与上世纪80年代移居海外的潮流不同,那时一些人千方百计想去外国,是因为那里生活条件比国内好,工作条件、发展机会优于国内。 而这次移民潮中,大量精英是国内的成功人士,早已享受优越的生活和较高的社会地位,他们去到国外,要么是甘居平淡、低调,要么是准备从头再来,重新开始一轮艰辛的打拼。 也就是说,国内精英移民海外,多半是有所牺牲,有的甚至作出了较大的牺牲。那么,他们到底图什么?原因何在? 据笔者的了解,精英们移民的主要动因是获得安全感,他们凭经验和遭遇认为,在自己生活的社会,不稳定的因素太多,未来是不确定的,自己的前途不是可以根据自己的行动和决断作出合理预期的。除了安全感以外,精英们移民还追求好的自然环境、对子女更好的教育,等等。 精英们为了安全感而想方设法规避风险无可厚非,英国哲学家霍布斯在其名著《利维坦》中说过,人们生活的主要目的是自我保全,所以,安全感对于人来说是第一位的。 其实,精英移民不是孤立现象,而是一种更普遍现象的一部分。有人认为,中国的精英层属于广义的中产阶级,他们和欧洲资产阶级革命时期兴起的中产阶级一样,代表了一种新兴力量,在建构市民社会的过程中可起巨大的积极作用,对于建立法治、实行对于权力的制约、形成公平的自由竞争机制等方面可起正面作用。 但30年的历史进程表明,中国的所谓中产阶级或精英层与当下市场经济一样,带有较强的国情特色和扭曲性,他们与其说是制衡独断、垄断的权力的力量,不如说是更多地巴结、迎合权力,当然,他们这样做是为了自己的生存与获利。 如果说他们还有一些进步性的话,那就是他们对于法治的向往,因为他们毕竟希望在一套明晰的规则之下活动和生活。他们要求的不多——稳定性、可预见性而已。 精英移民的关键之处在于,他们希望具有另一种身份,将自己置于另一套法律系统之下,这套法律系统是否非常完美和公正暂且可以不管,但大致可以放心的是,这套法律系统是严格、清晰的,被任意解释和施行的可能性较小;是独立的,有权威的,不易受到当权者的干涉和侵害;出发点是保障个人的自由与权利,不是官员用来对付“刁民”的工具。 今日中国的移民精英相当务实,他们多半不会浅薄地崇洋媚外,以自己当了美国人、法国人或拿了绿卡在同胞面前炫耀,他们的底气在于随着身份转换而得到的保障。 这就相当于在一大群探险者中,虽然看起来大家的情况都差不多,但其中有的人是买了高额保险的,每个人的抗风险能力和自信心是不一样的。 正义是信心最根本的源泉,只有正义的社会才值得生活于其中的人们热爱和留恋,对精英是如此,对任何人也是如此。
LingxianKong/lingxiankong.github.io
_posts/生活/2016-04-04-why-immigration.md
Markdown
mit
5,331
{% include header.html %} {% include about.html %} {% include work.html %} {% include contact.html %} {% include footer.html %}
Galiant/Portfolio
_layouts/default.html
HTML
mit
131
@import url('https://fonts.googleapis.com/css?family=Inconsolata|Jim+Nightshade'); body { overflow: hidden; font-family: 'Inconsolata', monospace; color: #333333; } #start, .main, #gameTime, #endBoard { margin: 0 auto; padding: 30px; text-align: center; width: 100%; height: auto; } #gameTime, #endBoard { display: none; } h1, h2 { display: inline-block; } .choose { font-family: 'Jim Nightshade', cursive; cursor: pointer; } .active { color: #7ACA99; } .board { width: 300px; height: 300px; margin: 0 auto; } .table { font-family: 'Jim Nightshade', cursive; width: 100px; height: 100px; border: 2px solid #7ACA99; text-align: center; float: left; box-sizing: border-box; cursor: pointer; font-size: 50px; font-weight: bold; line-height: 100px; } .disabled { pointer-events: none; opacity: 0.7; background-color: #f4f4f4; } #gameStart, #resetGame { color: #333333; border: 2px solid #7ACA99; border-radius: 10px; font-size: 16px; text-decoration: none; padding: 15px 32px; cursor: pointer; background-color: white; -webkit-transition: all .3s; /* Safari */ transition: all .3s; } #gameStart:hover, #resetGame:hover { background-color: #7ACA99; color: white; font-weight: bolder; } #gameStart:visited, #gameStart:active, #gameStart:focus, #resetGame:visited, #resetGame:active, #resetGame:focus { outline: none; } footer { position: absolute; bottom: 10px; left: 0; width: 100%; background-color: #7ACA99; font-size: 0.7em; text-align: center; } footer > p { margin: 0; } a { text-decoration: none; } a:hover { color: white; }
gsuxlzt/tictactoe
css/styles.css
CSS
mit
1,613
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("02.StaticReadOnlyField")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("02.StaticReadOnlyField")] [assembly: AssemblyCopyright("Copyright © 2015")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. [assembly: ComVisible(false)] // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("a881564f-3790-4077-a240-9edd76806251")] // Version information for an assembly consists of the following four values: // // Major Version // Minor Version // Build Number // Revision // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")]
DimitarGaydardzhiev/TelerikAcademy
03. OOP/02. Defining-Classes-Part-2-Static-Members-Generics/02.StaticReadOnlyField/Properties/AssemblyInfo.cs
C#
mit
1,420
-- complain if script is sourced in psql, rather than via CREATE EXTENSION \echo Use "CREATE EXTENSION pg_prttn_tools" to load this file. \quit -- Function: prttn_tools.create_child_table( -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- BOOLEAN) CREATE OR REPLACE FUNCTION prttn_tools.create_child_table( p_schema CHARACTER VARYING, p_table CHARACTER VARYING, p_child_schema CHARACTER VARYING, p_child_table CHARACTER VARYING, p_check_condition CHARACTER VARYING, p_with_rule BOOLEAN) RETURNS TEXT AS $body$ DECLARE /* Создание дочерней таблицы p_schema Схема родительской таблицы p_table Имя родительской таблицы p_child_schema Схема дочерней таблицы p_child_table Имя дочерней таблицы p_check_condition Условие для создания constraint на дочерней таблице p_with_rule Создание rule для родительской таблицы с условием, заданным в p_check_condition */ v_ddl_text CHARACTER VARYING; BEGIN -- Создание дочерней таблицы v_ddl_text := 'CREATE TABLE ' || p_child_schema || '.' || p_child_table || ' ( LIKE ' || p_schema || '.' || p_table || ' INCLUDING ALL )'; EXECUTE v_ddl_text; v_ddl_text := 'ALTER TABLE ' || p_child_schema || '.' || p_child_table || ' INHERIT ' || p_schema || '.' || p_table; EXECUTE v_ddl_text; -- Создание CONSTRAINT для дочерней таблицы IF p_check_condition IS NOT NULL THEN v_ddl_text := 'ALTER TABLE ' || p_child_schema || '.' || p_child_table || ' ADD CONSTRAINT ' || p_child_table || '_check CHECK ' || p_check_condition; EXECUTE v_ddl_text; -- Создание правила для родительской таблицы IF p_with_rule THEN v_ddl_text := 'CREATE RULE route_' || p_child_schema || '_' || p_child_table || ' AS ' || ' ON INSERT TO ' || p_schema ||'.'|| p_table || ' WHERE ' || p_check_condition || ' DO INSTEAD INSERT INTO ' || p_child_schema || '.' || p_child_table || ' VALUES (new.*)'; EXECUTE v_ddl_text; END IF; END IF; RETURN 'created'; END; $body$ LANGUAGE plpgsql VOLATILE COST 100; ALTER FUNCTION prttn_tools.create_child_table(CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, BOOLEAN) OWNER TO postgres; -- Function: prttn_tools.drop_ins_trigger( -- CHARACTER VARYING, -- CHARACTER VARYING) CREATE OR REPLACE FUNCTION prttn_tools.drop_ins_trigger( p_schema CHARACTER VARYING, p_table CHARACTER VARYING) RETURNS TEXT AS $body$ DECLARE /* Удаление триггера на вставку записей и триггерной функции, созданных функцией part_%_create_trigger() p_schema Схема родительской таблицы p_table Имя родительской таблицы */ v_ddl_text CHARACTER VARYING; BEGIN -- Удаление триггера v_ddl_text := 'DROP TRIGGER ' || p_table || '_part_ins_tr ON ' || p_schema || '.' || p_table; EXECUTE v_ddl_text; -- Удаление триггерной функции v_ddl_text := 'DROP FUNCTION IF EXISTS ' || p_schema || '.' || p_table || '_part_ins_tr()'; EXECUTE v_ddl_text; v_ddl_text := 'DROP FUNCTION IF EXISTS ' || p_schema || '.' || p_table || '_part_ins_tr_ac()'; EXECUTE v_ddl_text; RETURN 'ok'; END; $body$ LANGUAGE plpgsql VOLATILE COST 100; ALTER FUNCTION prttn_tools.drop_ins_trigger(CHARACTER VARYING, CHARACTER VARYING) OWNER TO postgres; -- Function: prttn_tools.part_list_check( -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING) CREATE OR REPLACE FUNCTION prttn_tools.part_list_check( p_schema CHARACTER VARYING, p_table CHARACTER VARYING, p_list_column CHARACTER VARYING, p_list_value CHARACTER VARYING) RETURNS table( child_table CHARACTER VARYING, child_table_status CHARACTER VARYING, child_list CHARACTER VARYING ) AS $body$ DECLARE /* Проверка существования дочерней таблицы p_schema Схема родительской таблицы p_table Имя родительской таблицы p_list_column Поле для секционирования по значениям p_list_value Значение для вставки в поле p_list_column */ v_count INTEGER; BEGIN -- Формирование имени и параметров дочерней таблицы child_table := p_table || '_' || p_list_value; child_list := p_list_value; -- Проверка существования дочерней таблицы SELECT count(*) INTO v_count FROM pg_catalog.pg_tables WHERE schemaname = p_schema AND tablename = child_table; IF v_count != 0 THEN child_table_status := 'exist'; ELSE child_table_status := 'noexist'; END IF; -- Returns: -- child_table p_table_p_list_value -- child_table_status exist/noexist -- child_list p_list_value RETURN NEXT; RETURN; END; $body$ LANGUAGE plpgsql VOLATILE COST 100; ALTER FUNCTION prttn_tools.part_list_check(CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING) OWNER TO postgres; -- Function: prttn_tools.part_list_add( -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- BOOLEAN) CREATE OR REPLACE FUNCTION prttn_tools.part_list_add( p_schema CHARACTER VARYING, p_table CHARACTER VARYING, p_list_column CHARACTER VARYING, p_list_value CHARACTER VARYING, p_with_rule BOOLEAN) RETURNS table( child_table CHARACTER VARYING, child_table_status CHARACTER VARYING, child_list CHARACTER VARYING ) AS $body$ DECLARE /* Создание дочерней таблицы p_schema Схема родительской таблицы p_table Имя родительской таблицы p_list_column Поле для секционирования по значениям p_list_value Значение для вставки в поле p_list_column p_with_rule Создание rule для родительской таблицы с условием, заданным в v_check_condition */ v_count INTEGER; v_check_condition CHARACTER VARYING; v_ddl_text CHARACTER VARYING; BEGIN -- Проверка существования поля p_schemaname.p_tablename.p_list_column SELECT count(*) INTO v_count FROM information_schema.tables t JOIN information_schema.columns c ON t.table_catalog = c.table_catalog AND t.table_schema = c.table_schema AND t.table_name = c.table_name WHERE t.table_catalog::name = current_database() AND t.table_type = 'BASE TABLE' AND t.table_schema = p_schema AND t.table_name = p_table AND c.column_name = p_list_column; -- Выход c ошибкой если данные о поле или таблице не верны IF v_count != 1 THEN raise 'incorrect master table %', p_schema || '.' || p_table; END IF; -- Формирование имени и параметров дочерней таблицы SELECT r.child_table, r.child_table_status, r.child_list INTO child_table, child_table_status, child_list FROM prttn_tools.part_list_check(p_schema, p_table, p_list_column, p_list_value) r; v_check_condition := '(' || p_list_column || ' = ' || quote_literal(p_list_value) || ')'; -- Создание таблицы если дочерняя таблица не существует IF child_table_status = 'noexist' THEN -- Создание дочерней таблицы SELECT prttn_tools.create_child_table(p_schema, p_table, p_schema, child_table, v_check_condition, p_with_rule) INTO child_table_status; END IF; -- Returns: -- child_table p_table_p_list_value -- child_table_status exist/created -- child_list p_list_value RETURN NEXT; RETURN; END; $body$ LANGUAGE plpgsql VOLATILE COST 100; ALTER FUNCTION prttn_tools.part_list_add(CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, BOOLEAN) OWNER TO postgres; -- Function: prttn_tools.part_list_create_trigger( -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- BOOLEAN) CREATE OR REPLACE FUNCTION prttn_tools.part_list_create_trigger( p_schema CHARACTER VARYING, p_table CHARACTER VARYING, p_list_column CHARACTER VARYING, p_autocreate BOOLEAN) RETURNS TABLE( trigger_function CHARACTER VARYING, trigger_status CHARACTER VARYING ) AS $body$ DECLARE /* Создание триггера для включения секционирования p_schema Схема родительской таблицы p_table Имя родительской таблицы p_list_column Поле для секционирования по значениям p_autocreate Автоматическое/ручное создание секций */ v_sql TEXT; BEGIN trigger_function := p_schema || '.' || p_table || '_part_ins_tr'; IF p_autocreate THEN trigger_function := trigger_function || '_ac'; END IF; v_sql := 'CREATE OR REPLACE FUNCTION ' || trigger_function || '() RETURNS TRIGGER AS $trigger$ DECLARE -- this function is automatically created -- from prttn_tools.part_list_create_trigger -- ' || now() || ' v_child_table CHARACTER VARYING; v_child_table_status CHARACTER VARYING; BEGIN -- Проверка существования дочерней таблицы SELECT child_table, child_table_status INTO v_child_table, v_child_table_status FROM prttn_tools.part_list_check( ' || quote_literal(p_schema) || ', ' || quote_literal(p_table) || ', ' || quote_literal(p_list_column) || ', new.' || p_list_column || '::CHARACTER VARYING);'; IF p_autocreate THEN v_sql := v_sql || ' -- Создание новой дочерней таблицы, если не существует IF v_child_table_status = ''noexist'' THEN SELECT child_table, child_table_status INTO v_child_table, v_child_table_status FROM prttn_tools.part_list_add( ' || quote_literal(p_schema) || ', ' || quote_literal(p_table) || ', ' || quote_literal(p_list_column) || ', new.' || p_list_column || '::CHARACTER VARYING, FALSE); END IF;'; END IF; v_sql := v_sql || ' -- Вставка записи в дочернюю таблицу IF v_child_table_status = ''exist'' OR v_child_table_status = ''created'' THEN EXECUTE ''INSERT INTO ' || p_schema || '.'' || v_child_table || '' SELECT ( ('' || quote_literal(new) || '')::' || p_schema || '.' || p_table || ' ).*''; ELSE RAISE ''child table % not exist'', v_child_table; END IF; RETURN NULL; END; $trigger$ LANGUAGE plpgsql VOLATILE COST 100; CREATE TRIGGER ' || p_table || '_part_ins_tr BEFORE INSERT ON ' || p_schema || '.' || p_table || ' FOR EACH ROW EXECUTE PROCEDURE ' || trigger_function || '();'; EXECUTE v_sql; trigger_status := 'created'; RETURN NEXT; RETURN; END; $body$ LANGUAGE plpgsql VOLATILE COST 100; ALTER FUNCTION prttn_tools.part_list_create_trigger(CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, BOOLEAN) OWNER TO postgres; -- Function: prttn_tools.part_time_check( -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- TIMESTAMP WITHOUT TIME ZONE) CREATE OR REPLACE FUNCTION prttn_tools.part_time_check( p_schema CHARACTER VARYING, p_table CHARACTER VARYING, p_time_column CHARACTER VARYING, p_time_range CHARACTER VARYING, p_time_value TIMESTAMP WITHOUT TIME ZONE) RETURNS TABLE( child_table CHARACTER VARYING, child_table_status CHARACTER VARYING, child_time_from TIMESTAMP WITHOUT TIME ZONE, child_time_to TIMESTAMP WITHOUT TIME ZONE ) AS $body$ DECLARE /* Проверка существования дочерней таблицы p_schema Схема родительской таблицы p_table Имя родительской таблицы p_time_column Поле для секционирования по интервалу времени p_time_range Интервал для секционирования: year, month, day, hour, minute p_time_value Значение для вставки в поле p_time_column */ v_count INTEGER; BEGIN -- Формирование имени и параметров дочерней таблицы child_table := p_table || '_'; CASE lower(p_time_range) WHEN 'year' THEN child_table := child_table || to_char(p_time_value, 'yyyy'); child_time_from := date_trunc('year', p_time_value); child_time_to := date_trunc('year', p_time_value + interval '1 year'); WHEN 'month' THEN child_table := child_table || to_char(p_time_value, 'yyyymm'); child_time_from := date_trunc('month', p_time_value); child_time_to := date_trunc('month', p_time_value + interval '1 month'); WHEN 'day' THEN child_table := child_table || to_char(p_time_value, 'yyyymmdd'); child_time_from := date_trunc('day', p_time_value); child_time_to := date_trunc('day', p_time_value + interval '1 day'); WHEN 'hour' THEN child_table := child_table || to_char(p_time_value, 'yyyymmdd_hh24'); child_time_from := date_trunc('hour', p_time_value); child_time_to := date_trunc('hour', p_time_value + interval '1 hour'); WHEN 'minute' THEN child_table := child_table || to_char(p_time_value, 'yyyymmdd_hh24mi'); child_time_from := date_trunc('minute', p_time_value); child_time_to := date_trunc('minute', p_time_value + interval '1 minute'); ELSE RAISE 'incorrect variable p_time_range %s', p_time_range; END CASE; -- Проверка существования дочерней таблицы SELECT count(*) INTO v_count FROM pg_catalog.pg_tables WHERE schemaname = p_schema AND tablename = child_table; IF v_count != 0 THEN child_table_status := 'exist'; ELSE child_table_status := 'noexist'; END IF; -- Returns: -- child_table | p_table_p_time_value -- child_table_status | exist/noexist -- child_time_from | Дата/время начала интервала -- child_time_to | Дата/время конца интервала RETURN NEXT; RETURN; END; $body$ LANGUAGE plpgsql VOLATILE COST 100; ALTER FUNCTION prttn_tools.part_time_check(CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, TIMESTAMP WITHOUT TIME ZONE) OWNER TO postgres; -- Function: prttn_tools.part_time_add( -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- TIMESTAMP WITHOUT TIME ZONE, -- BOOLEAN) CREATE OR REPLACE FUNCTION prttn_tools.part_time_add( p_schema CHARACTER VARYING, p_table CHARACTER VARYING, p_time_column CHARACTER VARYING, p_time_range CHARACTER VARYING, p_time_value TIMESTAMP WITHOUT TIME ZONE, p_with_rule BOOLEAN) RETURNS TABLE( child_table CHARACTER VARYING, child_table_status CHARACTER VARYING, child_time_from TIMESTAMP WITHOUT TIME ZONE, child_time_to TIMESTAMP WITHOUT TIME ZONE ) AS $body$ DECLARE /* Создание дочерней таблицы p_schema Схема родительской таблицы p_table Имя родительской таблицы p_time_column Поле для секционирования по интервалу времени p_time_range Интервал для секционирования: year, month, day, hour, minute p_time_value Значение для вставки в поле p_time_column p_with_rule Создание rule для родительской таблицы с условием, заданным в v_check_condition */ v_count INTEGER; v_check_condition CHARACTER VARYING; v_ddl_text CHARACTER VARYING; BEGIN -- Проверка существования поля -- p_schemaname.p_tablename.p_time_column(timestamp without time zone) SELECT count(*) INTO v_count FROM information_schema.tables t JOIN information_schema.columns c ON t.table_catalog = c.table_catalog AND t.table_schema = c.table_schema AND t.table_name = c.table_name WHERE t.table_catalog::name = current_database() AND t.table_type = 'BASE TABLE' AND t.table_schema = p_schema AND t.table_name = p_table AND c.column_name = p_time_column AND c.data_type = 'timestamp without time zone'; -- Выход c ошибкой если данные о поле или таблице не верны IF v_count != 1 THEN RAISE 'incorrect master table %', p_schema || '.' || p_table; END IF; -- Формирование имени и параметров дочерней таблицы SELECT r.child_table, r.child_table_status, r.child_time_from, r.child_time_to INTO child_table, child_table_status, child_time_from, child_time_to FROM prttn_tools.part_time_check(p_schema, p_table, p_time_column, p_time_range, p_time_value) r; v_check_condition := '(' || p_time_column || ' >= ' || quote_literal(child_time_from) || ' AND ' || p_time_column || ' < ' || quote_literal(child_time_to) || ')'; -- Создание таблицы если дочерняя таблица не существует IF child_table_status = 'noexist' THEN -- Создание дочерней таблицы SELECT prttn_tools.create_child_table(p_schema, p_table, p_schema, child_table, v_check_condition, p_with_rule) INTO child_table_status; END IF; -- Returns: -- child_table p_table_p_time_value -- child_table_status exist/created -- child_time_from Дата/время начала интервала -- child_time_to Дата/время конца интервала RETURN NEXT; RETURN; END; $body$ LANGUAGE plpgsql VOLATILE COST 100; ALTER FUNCTION prttn_tools.part_time_add(CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, TIMESTAMP WITHOUT TIME ZONE, BOOLEAN) OWNER TO postgres; -- Function: prttn_tools.part_time_create_trigger( -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- BOOLEAN) CREATE OR REPLACE FUNCTION prttn_tools.part_time_create_trigger( p_schema CHARACTER VARYING, p_table CHARACTER VARYING, p_time_column CHARACTER VARYING, p_time_range CHARACTER VARYING, p_autocreate BOOLEAN) RETURNS TABLE( trigger_function CHARACTER VARYING, trigger_status CHARACTER VARYING ) AS $body$ DECLARE /* Создание триггера для включения секционирования p_schema Схема родительской таблицы p_table Имя родительской таблицы p_time_column Поле для секционирования по интервалу времени p_time_range Интервал для секционирования: year, month, day, hour, minute p_autocreate Автоматическое/ручное создание секций */ v_sql TEXT; BEGIN trigger_function := p_schema || '.' || p_table || '_part_ins_tr'; IF p_autocreate THEN trigger_function := trigger_function || '_ac'; END IF; v_sql := 'CREATE OR REPLACE FUNCTION ' || trigger_function || '() RETURNS TRIGGER AS $trigger$ DECLARE -- this function is automatically created -- from prttn_tools.part_time_create_trigger -- ' || now() || ' v_child_table CHARACTER VARYING; v_child_table_status CHARACTER VARYING; BEGIN -- Проверка существования дочерней таблицы SELECT child_table, child_table_status INTO v_child_table, v_child_table_status FROM prttn_tools.part_time_check( ' || quote_literal(p_schema) || ', ' || quote_literal(p_table) || ', ' || quote_literal(p_time_column) || ', ' || quote_literal(p_time_range) || ', new.' || p_time_column || '::TIMESTAMP WITHOUT TIME ZONE);'; IF p_autocreate THEN v_sql := v_sql || ' -- Создание новой дочерней таблицы, если не существует IF v_child_table_status = ''noexist'' THEN SELECT child_table, child_table_status INTO v_child_table, v_child_table_status FROM prttn_tools.part_time_add( ' || quote_literal(p_schema) || ', ' || quote_literal(p_table) || ', ' || quote_literal(p_time_column) || ', ' || quote_literal(p_time_range) || ', new.' || p_time_column || '::TIMESTAMP WITHOUT TIME ZONE, FALSE); END IF;'; END IF; v_sql := v_sql || ' -- Вставка записи в дочернюю таблицу IF v_child_table_status = ''exist'' OR v_child_table_status = ''created'' THEN EXECUTE ''INSERT INTO ' || p_schema || '.'' || v_child_table || '' SELECT ( ('' || quote_literal(new) || '')::' || p_schema || '.' || p_table || ' ).*''; ELSE RAISE ''child table % not exist'', v_child_table; END IF; RETURN NULL; END; $trigger$ LANGUAGE plpgsql VOLATILE COST 100; CREATE TRIGGER ' || p_table || '_part_ins_tr BEFORE INSERT ON ' || p_schema || '.' || p_table || ' FOR EACH ROW EXECUTE PROCEDURE ' || trigger_function || '();'; EXECUTE v_sql; trigger_status := 'created'; RETURN NEXT; RETURN; END; $body$ LANGUAGE plpgsql VOLATILE COST 100; ALTER FUNCTION prttn_tools.part_time_create_trigger(CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, BOOLEAN) OWNER TO postgres; -- Function: prttn_tools.part_list_time_check( -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- TIMESTAMP WITHOUT TIME ZONE) CREATE OR REPLACE FUNCTION prttn_tools.part_list_time_check( p_schema CHARACTER VARYING, p_table CHARACTER VARYING, p_list_column CHARACTER VARYING, p_list_value CHARACTER VARYING, p_time_column CHARACTER VARYING, p_time_range CHARACTER VARYING, p_time_value TIMESTAMP WITHOUT TIME ZONE) RETURNS TABLE( child_table CHARACTER VARYING, child_table_status CHARACTER VARYING, child_list CHARACTER VARYING, child_time_from TIMESTAMP WITHOUT TIME ZONE, child_time_to TIMESTAMP WITHOUT TIME ZONE ) AS $body$ DECLARE /* Проверка существования дочерней таблицы p_schema Схема родительской таблицы p_table Имя родительской таблицы p_list_column Поле для секционирования по значениям p_list_value Значение для вставки в поле p_list_column p_time_column Поле для секционирования по интервалу времени p_time_range Интервал для секционирования: year, month, day, hour, minute p_time_value Значение для вставки в поле p_time_column */ v_count INTEGER; BEGIN -- Формирование имени и параметров дочерней таблицы child_table := p_table || '_' || p_list_value || '_'; child_list := p_list_value; CASE lower(p_time_range) WHEN 'year' THEN child_table := child_table || to_char(p_time_value, 'yyyy'); child_time_from := date_trunc('year', p_time_value); child_time_to := date_trunc('year', p_time_value + interval '1 year'); WHEN 'month' THEN child_table := child_table || to_char(p_time_value, 'yyyymm'); child_time_from := date_trunc('month', p_time_value); child_time_to := date_trunc('month', p_time_value + interval '1 month'); WHEN 'day' THEN child_table := child_table || to_char(p_time_value, 'yyyymmdd'); child_time_from := date_trunc('day', p_time_value); child_time_to := date_trunc('day', p_time_value + interval '1 day'); WHEN 'hour' THEN child_table := child_table || to_char(p_time_value, 'yyyymmdd_hh24'); child_time_from := date_trunc('hour', p_time_value); child_time_to := date_trunc('hour', p_time_value + interval '1 hour'); WHEN 'minute' THEN child_table := child_table || to_char(p_time_value, 'yyyymmdd_hh24mi'); child_time_from := date_trunc('minute', p_time_value); child_time_to := date_trunc('minute', p_time_value + interval '1 minute'); ELSE RAISE 'incorrect variable p_time_range %s', p_time_range; END CASE; -- Проверка существования дочерней таблицы SELECT count(*) INTO v_count FROM pg_catalog.pg_tables WHERE schemaname = p_schema AND tablename = child_table; IF v_count != 0 THEN child_table_status := 'exist'; ELSE child_table_status := 'noexist'; END IF; -- Returns: -- child_table p_table_p_list_value_p_time_value -- child_table_status exist/noexist -- child_list p_list_value -- child_time_from Дата/время начала интервала -- child_time_to Дата/время конца интервала RETURN NEXT; RETURN; END; $body$ LANGUAGE plpgsql VOLATILE COST 100; ALTER FUNCTION prttn_tools.part_list_time_check(CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, TIMESTAMP WITHOUT TIME ZONE) OWNER TO postgres; -- Function: prttn_tools.part_list_time_add( -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- TIMESTAMP WITHOUT TIME ZONE, -- BOOLEAN) CREATE OR REPLACE FUNCTION prttn_tools.part_list_time_add( p_schema CHARACTER VARYING, p_table CHARACTER VARYING, p_list_column CHARACTER VARYING, p_list_value CHARACTER VARYING, p_time_column CHARACTER VARYING, p_time_range CHARACTER VARYING, p_time_value TIMESTAMP WITHOUT TIME ZONE, p_with_rule BOOLEAN) RETURNS TABLE( child_table CHARACTER VARYING, child_table_status CHARACTER VARYING, child_list CHARACTER VARYING, child_time_from TIMESTAMP WITHOUT TIME ZONE, child_time_to TIMESTAMP WITHOUT TIME ZONE ) AS $body$ DECLARE /* Создание дочерней таблицы p_schema Схема родительской таблицы p_table Имя родительской таблицы p_list_column Поле для секционирования по значениям p_list_value Значение для вставки в поле p_list_column p_time_column Поле для секционирования по интервалу времени p_time_range Интервал для секционирования: year, month, day, hour, minute p_time_value Значение для вставки в поле p_time_column p_with_rule Создание rule для родительской таблицы с условием, заданным в v_check_condition */ v_count INTEGER; v_check_condition CHARACTER VARYING; v_ddl_text CHARACTER VARYING; BEGIN -- Проверка существования полей: -- p_schemaname.p_tablename.p_list_column -- p_schemaname.p_tablename.p_time_column(timestamp without time zone) SELECT count(*) INTO v_count FROM information_schema.tables t JOIN information_schema.columns c ON t.table_catalog = c.table_catalog AND t.table_schema = c.table_schema AND t.table_name = c.table_name WHERE t.table_catalog::name = current_database() AND t.table_type = 'BASE TABLE' AND t.table_schema = p_schema AND t.table_name = p_table AND (c.column_name = p_list_column OR (c.column_name = p_time_column AND c.data_type = 'timestamp without time zone' ) ); -- Выход c ошибкой если данные о поле или таблице не верны IF v_count != 2 THEN RAISE 'incorrect master table %', p_schema || '.' || p_table; END IF; -- Формирование имени и параметров дочерней таблицы SELECT r.child_table, r.child_table_status, r.child_list, r.child_time_from, r.child_time_to INTO child_table, child_table_status, child_list, child_time_from, child_time_to FROM prttn_tools.part_list_time_check(p_schema, p_table, p_list_column, p_list_value, p_time_column, p_time_range, p_time_value) r; v_check_condition := '(' || p_list_column || ' = ' || quote_literal(p_list_value) || ' AND ' || p_time_column || ' >= ' || quote_literal(child_time_from) || ' AND ' || p_time_column || ' < ' || quote_literal(child_time_to) || ')'; -- Создание таблицы если дочерняя таблица не существует IF child_table_status = 'noexist' THEN -- Создание child-таблицы SELECT prttn_tools.create_child_table(p_schema, p_table, p_schema, child_table, v_check_condition, p_with_rule) INTO child_table_status; END IF; -- Returns: -- child_table p_table_p_list_value_p_time_value -- child_table_status exist/created -- child_list p_list_value -- child_time_from Дата/время начала интервала -- child_time_to Дата/время конца интервала RETURN NEXT; RETURN; END; $body$ LANGUAGE plpgsql VOLATILE COST 100; ALTER FUNCTION prttn_tools.part_list_time_add(CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, TIMESTAMP WITHOUT TIME ZONE, BOOLEAN) OWNER TO postgres; -- Function: prttn_tools.part_list_time_create_trigger( -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- BOOLEAN) CREATE OR REPLACE FUNCTION prttn_tools.part_list_time_create_trigger( p_schema CHARACTER VARYING, p_table CHARACTER VARYING, p_list_column CHARACTER VARYING, p_time_column CHARACTER VARYING, p_time_range CHARACTER VARYING, p_autocreate BOOLEAN) RETURNS TABLE( trigger_function CHARACTER VARYING, trigger_status CHARACTER VARYING ) AS $body$ DECLARE /* Создание триггера для включения секционирования p_schema Схема родительской таблицы p_table Имя родительской таблицы p_list_column Поле для секционирования по значениям p_time_column Поле для секционирования по интервалу времени p_time_range Интервал для секционирования: year, month, day, hour, minute p_autocreate Автоматическое/ручное создание секций */ v_sql TEXT; BEGIN trigger_function := p_schema || '.' || p_table || '_part_ins_tr'; v_sql := 'CREATE OR REPLACE FUNCTION ' || trigger_function || '() RETURNS TRIGGER AS $trigger$ DECLARE -- this function is automatically created -- from prttn_tools.part_list_time_create_trigger -- ' || now() || ' v_child_table CHARACTER VARYING; v_child_table_status CHARACTER VARYING; BEGIN -- Проверка существования дочерней таблицы SELECT child_table, child_table_status INTO v_child_table, v_child_table_status FROM prttn_tools.part_list_time_check( ' || quote_literal(p_schema) || ', ' || quote_literal(p_table) || ', ' || quote_literal(p_list_column) || ', new.' || p_list_column || '::CHARACTER VARYING, ' || quote_literal(p_time_column) || ', ' || quote_literal(p_time_range) || ', new.' || p_time_column || '::TIMESTAMP WITHOUT TIME ZONE);'; IF p_autocreate THEN v_sql := v_sql || ' -- Создание новой дочерней таблицы, если не существует IF v_child_table_status = ''noexist'' THEN SELECT child_table, child_table_status INTO v_child_table, v_child_table_status FROM prttn_tools.part_list_time_add( ' || quote_literal(p_schema) || ', ' || quote_literal(p_table) || ', ' || quote_literal(p_list_column) || ', new.' || p_list_column || '::CHARACTER VARYING, ' || quote_literal(p_time_column) || ', ' || quote_literal(p_time_range) || ', new.' || p_time_column || '::TIMESTAMP WITHOUT TIME ZONE, FALSE); END IF;'; END IF; v_sql := v_sql || ' -- Вставка записи в дочернюю таблицу IF v_child_table_status = ''exist'' OR v_child_table_status = ''created'' THEN EXECUTE ''INSERT INTO ' || p_schema || '.'' || v_child_table || '' SELECT ( ('' || quote_literal(new) || '')::' || p_schema || '.' || p_table || ' ).*''; ELSE RAISE ''child table % not exist'', v_child_table; END IF; RETURN NULL; END; $trigger$ LANGUAGE plpgsql VOLATILE COST 100; CREATE TRIGGER ' || p_table || '_part_ins_tr BEFORE INSERT ON ' || p_schema || '.' || p_table || ' FOR EACH ROW EXECUTE PROCEDURE ' || trigger_function || '();'; EXECUTE v_sql; trigger_status := 'created'; RETURN NEXT; RETURN; END; $body$ LANGUAGE plpgsql VOLATILE COST 100; ALTER FUNCTION prttn_tools.part_list_time_create_trigger(CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, BOOLEAN) OWNER TO postgres; -- Function: prttn_tools.part_merge( -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING, -- CHARACTER VARYING) CREATE OR REPLACE FUNCTION prttn_tools.part_merge( p_parent_schema CHARACTER VARYING, p_parent_table CHARACTER VARYING, p_child_schema CHARACTER VARYING, p_child_table CHARACTER VARYING) RETURNS TEXT AS $body$ DECLARE /* Слияние дочерней таблицы с родительской p_parent_schema Схема родительской таблицы p_parent_table Имя родительской таблицы p_child_schema Схема дочерней таблицы p_child_table Имя дочерней таблицы */ v_count BIGINT; v_sql_text CHARACTER VARYING; BEGIN -- Проверка существования таблицы p_parent_schema.p_parent_table SELECT count(*) INTO v_count FROM information_schema.tables t1 WHERE t1.table_catalog::name = current_database() AND t1.table_type = 'BASE TABLE' AND t1.table_schema = p_parent_schema AND t1.table_name = p_parent_table; IF v_count != 1 THEN RAISE 'parent table not found: %', p_parent_schema || '.' || p_parent_table; END IF; -- Проверка существования таблицы p_child_schema.p_child_table SELECT count(*) INTO v_count FROM information_schema.tables t1 WHERE t1.table_catalog::name = current_database() AND t1.table_type = 'BASE TABLE' AND t1.table_schema = p_child_schema AND t1.table_name = p_child_table; IF v_count != 1 THEN RAISE 'child table not found: %', p_child_schema || '.' || p_child_table; END IF; -- Проверка совместимости таблиц SELECT count(*) INTO v_count FROM ( SELECT c1.column_name, c1.data_type FROM information_schema.tables t1 JOIN information_schema.columns c1 ON t1.table_catalog = c1.table_catalog AND t1.table_schema = c1.table_schema AND t1.table_name = c1.table_name WHERE t1.table_catalog::name = current_database() AND t1.table_type = 'BASE TABLE' AND t1.table_schema = p_parent_schema AND t1.table_name = p_parent_table EXCEPT SELECT c2.column_name, c2.data_type FROM information_schema.tables t2 JOIN information_schema.columns c2 ON t2.table_catalog = c2.table_catalog AND t2.table_schema = c2.table_schema AND t2.table_name = c2.table_name WHERE t2.table_catalog::name = current_database() AND t2.table_type = 'BASE TABLE' AND t2.table_schema = p_child_schema AND t2.table_name = p_child_table ) tt; IF v_count != 0 THEN RAISE 'tables are not compatible: %', p_parent_schema || '.' || p_parent_table || ', ' || p_child_schema || '.' || p_child_table; END IF; -- Вставка данных в родительскую таблицу v_sql_text := 'INSERT INTO ' || p_parent_schema || '.' || p_parent_table || ' SELECT * FROM ' || p_child_schema || '.' || p_child_table; EXECUTE v_sql_text; -- Удаление дочерней таблицы v_sql_text := 'DROP TABLE ' || p_child_schema || '.' || p_child_table; EXECUTE v_sql_text; RETURN 'ok'; END; $body$ LANGUAGE plpgsql VOLATILE COST 100; ALTER FUNCTION prttn_tools.part_merge(CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING, CHARACTER VARYING) OWNER TO postgres;
alexandersamoylov/pg_prttn_tools
sql/pg_prttn_tools--0.4.sql
SQL
mit
40,350
--- layout: post status: publish published: true title: WCF Metadata Publication and Others author: display_name: Tomas Restrepo login: tomasr email: tomas@winterdom.com url: http://winterdom.com/ author_login: tomasr author_email: tomas@winterdom.com author_url: http://winterdom.com/ wordpress_id: 68 wordpress_url: http://winterdom.com/2006/10/wcfmetadatapublicationandothers date: '2006-10-19 18:11:32 +0000' date_gmt: '2006-10-19 18:11:32 +0000' categories: - WCF - WinFX - Web Services tags: [] comments: [] --- <p><!--start_raw--> <p><a href="http:&#47;&#47;blogs.msdn.com&#47;ralph.squillace&#47;">Ralph Squillace</a> posted an <a href="http:&#47;&#47;blogs.msdn.com&#47;ralph.squillace&#47;archive&#47;2006&#47;10&#47;19&#47;quick-wcf-metadata-publication-walkthrough.aspx">walkthrough entry</a> of how metadata publication (MEX + WSDL) is enabled in Windows Communication Foundation. Besides discussing the configuration aspects, he also briefly touches on how those aspects affect the runtime behavior. </p> <p>This came at a perfect time for me because I spent a few hours yesterday going over the&nbsp;System.ServiceModel assemblies with reflector trying to understand how it was that the metadata endpoints get hooked up to a service, so this helps a bit. I still need to look closely at a few issues before I understand what's going on well enough to&nbsp;try at something similar I've been&nbsp;wanting to play with...</p> <p>Ralph has also been writing some samples about Sessionless Duplex Services <a href="http:&#47;&#47;blogs.msdn.com&#47;ralph.squillace&#47;archive&#47;2006&#47;10&#47;10&#47;Sessionless-duplex-services_3F00_-No-problem.-Small-issues_2C00_-yes_3B00_-problems_2C00_-no_2E00_.aspx">here</a> and <a href="http:&#47;&#47;blogs.msdn.com&#47;ralph.squillace&#47;archive&#47;2006&#47;10&#47;19&#47;sessionless-duplex-services-part-two-lifetimes-and-contexts.aspx">here</a> which are quite interesting as well.</p> <div class="wlWriterSmartContent" id="d7bf807d-7bb0-458a-811f-90c51817d5c2:ff287cc0-1809-47be-ac08-9afa2e4e4e06" contenteditable="false" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px"> <p><span class="TagSite">Technorati:</span> <a href="http:&#47;&#47;technorati.com&#47;tag&#47;Windows+Communication+Foundation" rel="tag" class="tag">Windows Communication Foundation</a>, <a href="http:&#47;&#47;technorati.com&#47;tag&#47;WCF" rel="tag" class="tag">WCF</a><br &#47;><!-- StartInsertedTags: Windows Communication Foundation, WCF :EndInsertedTags --></p></div><!--end_raw--></p>
tomasr/winterdom.com
_posts/2006-10-19-wcfmetadatapublicationandothers.html
HTML
mit
2,603
--- layout: angular title: "Angularjs $scope" date: 2016-01-01 author: Hao category: blog description: Angularjs $scope 笔记, 深入了解一下, 从angularjs github wiki 以及各种stackflow中搜索到的例子... --- ### JavaScript Prototypal Inheritance 首先你需要了解javascript本身的继承机制,这对你了解angularjs scope有着至关重要的作用,让我们先来复习一下。 假设`parentScope`有aString, aNumber, anArray, anObject, aFunction 5种属性, 而且`childScope`继承自`parentScope`。如果我们想从`childScope`获得`parentScope`中定义的属性,那么JavaScript会先从child scope中找,找不到,再去`parentScope`中找 下面这个例子详细说明了JavaScript Prototypal Inheritance <iframe src="http://jsfiddle.net/hchen1202/e9257kt1/embedded/" style="width: 100%; height: 300px;"></iframe> String & Num childScope.aString = 'child string' The prototype chain is not consulted, and a new aString property is added to the childScope. This new property hides/shadows the parentScope property with the same name. Array & Object & Funciton childScope.anArray[1] = 22 childScope.anObject.property1 = 'child prop1' The prototype chain is consulted because the objects (anArray and anObject) are not found in the childScope. The objects are found in the parentScope, and the property values are updated on the original objects. No new properties are added to the childScope; no new objects are created. ### Angular Scope Inheritance 在Angularjs中 * 以下几类会生成新的`Scope`而且`inherit prototypically`: ng-repeat, ng-include, ng-swith, ng-view, ng-controller, directive with scope: true, directive with transclude: true. * 以下生成新的 `isolate scope`,directive with scope: {...} * `default directive` 不会生成 `new scope`, 默认`directive` scope: false #### ng-include 每一个ng-include都会产生一个新的`child scope`, 都会prototypically inherit from `parent scope`. <iframe style="width: 100%; height: 300px;" src="http://jsfiddle.net/hchen1202/z5q33kg6/embedded/" ></iframe> 当在第一个input中改变值时,hide/shaddow parent scope. 我们可以改变第一个template,达到我们想要的效果。 <input ng-model="$parent.myPrimitive"> 当改变第二值时,没有产生新的`child property`, `prototypal inheritance` 发生了。 #### ng-switch ng-swith跟ng-include一样, 如果你要`two-way binding`, use $parent, or change the model to be an object and then bind to a property of that object. #### ng-repeat ng-repeat有些许不一样,每个item,`ng-repeat`都会生成一个新的scope,都从`parent scope` prototypically inherit, 但同时把item的值赋给`child scope`的新属性。 <iframe style="width: 100%; height: 300px;" src="http://jsfiddle.net/hchen1202/5ye3amjd/1/embedded/" ></iframe> #### ng-controller ng-controller没有什么不同,但如果想要从不同的controller中share data,建议还是用`service`
hchen1202/hchen1202.github.io
_posts/2016-01-01-angular-scope.markdown
Markdown
mit
3,016
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <title>Video Player</title> <link rel="stylesheet" type="text/css" href="css/styles.css" /> </head> <body> <div class="srt"></div> <div style="float:right; padding: 10px;">Events: <ol class="events" style="height: 390px; overflow: scroll;"></ol></div> <div id="video-container"></div> <div id="youtube-video-container"></div> <hr /> <div>Current time/ Duration: <span class="time"></span>/<span class="duration"></span></div> <div>Speed: <span class="speed"></span></div> <div>Muted: <span class="mute"></span></div> <div>Volume level: <span class="volume"></span></div> <div>Quality: <span class="quality"></span></div> <!--script type="text/javascript" src="../build/VideoPlayer.min.js"></script--> <script> var requirejs = { baseUrl: 'js/', paths: { 'jquery': '../../lib/1.7.2.jquery.min' } } </script> <script src="../lib/require.js"></script> <script type="text/javascript"> // new s2js.Video('HTML5', $('#video-container'), { // sources: [ // 'https://s3.amazonaws.com/edx-course-videos/edx-intro/edX-FA12-cware-1_100.mp4.mp4', // 'https://s3.amazonaws.com/edx-course-videos/edx-intro/edX-FA12-cware-1_100.webm'], // volume: 0.5, // playbackRate: 2.0, // autoplay: false, // controls: true, // loop: true, // muted: true, // }); </script> <script type="text/javascript"> require([ 'utils', 'player', 'controls/vcr', 'controls/play_button', 'controls/mute_button', 'controls/progress_slider', 'controls/transcripts', 'components/menu' ], function (Utils, Video, VCR, PlayButton, MuteButton, ProgressSlider, Transcripts, Menu) { p = new Video('Youtube', $('#youtube-video-container'), { videoId: 'M7lc1UVf-VE', volume: 0.75, playbackRate: 1.0, autoplay: 0, controls: 1, loop: 1, muted: true, plugins: [ VCR, PlayButton, MuteButton, ProgressSlider, Transcripts, Menu ] }); var d = document.getElementById('s2js-player-0'); var updateEvent = function (event) { $('.events').append('<li>' + event + '</li>') }; d.addEventListener('timeupdate', function () { $('.time').html(Utils.Utils.secondsToTimecode(p.currentTime)); }); d.addEventListener('durationchange', function () { $('.duration').html(Utils.Utils.secondsToTimecode(p.duration)); }); d.addEventListener('volumechange', function () { $('.volume').html(p.volume); $('.mute').html(p.muted.toString()); }); d.addEventListener('ratechange', function () { $('.speed').html(p.playbackRate); }); d.addEventListener('qualitychange', function () { $('.quality').html(p.playbackQuality); }); ['canplay', 'ratechange', 'loadedmetadata', 'loadeddata', 'durationchange', 'ended', 'play', 'playing', 'pause', 'progress', 'qualitychange', 'error', 'volumechange' ].forEach(function (eventName) { d.addEventListener(eventName, function () { updateEvent(eventName); }, false); }); }); </script> </body> </html>
polesye/VideoPlayer
src/index.html
HTML
mit
3,554
#ifndef GAME_H #define GAME_H #include <array> class Game { public: //Standard Con/Destructors Game(); //Initialize the board. ~Game(); //Not sure if I need this, but it's here in case //Are we playing the game? bool isRunning = true; //The easiest way I could implement stalemate //detection with my limited knowledge. //Is the board completely full, thereby causing a stalemate? bool isStalemate = false; //Board specific variables. static const int MAX_ROWS = 3; //Bounds for our board array static const int MAX_COLS = 3; //Return the bounds of our board. //Useful for, say, only allowing the player //to make a move within board boundaries //when player data is in a different class. int get_max_rows() { return MAX_ROWS; } int get_max_cols() { return MAX_COLS; } //Return our private piece variables for public use. char get_piece_x() { return pieceX; } char get_piece_o() { return pieceO; } //Print the board in its current state void print_board(); //Print our help board. This board does not change. void print_help_board(); //Check for an overlap, IE placing an X on top of an O. //Returns false if there is an overlap. The space is invalid. //Does NOT check for input sanity or bounds!!! This is done //in some other class, likely going to be the player class. bool is_valid_space(int xPosition, int yPosition); //Check for every possible win using piece as the winning piece. //For example, check if O is the winning piece. //Returns true on a win, false otherwise. bool is_victory(char piece); //Allow a different function/class/file/whatever to acces the board. //This is done to allow placement of pieces to the board without //the risk of accidently trashing it. is_valid_space() should always //be called first, and it likely will be called in this function. //Returns false if it cannot place the piece. bool add_new_piece(int xPosition, int yPosition, char piece); //Removes all pieces from the board, re-sets the score (if I chose to //implement scoring) to zero. This is used in preperation for a new game. void reset(); //Simple random number generator, with bounds. int get_random_num(int bound = 0); //Place a piece on the board based on user input. int make_move(int input, char piece); private: //Three win calcualtion functions to make my job easier. //Check for vertical, horizontal, or diagonal wins independently. //Used by is_victory() to simplify win checking even more. bool is_win_vertical(char piece); bool is_win_horizontal(char piece); bool is_win_diagonal(char piece); //char board[MAX_ROWS][MAX_COLS]; //The board itself std::array<std::array<char, MAX_ROWS>, MAX_COLS> board; //The board itself //These make setting up the board/player(s)/etc MUCH easier. char pieceX = 'X'; //The player class assigns these variables to a local var. char pieceO = 'O'; //for example, something like: player.set_piece(game.pieceX); char pieceNeutral = '-'; //The blank or empty piece. //Settings for making a help board. Shows the player which number corresponds //to the tile he/she wants. Below are variables for that. int helpBoard[MAX_ROWS][MAX_COLS]; }; #endif
JohnBobSmith/console_games
tictactoe/game.h
C
mit
3,265
// // HNBFlowLayoutViewController.h // HNBKitDemo // // Created by 开发 on 2017/7/21. // Copyright © 2017年 开发. All rights reserved. // #import "HNBBaseViewController.h" @interface HNBFlowLayoutViewController : HNBBaseViewController @end
ByronChengChen/HNBKit
HNBKitDemo/HNBKitDemo/classes/home/controller/HNBFlowLayoutViewController.h
C
mit
253
<!-- ~ Copyright (c) 2017. MIT-license for Jari Van Melckebeke ~ Note that there was a lot of educational work in this project, ~ this project was (or is) used for an assignment from Realdolmen in Belgium. ~ Please just don't abuse my work --> <html> <head> <meta charset="utf-8"> <script src="esl.js"></script> <script src="config.js"></script> </head> <body> <style> html, body, #main { width: 100%; height: 100%; } </style> <div id="main"></div> <script> require([ 'echarts', 'echarts/chart/scatter', 'echarts/component/legend', 'echarts/component/polar' ], function (echarts) { var chart = echarts.init(document.getElementById('main'), null, { renderer: 'canvas' }); var data1 = []; var data2 = []; var data3 = []; for (var i = 0; i < 100; i++) { data1.push([Math.random() * 5, Math.random() * 360]); data2.push([Math.random() * 5, Math.random() * 360]); data3.push([Math.random() * 10, Math.random() * 360]); } chart.setOption({ legend: { data: ['scatter', 'scatter2', 'scatter3'] }, polar: { }, angleAxis: { type: 'value' }, radiusAxis: { axisAngle: 0 }, series: [{ coordinateSystem: 'polar', name: 'scatter', type: 'scatter', symbolSize: 10, data: data1 }, { coordinateSystem: 'polar', name: 'scatter2', type: 'scatter', symbolSize: 10, data: data2 }, { coordinateSystem: 'polar', name: 'scatter3', type: 'scatter', symbolSize: 10, data: data3 }] }); }) </script> </body> </html>
N00bface/Real-Dolmen-Stage-Opdrachten
stageopdracht/src/main/resources/static/vendors/gentelella/vendors/echarts/test/polarScatter.html
HTML
mit
2,536