blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 3
264
| content_id
stringlengths 40
40
| detected_licenses
sequencelengths 0
85
| license_type
stringclasses 2
values | repo_name
stringlengths 5
140
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringclasses 905
values | visit_date
timestamp[us]date 2015-08-09 11:21:18
2023-09-06 10:45:07
| revision_date
timestamp[us]date 1997-09-14 05:04:47
2023-09-17 19:19:19
| committer_date
timestamp[us]date 1997-09-14 05:04:47
2023-09-06 06:22:19
| github_id
int64 3.89k
681M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 22
values | gha_event_created_at
timestamp[us]date 2012-06-07 00:51:45
2023-09-14 21:58:39
⌀ | gha_created_at
timestamp[us]date 2008-03-27 23:40:48
2023-08-21 23:17:38
⌀ | gha_language
stringclasses 141
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 3
10.4M
| extension
stringclasses 115
values | content
stringlengths 3
10.4M
| authors
sequencelengths 1
1
| author_id
stringlengths 0
158
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
379039d69e5a3529036d2b992f4d3264cfb8cfff | 65fc85ed595c778e46973ddd24f6f75059f9e84e | /1 - 200/199. Binary Tree Right Side View.cc | 91b0d72c795a83f6e3a9f94fe213ed383874d35a | [] | no_license | zzzmfps/LeetCode | a39c25ccfa5891c9ad895350b30f0f2e98cdc636 | 8d5576eb2b82a0b575634c14367527560c1ec5d5 | refs/heads/master | 2021-10-10T01:06:40.123201 | 2021-09-28T03:33:25 | 2021-09-28T03:33:25 | 122,027,173 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 620 | cc | // 4ms, 73.36%; 9.6MB, 75.68%
#include <bits/stdc++.h>
using namespace std;
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
class Solution {
public:
vector<int> rightSideView(TreeNode *root) {
vector<int> res;
helper(root, 1, res);
return res;
}
private:
void helper(TreeNode *root, int level, vector<int> &res) {
if (!root) return;
if (level > res.size()) res.push_back(root->val);
helper(root->right, level + 1, res);
helper(root->left, level + 1, res);
}
};
| [
"[email protected]"
] | |
22fbfd496f4f9bcaddc77ea324845fecc5b756ae | 09a9270a0d6bf47ab929d91c4dab5eef37248dcb | /cyton/src/hardware_node.cpp | c5838bd5f351dcaf01a36bc00a41c4ccbd34bb1c | [] | no_license | LCAD-UFES/cyton_alpha | e1d7ca380114bef58aa1035409f88810b896ce02 | 6b75749882affcff165894925f1d706571442795 | refs/heads/master | 2021-01-10T16:46:48.072714 | 2016-02-16T16:43:20 | 2016-02-16T16:43:20 | 46,374,275 | 1 | 0 | null | 2015-11-25T19:24:58 | 2015-11-17T20:43:47 | null | UTF-8 | C++ | false | false | 3,900 | cpp | // Copyright (c) 2009-2012 Energid Technologies. All rights reserved. ////
//
// Filename: hardware_node.cpp
//
// Description: Action server recieves Joint Information and feedback to /cyton/feedback
//
// Contents:Cyton Action class
//
/////////////////////////////////////////////////////////////////////////
#ifdef WIN32
# define _CRTDBG_MAP_ALLOC
# include <stdlib.h>
# include <crtdbg.h>
# define DEBUG_FLAGS _CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF|_CRTDBG_LEAK_CHECK_DF)
#else
# define DEBUG_FLAGS
#endif
//ROS headers
#include "ros/ros.h"
#include <actionlib/server/simple_action_server.h>
#include <cyton/cytonAction.h>
//ActinSE & cyton headers
#include <actinSE/ControlSystem.h>
#include <actinSE/EndEffector.h>
#include <actinSE/CoordinateSystemTransformation.h>
#include <cytonHardwareInterface.h>
//System headers
#include <cstring>
#include <iostream>
#include <cstring>
#include <iostream>
#include <string>
using namespace actinSE;
using namespace cyton;
EcRealVector jointAngles, jointRates;
ControlSystem control;
///CytonAction class which contains methods of ActinSE for receiving EE Coordinates and sending Joint Information
class CytonAction
{
public:
///constructor
CytonAction(
std::string name
):as_(
nh_,
name,
boost::bind(&CytonAction::executeCB,this,_1),
false
),
action_name_(
name
)
{
as_.start();
jointAngles.clear();
}
///destructor
~CytonAction(void)
{
jointAngles.clear();
}
///return status of conversion from EE to Joint Values
///@param[in] goal (cyton::cytonGoalConstPtr) Goal message from action client have EE points ,EE type and time
EcBoolean
testHardware
(
const cyton::cytonGoalConstPtr &goal
)
{
for(int i=0;i<9;i++)
{
ROS_INFO("Joint Angles=%f\t",goal->position[i]);
}
std::cout<<"\n";
for(int i=0;i<9;i++)
{
ROS_INFO("Joint Rates=%f\t",goal->rate[i]);
}
//printing recieved values from send_joints node
ROS_INFO("\n");
ROS_INFO("goal time=%f",goal->time);
ROS_INFO("gripper value=%f",goal->gripper_value);
ROS_INFO("gripper rate=%f",goal->gripper_rate);
//feedback position
feedback_.position.clear();
feedback_.rate.clear();
for(int i=0;i<9;i++)
{
feedback_.position.push_back(goal->position[i]);
}
//feedback joint rates
for(int i=0;i<9;i++)
{
feedback_.rate.push_back(goal->rate[i]);
}
//feedback gripper values
feedback_.gripper_feed_value=goal->gripper_value;
feedback_.gripper_feed_rate=goal->gripper_rate;
as_.publishFeedback(feedback_);
if(as_.isPreemptRequested() || ! ros::ok())
{
ROS_WARN("Preempted");
as_.setPreempted();
}
else
{
result_.position.clear();
result_.position.push_back(0);
}
return EcTrue;
}
///execute when a goal recieves from Action client
///@param[in] goal (cyton::cytonGoalConstPtr) It has goal value such as jointValues ,EE type and time
void
executeCB(
const cyton::cytonGoalConstPtr &goal
)
{
//Calling hardware function with goal
if(testHardware(goal))
{
ROS_INFO( "Test passed.\n");
as_.setSucceeded(result_);
}
else
{
ROS_ERROR("Test failed.\n");
as_.setAborted(result_);
}
}
protected:
///ROS Node handle Object
ros::NodeHandle nh_;
///ActionServer class
actionlib::SimpleActionServer<cyton::cytonAction>as_;
///action name
std::string action_name_;
///feedback value class
cyton::cytonFeedback feedback_;
///result values class
cyton::cytonResult result_;
};
int
main(
int argc,
char** argv
)
{
//ros initialisation
ros::init(argc,argv,"cyton");
//Starting action and spin
CytonAction cyton(ros::this_node::getName());
ros::spin();
return 0;
}
| [
"[email protected]"
] | |
5bd911fdf0f09b9827e8d9986ad5d343ae4c03f6 | 3ca083c5ccaebb06ff2e595dafb97d71966de111 | /planners/pmr/PMR/planning/seq-sat-rpt/search/search_engine.h | a662bcea0cdb4429239931840812c1c481b0ec25 | [] | no_license | prakhyat123/MultiAgentPlannerComparison | 5f94f793de567f647de0189b2ed65846a7148f6f | aa14ac92c5a87093a17f21362d21e861c66f7e20 | refs/heads/master | 2021-06-18T07:52:24.311272 | 2017-06-23T14:19:17 | 2017-06-23T14:19:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,788 | h | #ifndef SEARCH_ENGINE_H
#define SEARCH_ENGINE_H
#include <vector>
class Heuristic;
class OptionParser;
class Options;
#include "operator.h"
#include "search_space.h"
#include "search_progress.h"
#include "operator_cost.h"
class SearchEngine {
public:
typedef std::vector<const Operator *> Plan;
private:
bool solved;
Plan plan;
protected:
SearchSpace search_space;
SearchProgress search_progress;
int bound;
OperatorCost cost_type;
enum {FAILED, SOLVED, IN_PROGRESS};
virtual int step() = 0;
void set_plan(const Plan &plan);
bool check_goal_and_set_plan(const State &state);
int get_adjusted_cost(const Operator &op) const;
int node_limit; // Vidal
// Vidal
virtual void reset(State, vector<pair<int, int> > new_goals){
solved = false;
g_goal = new_goals;
search_space.clear();
search_progress.reset();
}
public:
SearchEngine(const Options &opts);
virtual ~SearchEngine();
virtual void statistics() const;
virtual void heuristic_statistics() const {}
virtual void save_plan_if_necessary() const;
bool found_solution() const;
const Plan &get_plan() const;
void search();
SearchProgress get_search_progress() const {return search_progress; }
void set_bound(int b) {bound = b; }
int get_bound() {return bound; }
static void add_options_to_parser(OptionParser &parser);
virtual void initialize(){} // Vidal: made public
inline void set_limit_nodes(int node_limit_){ node_limit = node_limit_;} // Vidal;
// Vidal: search with limit and custom initial state and goals
virtual std::pair<State*, Plan> search(State, std::vector<std::pair<int, int> >) {
return(make_pair<State*, Plan>(NULL,Plan()));
}
};
#endif
| [
"[email protected]"
] | |
81d1c9981dfd59bd7f430e4d8df0aa8064fb8083 | 745a3c44cc48d4db0bd53ae140ba6cfcb87672a9 | /MagicVXRepo/Proxy.h | f431a6cce723929aabcb5c96f35d2a34e65db922 | [] | no_license | Duckxz/MagicVX | ba7fd5f4405fd68ad53f8b78d04834d91461a43d | a306467fc87d6dccfd04592bcd6912ea21434f7a | refs/heads/main | 2023-03-22T03:21:26.849781 | 2021-03-13T17:23:42 | 2021-03-13T17:23:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 792 | h | #pragma once
#include <string>
template <typename T>
class Proxy
{
public:
std::string title = "";
bool lock = false;
int address;
T currentValue;
T gameValue;
T guiValue;
void SetValue(T);
void InitValue(T);
T GetValue();
bool CheckUpdate();
};
template <typename T>
void Proxy<T>::SetValue(T value)
{
gameValue = value;
if (gameValue != currentValue)
{
currentValue = value;
guiValue = value;
}
}
template <typename T>
void Proxy<T>::InitValue(T value)
{
gameValue = value;
currentValue = value;
guiValue = value;
}
template <typename T>
T Proxy<T>::GetValue()
{
return currentValue;
}
template <typename T>
bool Proxy<T>::CheckUpdate()
{
if (guiValue != currentValue)
{
currentValue = guiValue;
gameValue = guiValue;
return true;
}
return false;
} | [
"[email protected]"
] | |
c3eee68f369ec159a0eb7ded6f680db6f27cdd3a | 8308932a4ff85453f12834672cbd5d93ea394eef | /blib/wm/widgets/Label.cpp | 93aa57245d4785e52a8f59479336153a236fef56 | [] | no_license | psyops8905/blib | 1d34317b4a0f4aa5ca1dec8d24eea9b477c12d41 | b3c036bf5a2228b359e8de66dd60f9bdef8c982c | refs/heads/master | 2023-03-18T06:18:22.197039 | 2019-02-01T02:03:50 | 2019-02-01T02:03:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 865 | cpp | #include "Label.h"
//#include <gl/glew.h>
#include <glm/gtc/matrix_transform.hpp>
#include <blib/wm/WM.h>
#include <blib/SpriteBatch.h>
namespace blib
{
namespace wm
{
namespace widgets
{
Label::Label( )
{
this->text = "";
this->width = 100;
this->height = 25;
}
void Label::draw(SpriteBatch &spriteBatch, glm::mat4 matrix, Renderer* renderer) const
{
spriteBatch.draw(WM::getInstance()->font, text, glm::translate(matrix, glm::vec3(x,y,0)), glm::vec4(0,0,0,1));
/* glScissor((int)shader->matrix[3][0]+1,0/*shader->height-(int)shader->matrix[3][1]-height+1*//*,width-2,1999+height-2);
glEnable(GL_SCISSOR_TEST);
WM::getInstance()->font->Render(text.c_str(), -1, FTPoint(x + 1.0f,-y-WM::getInstance()->font->LineHeight()-3));
glDisable(GL_SCISSOR_TEST);*/
}
}
}
}
| [
"[email protected]"
] | |
935fd6587e46421fb37b032e9cd120db9fc11ce6 | f5c261195ca797a9775d654d4021f2529942777c | /lab1/List.cpp | d37df63ca9f813d1c7543d8f7b9c28a1d05b83fe | [] | no_license | Anternt/Aleksey-Riabov | 6d106a5659ea5cefefb8b2a0bb662567b3af4c1b | c378618ab5a2024bbc317bbacba0c200c70dec16 | refs/heads/master | 2020-12-28T01:47:43.480274 | 2020-06-03T12:10:36 | 2020-06-03T12:10:36 | 238,141,899 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 2,271 | cpp | #include "List.h"
void CList::CreateList()
{
List = new C_Program[listSize];
for (int i = 0; i < listSize; i++)
List[i] = Program1();
}
void CList::setListSize(int size)
{
listSize = size;
}
int CList::getListSize() const
{
return listSize;
}
void CList::PrintAll() const
{
printf(" \nВремя\t\tРазмер\t\tСтроки\t\tИндекс");
for (int i = 0; i < listSize; i++)
PrintOneEl(i);
}
void CList::PrintOneEl(int number) const
{
printf("\n%2i) %-10i\t %-10i\t ", number + 1, List[number].getTime(), List[number].getSize());
printf("%-10i\t %-10i", List[number].getLines(), List[number].getIndex());
}
void CList::AddEl(C_Program& newProgram)
{
newProgram = Program2();
C_Program* newList = new C_Program[listSize+1];
for (int i = 0; i < listSize; i++)
newList[i] = List[i];
newList[listSize++] = newProgram;
delete[] List;
List = new C_Program[listSize];
for (int i = 0; i < listSize; i++)
List[i] = newList[i];
delete[] newList;
printf("Элемент добавлен.\n");
}
void CList::DeleteEl(int index)
{
if (listSize == 0)
{
printf("Список программ пуст. Возвращение с выбору действий.\n");
return;
}
if (index <= 0 || index > listSize)
{
printf("Ошибка. Неверный номер элемента. Вовзвращение.\n");
return;
}
C_Program* newList = new C_Program[listSize-1];
for (int i = 0; i < index - 1; i++)
newList[i] = List[i];
for (int i = index - 1, j = index; j < listSize; i++, j++)
newList[i] = List[j];
delete[] List;
List = new C_Program[listSize--];
for (int i = 0; i < listSize; i++)
List[i] = newList[i];
delete[] newList;
return;
}
void CList::FreeMemory()
{
delete[] List;
}
void CList::GetProgramID(int id) const
{
int newListSize = 0;
for (int i = 0; i < listSize; i++)
if (List[i].getIndex() == id)
{
PrintOneEl(i);
newListSize++;
}
}
C_Program CList::Program1()
{
C_Program Program1;
Program1.setTime(25326);
Program1.setSize(2000);
Program1.setLines(500);
Program1.setIndex(123);
return Program1;
}
C_Program CList::Program2()
{
C_Program Program2;
Program2.setTime(55555);
Program2.setSize(11111);
Program2.setLines(22222);
Program2.setIndex(1234);
return Program2;
} | [
"[email protected]"
] | |
67e8f51b2c25d675ad837f1b73ce4f28bb3b3dd0 | f032d940041c31abbb3793689b813deadf19bf0a | /src/btl/trunk/mdna_iupac_gap_symbol.cc | 1f9afc3f6bff96c7e26ebce5e4cd329493e8a585 | [
"MIT"
] | permissive | akhudek/feast | f14143b6f932214841c33a8de3c92a4dff34efb7 | bb41ac122a9c0542a0fb71eec81ff5e872c556e5 | refs/heads/master | 2021-01-02T09:02:40.411542 | 2011-08-12T07:45:38 | 2011-08-12T07:45:38 | 2,195,735 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,536 | cc | /*
* mdna_iupac_gap_symbol.cc
* btl
*
* Created by Alexander K. Hudek on 2008-08-06.
* Copyright 2008 University of Waterloo. All rights reserved.
*
*/
#include "btl/mdna_iupac_gap.h"
#include "btl/mdna_iupac_gap_symbol.h"
#include "btl/mdna_symbol.h"
std::vector< std::vector<btl::mdna_iupac_gap_symbol> > btl::mdna_iupac_gap_rsets;
btl::mdna_iupac_gap_symbol::mdna_iupac_gap_symbol() : value(0) {}
btl::mdna_iupac_gap_symbol::mdna_iupac_gap_symbol( char const c ) { value = encode(c); }
btl::mdna_iupac_gap_symbol::mdna_iupac_gap_symbol( btl::mdna_iupac_gap_symbol const &o ) : value(o.value) {}
btl::mdna_iupac_gap_symbol::mdna_iupac_gap_symbol( btl::mdna_symbol const &o ) {
switch(o.value&127) {
case 0: value = 8; break;
case 1: value = 4; break;
case 2: value = 2; break;
case 4: value = 1; break;
}
value |= o.value&128;
}
void btl::mdna_iupac_gap_construct_rsets() {
using namespace btl;
mdna_iupac_gap_rsets.resize(16*2);
mdna_iupac_gap_rsets[mdna_iupac_gap::GAP.index()].push_back(mdna_iupac_gap::GAP);
mdna_iupac_gap_rsets[mdna_iupac_gap::G.index()].push_back(mdna_iupac_gap::G);
mdna_iupac_gap_rsets[mdna_iupac_gap::C.index()].push_back(mdna_iupac_gap::C);
mdna_iupac_gap_rsets[mdna_iupac_gap::S.index()].push_back(mdna_iupac_gap::C);
mdna_iupac_gap_rsets[mdna_iupac_gap::S.index()].push_back(mdna_iupac_gap::G);
mdna_iupac_gap_rsets[mdna_iupac_gap::T.index()].push_back(mdna_iupac_gap::T);
mdna_iupac_gap_rsets[mdna_iupac_gap::K.index()].push_back(mdna_iupac_gap::T);
mdna_iupac_gap_rsets[mdna_iupac_gap::K.index()].push_back(mdna_iupac_gap::G);
mdna_iupac_gap_rsets[mdna_iupac_gap::Y.index()].push_back(mdna_iupac_gap::C);
mdna_iupac_gap_rsets[mdna_iupac_gap::Y.index()].push_back(mdna_iupac_gap::T);
mdna_iupac_gap_rsets[mdna_iupac_gap::B.index()].push_back(mdna_iupac_gap::C);
mdna_iupac_gap_rsets[mdna_iupac_gap::B.index()].push_back(mdna_iupac_gap::T);
mdna_iupac_gap_rsets[mdna_iupac_gap::B.index()].push_back(mdna_iupac_gap::G);
mdna_iupac_gap_rsets[mdna_iupac_gap::A.index()].push_back(mdna_iupac_gap::A);
mdna_iupac_gap_rsets[mdna_iupac_gap::R.index()].push_back(mdna_iupac_gap::A);
mdna_iupac_gap_rsets[mdna_iupac_gap::R.index()].push_back(mdna_iupac_gap::G);
mdna_iupac_gap_rsets[mdna_iupac_gap::M.index()].push_back(mdna_iupac_gap::C);
mdna_iupac_gap_rsets[mdna_iupac_gap::M.index()].push_back(mdna_iupac_gap::A);
mdna_iupac_gap_rsets[mdna_iupac_gap::V.index()].push_back(mdna_iupac_gap::A);
mdna_iupac_gap_rsets[mdna_iupac_gap::V.index()].push_back(mdna_iupac_gap::C);
mdna_iupac_gap_rsets[mdna_iupac_gap::V.index()].push_back(mdna_iupac_gap::G);
mdna_iupac_gap_rsets[mdna_iupac_gap::W.index()].push_back(mdna_iupac_gap::A);
mdna_iupac_gap_rsets[mdna_iupac_gap::W.index()].push_back(mdna_iupac_gap::T);
mdna_iupac_gap_rsets[mdna_iupac_gap::D.index()].push_back(mdna_iupac_gap::A);
mdna_iupac_gap_rsets[mdna_iupac_gap::D.index()].push_back(mdna_iupac_gap::T);
mdna_iupac_gap_rsets[mdna_iupac_gap::D.index()].push_back(mdna_iupac_gap::G);
mdna_iupac_gap_rsets[mdna_iupac_gap::H.index()].push_back(mdna_iupac_gap::A);
mdna_iupac_gap_rsets[mdna_iupac_gap::H.index()].push_back(mdna_iupac_gap::T);
mdna_iupac_gap_rsets[mdna_iupac_gap::H.index()].push_back(mdna_iupac_gap::C);
mdna_iupac_gap_rsets[mdna_iupac_gap::N.index()].push_back(mdna_iupac_gap::A);
mdna_iupac_gap_rsets[mdna_iupac_gap::N.index()].push_back(mdna_iupac_gap::T);
mdna_iupac_gap_rsets[mdna_iupac_gap::N.index()].push_back(mdna_iupac_gap::C);
mdna_iupac_gap_rsets[mdna_iupac_gap::N.index()].push_back(mdna_iupac_gap::G);
// masked version
mdna_iupac_gap_rsets[16+mdna_iupac_gap::GAP.index()].push_back(mdna_iupac_gap::GAP.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::G.index()].push_back(mdna_iupac_gap::G.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::C.index()].push_back(mdna_iupac_gap::C.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::S.index()].push_back(mdna_iupac_gap::C.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::S.index()].push_back(mdna_iupac_gap::G.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::T.index()].push_back(mdna_iupac_gap::T.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::K.index()].push_back(mdna_iupac_gap::T.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::K.index()].push_back(mdna_iupac_gap::G.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::Y.index()].push_back(mdna_iupac_gap::C.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::Y.index()].push_back(mdna_iupac_gap::T.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::B.index()].push_back(mdna_iupac_gap::C.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::B.index()].push_back(mdna_iupac_gap::T.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::B.index()].push_back(mdna_iupac_gap::G.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::A.index()].push_back(mdna_iupac_gap::A.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::R.index()].push_back(mdna_iupac_gap::A.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::R.index()].push_back(mdna_iupac_gap::G.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::M.index()].push_back(mdna_iupac_gap::C.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::M.index()].push_back(mdna_iupac_gap::A.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::V.index()].push_back(mdna_iupac_gap::A.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::V.index()].push_back(mdna_iupac_gap::C.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::V.index()].push_back(mdna_iupac_gap::G.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::W.index()].push_back(mdna_iupac_gap::A.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::W.index()].push_back(mdna_iupac_gap::T.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::D.index()].push_back(mdna_iupac_gap::A.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::D.index()].push_back(mdna_iupac_gap::T.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::D.index()].push_back(mdna_iupac_gap::G.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::H.index()].push_back(mdna_iupac_gap::A.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::H.index()].push_back(mdna_iupac_gap::T.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::H.index()].push_back(mdna_iupac_gap::C.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::N.index()].push_back(mdna_iupac_gap::A.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::N.index()].push_back(mdna_iupac_gap::T.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::N.index()].push_back(mdna_iupac_gap::C.mask());
mdna_iupac_gap_rsets[16+mdna_iupac_gap::N.index()].push_back(mdna_iupac_gap::G.mask());
}
| [
"[email protected]"
] | |
619072ccf758eb7410f87c061e7bc555ca81e53d | 9bdba85032574a91b512815b0ad220ff2f285708 | /ModuleSceneHonda.cpp | 1885764b1e5e5f621c8111cad985f521467e970f | [] | no_license | luismoyano/Street-Fighter | 86e42d143049c91353966345e7949ed4a6e0004c | f8eb739855150cec1fa0e1ca7dde426815205ab9 | refs/heads/master | 2020-08-22T08:29:20.463480 | 2019-10-20T19:08:32 | 2019-10-20T19:08:32 | 216,356,687 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,011 | cpp | #include "Globals.h"
#include "Application.h"
#include "ModuleSceneHonda.h"
#include "ModuleRender.h"
#include "ModuleTextures.h"
#include "ModulePlayer.h"
#include "ModuleInput.h"
#include "ModuleAudio.h"
#include "ModuleFadeToBlack.h"
#include "SDL/include/SDL.h"
ModuleSceneHonda::ModuleSceneHonda(bool start_enabled) : Module(start_enabled)
{
// ground
ground.x = 8;
ground.y = 376;
ground.w = 850;
ground.h = 60;
//Pool thingy
foreground.x = 163;
foreground.y = 65;
foreground.w = 413;
foreground.h = 53;
// Background
background.x = 121;
background.y = 127;
background.w = 670;
background.h = 200;
// Roof
roof.x = 92;
roof.y = 9;
roof.w = 766;
roof.h = 50;
// TODO 4: Pool water thingy
pool.frames.push_back({ 9, 449, 284, 19 });
pool.frames.push_back({ 297, 448, 284, 19 });
pool.frames.push_back({ 583, 448, 284, 19 });
pool.speed = 0.02f;
}
ModuleSceneHonda::~ModuleSceneHonda()
{}
// Load assets
bool ModuleSceneHonda::Start()
{
LOG("Loading Honda scene");
graphics = App->textures->Load("honda_stage2.png");
// TODO 7: Enable the player module
App->player->Start();
// TODO 0: trigger background music --- DONE
App->audio->PlayMusic("honda.ogg");
return true;
}
// UnLoad assets
bool ModuleSceneHonda::CleanUp()
{
LOG("Unloading honda scene");
App->textures->Unload(graphics);
App->player->Disable();
return true;
}
// Update: draw background
update_status ModuleSceneHonda::Update()
{
// Draw everything --------------------------------------
App->renderer->Blit(graphics, -5, 170, &ground);
App->renderer->Blit(graphics, 0, 20, &background, 1.08f, 1.12f);
App->renderer->Blit(graphics, -50, 22, &roof, 1.08f, 1.12f);
App->renderer->Blit(graphics, 175, 150, &foreground, 1.05f, 1.1f);
App->renderer->Blit(graphics, 200, 163, &(pool.GetCurrentFrame()), 1.05f, 1.1f);
App->player->Update();
if (App->input->GetKey(SDL_SCANCODE_SPACE) == KEY_UP)
{
App->fade->FadeToBlack((Module*)App->scene_ken, this);
}
return UPDATE_CONTINUE;
} | [
"[email protected]"
] | |
e00ff5d63f087a8363c924f3f8bfc21dc9e25af7 | 983a93608369701c90a4d871aa47719f479994c8 | /test/instancing_test.cpp | 92e975e6a9273593cd830bee2c56b7d2342aa9e1 | [
"MIT"
] | permissive | opala-studios/rive-cpp | a5137e7af01c22b83e4542e53c44ae79acf880fa | 63bb2c2bc54ea0b866f62f04d18627bb59efe90a | refs/heads/master | 2023-05-07T21:24:58.899884 | 2021-05-28T15:47:50 | 2021-05-28T15:47:50 | 371,737,153 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,339 | cpp | #include "catch.hpp"
#include "core/binary_reader.hpp"
#include "file.hpp"
#include "no_op_renderer.hpp"
#include "node.hpp"
#include "shapes/clipping_shape.hpp"
#include "shapes/rectangle.hpp"
#include "shapes/shape.hpp"
#include <cstdio>
TEST_CASE("cloning an ellipse works", "[instancing]")
{
FILE* fp = fopen("../../test/assets/circle_clips.riv", "r");
REQUIRE(fp != nullptr);
fseek(fp, 0, SEEK_END);
auto length = ftell(fp);
fseek(fp, 0, SEEK_SET);
uint8_t* bytes = new uint8_t[length];
REQUIRE(fread(bytes, 1, length, fp) == length);
auto reader = rive::BinaryReader(bytes, length);
rive::File* file = nullptr;
auto result = rive::File::import(reader, &file);
REQUIRE(result == rive::ImportResult::success);
REQUIRE(file != nullptr);
REQUIRE(file->artboard() != nullptr);
auto node = file->artboard()->find<rive::Shape>("TopEllipse");
REQUIRE(node != nullptr);
auto clonedNode = node->clone()->as<rive::Shape>();
REQUIRE(node->x() == clonedNode->x());
REQUIRE(node->y() == clonedNode->y());
delete clonedNode;
delete file;
delete[] bytes;
}
TEST_CASE("instancing artboard clones clipped properties", "[instancing]")
{
FILE* fp = fopen("../../test/assets/circle_clips.riv", "r");
REQUIRE(fp != nullptr);
fseek(fp, 0, SEEK_END);
auto length = ftell(fp);
fseek(fp, 0, SEEK_SET);
uint8_t* bytes = new uint8_t[length];
REQUIRE(fread(bytes, 1, length, fp) == length);
auto reader = rive::BinaryReader(bytes, length);
rive::File* file = nullptr;
auto result = rive::File::import(reader, &file);
REQUIRE(result == rive::ImportResult::success);
REQUIRE(file != nullptr);
REQUIRE(file->artboard() != nullptr);
auto artboard = file->artboard()->instance();
auto node = artboard->find("TopEllipse");
REQUIRE(node != nullptr);
REQUIRE(node->is<rive::Shape>());
auto shape = node->as<rive::Shape>();
REQUIRE(shape->clippingShapes().size() == 2);
REQUIRE(shape->clippingShapes()[0]->source()->name() == "ClipRect2");
REQUIRE(shape->clippingShapes()[1]->source()->name() == "BabyEllipse");
artboard->updateComponents();
rive::NoOpRenderer renderer;
artboard->draw(&renderer);
delete artboard;
delete file;
delete[] bytes;
}
TEST_CASE("instancing artboard doesn't clone animations", "[instancing]")
{
FILE* fp = fopen("../../test/assets/juice.riv", "r");
REQUIRE(fp != nullptr);
fseek(fp, 0, SEEK_END);
auto length = ftell(fp);
fseek(fp, 0, SEEK_SET);
uint8_t* bytes = new uint8_t[length];
REQUIRE(fread(bytes, 1, length, fp) == length);
auto reader = rive::BinaryReader(bytes, length);
rive::File* file = nullptr;
auto result = rive::File::import(reader, &file);
REQUIRE(result == rive::ImportResult::success);
REQUIRE(file != nullptr);
REQUIRE(file->artboard() != nullptr);
auto artboard = file->artboard()->instance();
REQUIRE(file->artboard()->animationCount() == artboard->animationCount());
REQUIRE(file->artboard()->firstAnimation() == artboard->firstAnimation());
rive::LinearAnimation::deleteCount = 0;
delete artboard;
// Make sure no animations were deleted by deleting the instance.
REQUIRE(rive::LinearAnimation::deleteCount == 0);
size_t numberOfAnimations = file->artboard()->animationCount();
delete file;
// Now the animations should've been deleted.
REQUIRE(rive::LinearAnimation::deleteCount == numberOfAnimations);
delete[] bytes;
} | [
"[email protected]"
] | |
95b8b5868a099a70f5bb08af3fb48924447972ad | 87421b5912b9cb158a2e0d9396e1367a296c1dd0 | /src/test/amount_tests.cpp | 8183ca94f808f693ed2d5fe0b537b0d2ce54e6da | [
"MIT"
] | permissive | hendry19901990/babycoin | a76b4330e3b235ec989d87e5f01b07b0c81e11fe | c973192d7e877249b0c58127f10ea95083309993 | refs/heads/master | 2020-11-29T14:39:59.640269 | 2019-12-25T18:35:42 | 2019-12-25T18:35:42 | 230,134,399 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,669 | cpp | // Copyright (c) 2016 The Babycoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "amount.h"
#include "policy/feerate.h"
#include "test/test_babycoin.h"
#include <boost/test/unit_test.hpp>
BOOST_FIXTURE_TEST_SUITE(amount_tests, BasicTestingSetup)
BOOST_AUTO_TEST_CASE(MoneyRangeTest)
{
BOOST_CHECK_EQUAL(MoneyRange(CAmount(-1)), false);
BOOST_CHECK_EQUAL(MoneyRange(MAX_MONEY + CAmount(1)), false);
BOOST_CHECK_EQUAL(MoneyRange(CAmount(1)), true);
}
BOOST_AUTO_TEST_CASE(GetFeeTest)
{
CFeeRate feeRate, altFeeRate;
feeRate = CFeeRate(0);
// Must always return 0
BOOST_CHECK_EQUAL(feeRate.GetFee(0), 0);
BOOST_CHECK_EQUAL(feeRate.GetFee(1e5), 0);
feeRate = CFeeRate(1000);
// Must always just return the arg
BOOST_CHECK_EQUAL(feeRate.GetFee(0), 0);
BOOST_CHECK_EQUAL(feeRate.GetFee(1), 1);
BOOST_CHECK_EQUAL(feeRate.GetFee(121), 121);
BOOST_CHECK_EQUAL(feeRate.GetFee(999), 999);
BOOST_CHECK_EQUAL(feeRate.GetFee(1e3), 1e3);
BOOST_CHECK_EQUAL(feeRate.GetFee(9e3), 9e3);
feeRate = CFeeRate(-1000);
// Must always just return -1 * arg
BOOST_CHECK_EQUAL(feeRate.GetFee(0), 0);
BOOST_CHECK_EQUAL(feeRate.GetFee(1), -1);
BOOST_CHECK_EQUAL(feeRate.GetFee(121), -121);
BOOST_CHECK_EQUAL(feeRate.GetFee(999), -999);
BOOST_CHECK_EQUAL(feeRate.GetFee(1e3), -1e3);
BOOST_CHECK_EQUAL(feeRate.GetFee(9e3), -9e3);
feeRate = CFeeRate(123);
// Truncates the result, if not integer
BOOST_CHECK_EQUAL(feeRate.GetFee(0), 0);
BOOST_CHECK_EQUAL(feeRate.GetFee(8), 1); // Special case: returns 1 instead of 0
BOOST_CHECK_EQUAL(feeRate.GetFee(9), 1);
BOOST_CHECK_EQUAL(feeRate.GetFee(121), 14);
BOOST_CHECK_EQUAL(feeRate.GetFee(122), 15);
BOOST_CHECK_EQUAL(feeRate.GetFee(999), 122);
BOOST_CHECK_EQUAL(feeRate.GetFee(1e3), 123);
BOOST_CHECK_EQUAL(feeRate.GetFee(9e3), 1107);
feeRate = CFeeRate(-123);
// Truncates the result, if not integer
BOOST_CHECK_EQUAL(feeRate.GetFee(0), 0);
BOOST_CHECK_EQUAL(feeRate.GetFee(8), -1); // Special case: returns -1 instead of 0
BOOST_CHECK_EQUAL(feeRate.GetFee(9), -1);
// check alternate constructor
feeRate = CFeeRate(1000);
altFeeRate = CFeeRate(feeRate);
BOOST_CHECK_EQUAL(feeRate.GetFee(100), altFeeRate.GetFee(100));
// Check full constructor
// default value
BOOST_CHECK(CFeeRate(CAmount(-1), 1000) == CFeeRate(-1));
BOOST_CHECK(CFeeRate(CAmount(0), 1000) == CFeeRate(0));
BOOST_CHECK(CFeeRate(CAmount(1), 1000) == CFeeRate(1));
// lost precision (can only resolve satoshis per kB)
BOOST_CHECK(CFeeRate(CAmount(1), 1001) == CFeeRate(0));
BOOST_CHECK(CFeeRate(CAmount(2), 1001) == CFeeRate(1));
// some more integer checks
BOOST_CHECK(CFeeRate(CAmount(26), 789) == CFeeRate(32));
BOOST_CHECK(CFeeRate(CAmount(27), 789) == CFeeRate(34));
// Maximum size in bytes, should not crash
CFeeRate(MAX_MONEY, std::numeric_limits<size_t>::max() >> 1).GetFeePerK();
}
BOOST_AUTO_TEST_CASE(BinaryOperatorTest)
{
CFeeRate a, b;
a = CFeeRate(1);
b = CFeeRate(2);
BOOST_CHECK(a < b);
BOOST_CHECK(b > a);
BOOST_CHECK(a == a);
BOOST_CHECK(a <= b);
BOOST_CHECK(a <= a);
BOOST_CHECK(b >= a);
BOOST_CHECK(b >= b);
// a should be 0.00000002 BBC/kB now
a += a;
BOOST_CHECK(a == b);
}
BOOST_AUTO_TEST_CASE(ToStringTest)
{
CFeeRate feeRate;
feeRate = CFeeRate(1);
BOOST_CHECK_EQUAL(feeRate.ToString(), "0.00000001 BBC/kB");
}
BOOST_AUTO_TEST_SUITE_END()
| [
"[email protected]"
] | |
27a80eb683f05cca15696a6a660493fc12b29353 | 877fff5bb313ccd23d1d01bf23b1e1f2b13bb85a | /app/src/main/cpp/dir7941/dir22441/dir22442/dir22443/dir24650/dir24841/dir24842/file24869.cpp | b6ba2fc73caca0fad90de3b60c8a515ad8198ab7 | [] | no_license | tgeng/HugeProject | 829c3bdfb7cbaf57727c41263212d4a67e3eb93d | 4488d3b765e8827636ce5e878baacdf388710ef2 | refs/heads/master | 2022-08-21T16:58:54.161627 | 2020-05-28T01:54:03 | 2020-05-28T01:54:03 | 267,468,475 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 115 | cpp | #ifndef file24869
#error "macro file24869 must be defined"
#endif
static const char* file24869String = "file24869"; | [
"[email protected]"
] | |
b36bf4692fa5683c10d80594e40c4cef0ea601f9 | 80842a8223f9e97826916e98bdb75dddc8bed82b | /model/Level.cpp | 095026c5b5c7fcb1a7cc223987f25cec4f497732 | [] | no_license | TWVerstraaten/Blocks | 4cbd3f892f2b5202d2df30afe42c43b73e69a150 | 13268ab0c2e146a5d35d93c005b8b74c23872f3c | refs/heads/master | 2023-03-01T20:36:38.823087 | 2021-02-09T00:37:10 | 2021-02-09T00:37:10 | 321,815,870 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,953 | cpp | //
// Created by pc on 15-12-20.
//
#include "Level.h"
#include "../misc/defines.h"
#include "../misc/geom.h"
#include <cassert>
namespace model {
const std::map<GridXy, DYNAMIC_BLOCK_TYPE>& Level::dynamicBlocks() const {
return m_dynamicBLocks;
}
const std::map<GridXy, INSTANT_BLOCK_TYPE>& Level::instantBlocks() const {
return m_instantBLocks;
}
void Level::addBlock(const GridXy& gridXy, DYNAMIC_BLOCK_TYPE blockType) {
assert(not(m_dynamicBLocks.find(gridXy) != m_dynamicBLocks.end() && m_dynamicBLocks[gridXy] == blockType));
assert(m_floorBlocks.find(gridXy) != m_floorBlocks.end());
m_dynamicBLocks[gridXy] = blockType;
}
void Level::addBlock(const GridXy& gridXy, INSTANT_BLOCK_TYPE blockType) {
assert(not(m_instantBLocks.find(gridXy) != m_instantBLocks.end() && m_instantBLocks[gridXy] == blockType));
assert(m_floorBlocks.find(gridXy) != m_floorBlocks.end());
m_instantBLocks[gridXy] = blockType;
}
void Level::clear() {
m_floorBlocks.clear();
m_instantBLocks.clear();
m_dynamicBLocks.clear();
m_sides.clear();
m_stoppedClusters.clear();
}
bool Level::isFreeStartBlock(const GridXy& gridXy) const {
D_NOTE_ONCE("Handle starting positions")
if (m_floorBlocks.find(gridXy) == m_floorBlocks.end()) {
return false;
}
if (m_instantBLocks.find(gridXy) != m_instantBLocks.end()) {
return false;
}
if (m_dynamicBLocks.find(gridXy) != m_dynamicBLocks.end()) {
return false;
}
if (std::find_if(D_CIT(m_stoppedClusters), D_FUNC(cluster, cluster.contains(gridXy))) != m_stoppedClusters.end()) {
return false;
}
return true;
}
const WorldLineVector& Level::sides() const {
return m_sides;
}
bool Level::contains(const GridXy& gridXy) const {
return m_floorBlocks.find(gridXy) != m_floorBlocks.end();
}
void Level::buildSides() {
GridXyVector blocks;
for (const auto& [point, _] : m_floorBlocks) {
blocks.emplace_back(point);
}
m_sides = geom::getSidesFromGridXy(blocks);
for (auto& cluster : m_stoppedClusters) {
cluster.buildSides();
auto clusterSides = geom::getSidesFromGridXy(cluster.gridXyVector());
std::copy(D_CIT(clusterSides), std::back_inserter(clusterSides));
}
}
void Level::addBlock(const GridXy& gridXy, FLOOR_BLOCK_TYPE blockType) {
m_floorBlocks[gridXy] = blockType;
}
void Level::removeBlock(const GridXy& gridXy, DYNAMIC_BLOCK_TYPE blockType) {
assert(m_dynamicBLocks.find(gridXy) != m_dynamicBLocks.end() && m_dynamicBLocks[gridXy] == blockType);
m_dynamicBLocks.erase(gridXy);
}
void Level::removeBlock(const GridXy& gridXy, INSTANT_BLOCK_TYPE blockType) {
assert(m_instantBLocks.find(gridXy) != m_instantBLocks.end() && m_instantBLocks[gridXy] == blockType);
m_instantBLocks.erase(gridXy);
}
void Level::removeBlock(const GridXy& gridXy, [[maybe_unused]] FLOOR_BLOCK_TYPE blockType) {
assert(m_floorBlocks.find(gridXy) != m_floorBlocks.end());
m_floorBlocks.erase(gridXy);
}
std::vector<GridXyContainer>& Level::stoppedClusters() {
return m_stoppedClusters;
}
const std::vector<GridXyContainer>& Level::stoppedClusters() const {
return m_stoppedClusters;
}
const std::map<GridXy, FLOOR_BLOCK_TYPE>& Level::floorBlocks() const {
return m_floorBlocks;
}
GridXyVector Level::blocks(FLOOR_BLOCK_TYPE blockType) const {
GridXyVector result;
for (const auto& [point, type] : m_floorBlocks) {
if (type == blockType) {
result.emplace_back(point);
}
}
return result;
}
} // namespace model | [
"[email protected]"
] | |
da584e8cf6843355fa681bc26453577e02641c4f | e0a3c9fa7144899a1fb49d2f2cbe89295c8a34b2 | /codeforces/763D.cpp | f9446f4a0e64481e36c92ad980142c35d41dce3e | [] | no_license | hiaatcnd/code | 20cd1e034c0d8b6774806bd930e93bba1e727084 | abbd8bc0b2fc64601a8d5041e290b5afebe4f38c | refs/heads/master | 2022-03-23T22:25:55.964669 | 2022-03-07T12:57:28 | 2022-03-07T12:57:28 | 56,978,329 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,310 | cpp | #include <bits/stdc++.h>
using namespace std;
#define all(x) x.begin(), x.end()
#define ll int
#define pb push_back
const int maxn = 100100;
int n, u, v, m;
vector<int> g[maxn], d[maxn];
map<ll, int> mp;
vector<ll> son[maxn];
ll has[maxn];
int f[maxn];
int cnt[maxn], c[maxn], dep[maxn];
int main(){
freopen("x.in", "r", stdin);
freopen("x.out", "w", stdout);
scanf("%d", &n);
for(int i = 1; i < n; ++i){
scanf("%d%d", &u, &v);
g[u].pb(v);
g[v].pb(u);
cnt[u]++;
cnt[v]++;
}
if(n == 1) { printf("1\n"); return 0; }
mp[1] = m = 1;
int res = n;
for(int i = 1; i <= n; ++i)
if(cnt[i] == 1) d[0].pb(i), c[1]++, res--, dep[i] = 1, has[i] = 1;
int cyc;
for(cyc = 1; res; ++cyc){
for(auto u : d[cyc - 1]){
for(auto v : g[u]){
if(dep[v]) continue;
cnt[v]--;
son[v].pb(has[u]);
if(cnt[v] == 1) d[cyc].pb(v), res--;
}
}
for(auto u : d[cyc]){
dep[u] = cyc + 1;
sort(all(son[u]));
has[u] = 1;
for(auto v : son[u])
has[u] = has[u] * (n + 1) + v;
if(!mp[has[u]]) mp[has[u]] = ++m;
has[u] = mp[has[u]];
c[has[u]]++;
}
}
int mx = 1;
for(int i = cyc - 1; i >= 0; --i)
for(auto u : d[i]){
if(c[has[u]] > 1) f[u]++;
for(auto v : g[u])
if(dep[v] < dep[u]) f[v] = f[u];
if(f[u] > f[mx]) mx = u;
}
printf("%d\n", mx);
return 0;
}
| [
"[email protected]"
] | |
7474dc78f7674a69e4d1f38f2e3e393ef066a5ce | d6a07e37d3a8dab291df3aee66225a6bbef8b544 | /listas 3ª prova/lista2/exe5_lista2/exe5_lista2.cpp | cd4ca6bb977d7a5ec478af14b469467d336de1ba | [] | no_license | Luiz1996/Fundamentos_de_Algoritmos | 596167f8bab92970d4805e671bb30a16f4c153d4 | d5d23b1ada3f03df8538aefdb7101a281180ee39 | refs/heads/master | 2020-05-17T16:35:18.538946 | 2019-04-27T21:25:43 | 2019-04-27T21:25:43 | null | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 742 | cpp | /*Faça um programa que receba do usuário um arquivo texto. Crie outro arquivo texto contendo
o texto do arquivo de entrada, mas com as vogais substituídas por "*".*/
#include <stdio.h>
int main(void){
FILE *p_leitura = fopen("original.txt", "r");
char caracter = '\n', caracter_escolhido;
FILE *p_escrita = fopen("resultado.txt", "w");
caracter = fgetc(p_leitura);
while(caracter != EOF){
if(caracter == 'a' or caracter == 'A' or caracter == 'e' or caracter == 'E' or caracter == 'i' or caracter == 'I' or caracter == 'o' or caracter == 'O' or caracter == 'u' or caracter == 'U' )
fputc('*', p_escrita);
else
fputc(caracter, p_escrita);
caracter = fgetc(p_leitura);
}
printf("Importacao terminada com exito!");
}
| [
"[email protected]"
] | |
648e3f013ed48a79997f64be8b23dffc8ad40d8f | b4a24beb5fd4a94ae795e1530d90b136e53cd416 | /OOP/Lab 1/Q7.c++ | d5a1b47f65b548d5a39b32067337443cf87f30da | [] | no_license | Ritik-09/MyCodes | 2cff828952772f7d6d91f33faeb5e13fabc4295a | abe4d6ef64fe3d86119e8dc82736de34fe4772bf | refs/heads/main | 2023-08-20T12:25:54.396307 | 2021-10-23T18:11:04 | 2021-10-23T18:11:04 | 415,678,243 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 582 | #include <iostream>
using namespace std;
int main()
{
int n,t=0;
cout<<"Enter a number to find the last prime number occurs before the number: ";
cin>>n;
for (int i=n-1;i>=1;i--)
{
for (int m=2;m<i;m++)
{
if (i%m==0)
t++;
}
if (t==0)
{
if (i==1)
{
cout<<"no prime number less than 2";
break;
}
cout<<i<<" is the last prime number before "<<n<<endl;
break;
}
t=0;
}
return 0;
}
| [
"[email protected]"
] | ||
2448c1b73d50ebe1ffc893ea92da7a2edbf0062c | 4296e51c67eb12c83bd01c9eb93d1cd1fd1852ef | /export/windows/obj/src/flixel/system/debug/interaction/tools/_Transform/GraphicTransformCursorScaleY.cpp | d435e5bc46365c59eccb8e747abbb9b0f4ddb7b7 | [] | no_license | Jmacklin308/HaxeFlixel_DungeonCrawler | de23d7e86deb2fa3c2f135e6cc664b68bd1c8515 | e5b7cdf540913a8c2e9e1fdc4780831a9b823856 | refs/heads/main | 2023-06-26T14:33:12.532371 | 2021-07-18T04:03:18 | 2021-07-18T04:03:18 | 386,560,939 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 7,859 | cpp | // Generated by Haxe 4.2.1+bf9ff69
#include <hxcpp.h>
#ifndef INCLUDED_flixel_system_debug_interaction_tools__Transform_GraphicTransformCursorScaleY
#include <flixel/system/debug/interaction/tools/_Transform/GraphicTransformCursorScaleY.h>
#endif
#ifndef INCLUDED_haxe_Resource
#include <haxe/Resource.h>
#endif
#ifndef INCLUDED_haxe_io_Bytes
#include <haxe/io/Bytes.h>
#endif
#ifndef INCLUDED_lime_graphics_Image
#include <lime/graphics/Image.h>
#endif
#ifndef INCLUDED_openfl_display_BitmapData
#include <openfl/display/BitmapData.h>
#endif
#ifndef INCLUDED_openfl_display_IBitmapDrawable
#include <openfl/display/IBitmapDrawable.h>
#endif
#ifndef INCLUDED_openfl_utils_ByteArrayData
#include <openfl/utils/ByteArrayData.h>
#endif
#ifndef INCLUDED_openfl_utils_IDataInput
#include <openfl/utils/IDataInput.h>
#endif
#ifndef INCLUDED_openfl_utils_IDataOutput
#include <openfl/utils/IDataOutput.h>
#endif
#ifndef INCLUDED_openfl_utils__ByteArray_ByteArray_Impl_
#include <openfl/utils/_ByteArray/ByteArray_Impl_.h>
#endif
HX_DEFINE_STACK_FRAME(_hx_pos_bbbcf5894db4a3cf_47_new,"flixel.system.debug.interaction.tools._Transform.GraphicTransformCursorScaleY","new",0x69e275e5,"flixel.system.debug.interaction.tools._Transform.GraphicTransformCursorScaleY.new","openfl/utils/_internal/AssetsMacro.hx",47,0xfdd54705)
HX_LOCAL_STACK_FRAME(_hx_pos_3b7ca870e5742c90_25_boot,"flixel.system.debug.interaction.tools._Transform.GraphicTransformCursorScaleY","boot",0x345db30d,"flixel.system.debug.interaction.tools._Transform.GraphicTransformCursorScaleY.boot","flixel/system/debug/interaction/tools/Transform.hx",25,0xb006466c)
namespace flixel{
namespace _hx_system{
namespace debug{
namespace interaction{
namespace tools{
namespace _Transform{
void GraphicTransformCursorScaleY_obj::__construct(int width,int height, ::Dynamic __o_transparent, ::Dynamic __o_fillRGBA){
::Dynamic transparent = __o_transparent;
if (::hx::IsNull(__o_transparent)) transparent = true;
::Dynamic fillRGBA = __o_fillRGBA;
if (::hx::IsNull(__o_fillRGBA)) fillRGBA = -1;
HX_STACKFRAME(&_hx_pos_bbbcf5894db4a3cf_47_new)
HXLINE( 71) super::__construct(0,0,transparent,fillRGBA);
HXLINE( 73) ::openfl::utils::ByteArrayData byteArray = ::openfl::utils::_ByteArray::ByteArray_Impl__obj::fromBytes(::haxe::Resource_obj::getBytes(::flixel::_hx_system::debug::interaction::tools::_Transform::GraphicTransformCursorScaleY_obj::resourceName));
HXLINE( 74) {
HXLINE( 74) ::openfl::utils::ByteArrayData rawAlpha = null();
HXDLIN( 74) ::lime::graphics::Image image = ::lime::graphics::Image_obj::fromBytes(::openfl::utils::_ByteArray::ByteArray_Impl__obj::toBytes(byteArray));
HXDLIN( 74) this->_hx___fromImage(image);
HXDLIN( 74) if (::hx::IsNotNull( rawAlpha )) {
HXLINE( 74) this->_hx___applyAlpha(rawAlpha);
}
}
}
Dynamic GraphicTransformCursorScaleY_obj::__CreateEmpty() { return new GraphicTransformCursorScaleY_obj; }
void *GraphicTransformCursorScaleY_obj::_hx_vtable = 0;
Dynamic GraphicTransformCursorScaleY_obj::__Create(::hx::DynamicArray inArgs)
{
::hx::ObjectPtr< GraphicTransformCursorScaleY_obj > _hx_result = new GraphicTransformCursorScaleY_obj();
_hx_result->__construct(inArgs[0],inArgs[1],inArgs[2],inArgs[3]);
return _hx_result;
}
bool GraphicTransformCursorScaleY_obj::_hx_isInstanceOf(int inClassId) {
if (inClassId<=(int)0x073e5103) {
return inClassId==(int)0x00000001 || inClassId==(int)0x073e5103;
} else {
return inClassId==(int)0x321a0f27;
}
}
::String GraphicTransformCursorScaleY_obj::resourceName;
::hx::ObjectPtr< GraphicTransformCursorScaleY_obj > GraphicTransformCursorScaleY_obj::__new(int width,int height, ::Dynamic __o_transparent, ::Dynamic __o_fillRGBA) {
::hx::ObjectPtr< GraphicTransformCursorScaleY_obj > __this = new GraphicTransformCursorScaleY_obj();
__this->__construct(width,height,__o_transparent,__o_fillRGBA);
return __this;
}
::hx::ObjectPtr< GraphicTransformCursorScaleY_obj > GraphicTransformCursorScaleY_obj::__alloc(::hx::Ctx *_hx_ctx,int width,int height, ::Dynamic __o_transparent, ::Dynamic __o_fillRGBA) {
GraphicTransformCursorScaleY_obj *__this = (GraphicTransformCursorScaleY_obj*)(::hx::Ctx::alloc(_hx_ctx, sizeof(GraphicTransformCursorScaleY_obj), true, "flixel.system.debug.interaction.tools._Transform.GraphicTransformCursorScaleY"));
*(void **)__this = GraphicTransformCursorScaleY_obj::_hx_vtable;
__this->__construct(width,height,__o_transparent,__o_fillRGBA);
return __this;
}
GraphicTransformCursorScaleY_obj::GraphicTransformCursorScaleY_obj()
{
}
bool GraphicTransformCursorScaleY_obj::__GetStatic(const ::String &inName, Dynamic &outValue, ::hx::PropertyAccess inCallProp)
{
switch(inName.length) {
case 12:
if (HX_FIELD_EQ(inName,"resourceName") ) { outValue = ( resourceName ); return true; }
}
return false;
}
bool GraphicTransformCursorScaleY_obj::__SetStatic(const ::String &inName,Dynamic &ioValue,::hx::PropertyAccess inCallProp)
{
switch(inName.length) {
case 12:
if (HX_FIELD_EQ(inName,"resourceName") ) { resourceName=ioValue.Cast< ::String >(); return true; }
}
return false;
}
#ifdef HXCPP_SCRIPTABLE
static ::hx::StorageInfo *GraphicTransformCursorScaleY_obj_sMemberStorageInfo = 0;
static ::hx::StaticInfo GraphicTransformCursorScaleY_obj_sStaticStorageInfo[] = {
{::hx::fsString,(void *) &GraphicTransformCursorScaleY_obj::resourceName,HX_("resourceName",39,7a,62,90)},
{ ::hx::fsUnknown, 0, null()}
};
#endif
static void GraphicTransformCursorScaleY_obj_sMarkStatics(HX_MARK_PARAMS) {
HX_MARK_MEMBER_NAME(GraphicTransformCursorScaleY_obj::resourceName,"resourceName");
};
#ifdef HXCPP_VISIT_ALLOCS
static void GraphicTransformCursorScaleY_obj_sVisitStatics(HX_VISIT_PARAMS) {
HX_VISIT_MEMBER_NAME(GraphicTransformCursorScaleY_obj::resourceName,"resourceName");
};
#endif
::hx::Class GraphicTransformCursorScaleY_obj::__mClass;
static ::String GraphicTransformCursorScaleY_obj_sStaticFields[] = {
HX_("resourceName",39,7a,62,90),
::String(null())
};
void GraphicTransformCursorScaleY_obj::__register()
{
GraphicTransformCursorScaleY_obj _hx_dummy;
GraphicTransformCursorScaleY_obj::_hx_vtable = *(void **)&_hx_dummy;
::hx::Static(__mClass) = new ::hx::Class_obj();
__mClass->mName = HX_("flixel.system.debug.interaction.tools._Transform.GraphicTransformCursorScaleY",73,9f,d6,3a);
__mClass->mSuper = &super::__SGetClass();
__mClass->mConstructEmpty = &__CreateEmpty;
__mClass->mConstructArgs = &__Create;
__mClass->mGetStaticField = &GraphicTransformCursorScaleY_obj::__GetStatic;
__mClass->mSetStaticField = &GraphicTransformCursorScaleY_obj::__SetStatic;
__mClass->mMarkFunc = GraphicTransformCursorScaleY_obj_sMarkStatics;
__mClass->mStatics = ::hx::Class_obj::dupFunctions(GraphicTransformCursorScaleY_obj_sStaticFields);
__mClass->mMembers = ::hx::Class_obj::dupFunctions(0 /* sMemberFields */);
__mClass->mCanCast = ::hx::TCanCast< GraphicTransformCursorScaleY_obj >;
#ifdef HXCPP_VISIT_ALLOCS
__mClass->mVisitFunc = GraphicTransformCursorScaleY_obj_sVisitStatics;
#endif
#ifdef HXCPP_SCRIPTABLE
__mClass->mMemberStorageInfo = GraphicTransformCursorScaleY_obj_sMemberStorageInfo;
#endif
#ifdef HXCPP_SCRIPTABLE
__mClass->mStaticStorageInfo = GraphicTransformCursorScaleY_obj_sStaticStorageInfo;
#endif
::hx::_hx_RegisterClass(__mClass->mName, __mClass);
}
void GraphicTransformCursorScaleY_obj::__boot()
{
{
HX_STACKFRAME(&_hx_pos_3b7ca870e5742c90_25_boot)
HXDLIN( 25) resourceName = HX_("__ASSET__:bitmap_flixel_system_debug_interaction_tools__Transform_GraphicTransformCursorScaleY",ab,65,6b,08);
}
}
} // end namespace flixel
} // end namespace system
} // end namespace debug
} // end namespace interaction
} // end namespace tools
} // end namespace _Transform
| [
"[email protected]"
] | |
0328d8b2e70dcbbe6534b08564f0b3de339d45c9 | 7e2e71956fdf70da787bf4edcfcf7ecd34fd9c99 | /o2Engine/Sources/Assets/Builder/ImageAssetConverter.h | e3e3c307bf43cb9ac9c658f950c24e307a1e8a39 | [] | no_license | dmitrykolesnikovich/o2 | 579abb53c805b117d11986017dcdb50f50d75409 | c1b9038c6f56466ab96544c0e9424e4b9baf6553 | refs/heads/master | 2020-03-13T00:31:46.701057 | 2018-04-23T19:33:58 | 2018-04-23T19:33:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,112 | h | #pragma once
#include "IAssetConverter.h"
namespace o2
{
// ---------------------
// Image asset converter
// ---------------------
class ImageAssetConverter: public IAssetConverter
{
public:
// Returns vector of processing assets types
Vector<const Type*> GetProcessingAssetsTypes() const;
// Converts image
void ConvertAsset(const AssetTree::AssetNode& node);
// Removes image
void RemoveAsset(const AssetTree::AssetNode& node);
// Moves image to new path
void MoveAsset(const AssetTree::AssetNode& nodeFrom, const AssetTree::AssetNode& nodeTo);
IOBJECT(ImageAssetConverter);
};
}
CLASS_BASES_META(o2::ImageAssetConverter)
{
BASE_CLASS(o2::IAssetConverter);
}
END_META;
CLASS_FIELDS_META(o2::ImageAssetConverter)
{
}
END_META;
CLASS_METHODS_META(o2::ImageAssetConverter)
{
PUBLIC_FUNCTION(Vector<const Type*>, GetProcessingAssetsTypes);
PUBLIC_FUNCTION(void, ConvertAsset, const AssetTree::AssetNode&);
PUBLIC_FUNCTION(void, RemoveAsset, const AssetTree::AssetNode&);
PUBLIC_FUNCTION(void, MoveAsset, const AssetTree::AssetNode&, const AssetTree::AssetNode&);
}
END_META;
| [
"[email protected]"
] | |
afd1cd2b5e04af4f80125d790ca4be3b90b15cb6 | 7cf7bfe773cb5c182140a0bdb6fceadf60ffbed5 | /Project3/Board.h | 82e64775e30bf5343bafb7b7b1dde4e8916a1a34 | [] | no_license | adeeb18/Minesweeper | 19bf4d853e30710884235541251150210d46113c | 362b2e5ba5406375be3fca9fdc876761321d2312 | refs/heads/main | 2023-07-03T01:09:35.713551 | 2021-08-06T17:40:22 | 2021-08-06T17:40:22 | 393,454,362 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,238 | h | #pragma once
#include <SFML/Graphics.hpp>
#include <unordered_map>
#include <string>
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <iomanip>
#include <iostream>
#include <fstream>
#include "Tile.h"
using namespace std;
class Board {
int rows;
int cols;
int height;
int width;
int totalTiles;
int numMines;
int configReadMines;
bool debugMode;
bool gameOver;
bool gameWon;
int tilesRevealed;
int numFlags;
vector<int> tileTruthValues;
vector<vector<Tile>> Tiles;
vector<vector<int>> Test1;
int Test1NumMines;
vector<vector<int>> Test2;
int Test2NumMines;
vector<vector<int>> Test3;
int Test3NumMines;
sf::Sprite smiley;
sf::Sprite debugIcon;
sf::Sprite test1;
sf::Sprite test2;
sf::Sprite test3;
sf::Sprite onesPlace;
sf::Sprite tensPlace;
sf::Sprite hundredsPlace;
sf::Sprite negative;
public:
Board(int cols, int rows, int mines, int height, int width);
vector<vector<int>> SetRandomValues();
void CreateTileArray();
void Draw(sf::RenderWindow& window);
void DrawTiles(sf::RenderWindow &window);
void DrawMenu(sf::RenderWindow& window);
void Adjust(sf::RenderWindow& window);
void SetValue(vector<vector<int>> truths);
void RecursiveCheck(Tile *tile);
void ReadTestCases();
}; | [
"[email protected]"
] | |
e11ba9ebe3f8d98924f98e5059503cea790a7ecd | b2a263fc5fb54e623eaf3a8e3d63209cbd08ead4 | /include/pfs/v1/fs.old/traits.hpp | 044dd55b1b225b52c0c36cbe1a67e338a1af4ce3 | [] | no_license | semenovf/pfs | 3679961bc7d3e5514fe4aafe18bea7be4d238c2f | 682c9d42a1ccb63e1d8117014877e7d96254f672 | refs/heads/master | 2021-07-19T06:08:10.048568 | 2019-04-02T06:03:30 | 2019-04-02T06:03:30 | 80,082,005 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,294 | hpp | #ifndef __PFS_FS_TRAITS_HPP__
#define __PFS_FS_TRAITS_HPP__
#include <pfs/traits/list.hpp>
#include <pfs/string.hpp>
#include <pfs/string_builder.hpp>
namespace pfs {
namespace fs {
template <typename StringT
, template <typename> class ListT>
struct traits
{
typedef pfs::string<StringT> string_type;
typedef typename string_type::value_type char_type;
typedef pfs::traits::list<string_type, ListT> stringlist_type;
typedef pfs::string_builder<char_type> string_builder_type;
template <typename T>
struct list
{
typedef pfs::traits::list<T, ListT> type;
};
static bool is_separator (char_type c)
{
return c == char_type('/'); // POSIX API
// return c == char_type('/') || c == char_type('\\'); // Windows API
}
// Preferred separator
static char_type separator ()
{
return char_type('/'); // POSIX API
//return char_type('\\'); // Windows API
}
class filesystem_error
{
string_type _msg;
public:
explicit filesystem_error (string_type const & arg);
string_type const & what () const noexcept
{
return _msg;
}
};
};
}} // pfs::cli
#endif /* __PFS_FS_TRAITS_HPP__ */
| [
"[email protected]"
] | |
f737d7dd9987727bec3b2493401309ef208f50ed | a173362f26afb40664552bcf09a813b241334d30 | /app/myApp/control/Inertia.hpp | 5daeac46c9ba0fd8661b6c1438666a7a7c2b4e6e | [] | no_license | simonfink/VTDelta | 5631caab12d1409d7d3e2b2a2f51bab24ddae757 | 5e5c055d12574efb5cc80f2d80d9dcdad696c128 | refs/heads/master | 2021-09-24T14:25:01.284451 | 2018-10-10T10:17:07 | 2018-10-10T10:17:07 | 125,205,201 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,021 | hpp | #ifndef CH_NTB_EEDURO_DELTA_INERTIA_HPP
#define CH_NTB_EEDURO_DELTA_INERTIA_HPP
#include <eeros/control/Block.hpp>
#include <eeros/control/Input.hpp>
#include <eeros/control/Output.hpp>
#include "types.hpp"
#include "Jacobian.hpp"
namespace eeduro {
namespace delta {
class Inertia : public eeros::control::Block {
public:
Inertia(Jacobian &jacobi);
virtual void run();
virtual eeros::control::Input<AxisVector>& getAccelerationInput();
virtual eeros::control::Input<AxisVector>& getTcpPosInput();
virtual eeros::control::Input<AxisVector>& getJointPosInput();
virtual eeros::control::Output<AxisVector>& getOut();
protected:
eeros::control::Input<AxisVector> accelerationIn;
eeros::control::Input<AxisVector> tcpPosIn;
eeros::control::Input<AxisVector> jointPosIn;
eeros::control::Output<AxisVector> forceOut;
eeros::math::Matrix<3,3> tcpMass;
eeros::math::Matrix<3,3> motorInertia;
Jacobian &jacobi;
};
}
}
#endif /* CH_NTB_EEDURO_DELTA_INERTIA_HPP */
| [
"[email protected]"
] | |
35918015dd0f565a3bc5d01c071c41b27f7c3e87 | 794a740a3901268ee19576e08c88f7e56611fe5c | /Online Judges/Atcoder/potato/d.cpp | aa9de5b5483006397a44ce7420cf2ed0e30fc94b | [] | no_license | thisiscaau/cp-archive | fa6396cc4a38b9f6aade3fc6652da57e1be9ef3f | 4a2d89bb164c07e45f20ee7c5c98e5a7a73a969a | refs/heads/main | 2023-04-26T22:02:48.215762 | 2021-05-14T14:47:33 | 2021-05-14T14:47:33 | 331,367,301 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,702 | cpp | /* thisiscaau's code
What’s happened happened. Which is an expression of faith
in the mechanics of the world. It’s not an excuse to do nothing.
*/
/* shortcuts */
/*#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")*/
// for emergency cases
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define fi first
#define se second
#define pb push_back
#define mp make_pair
typedef pair<ll,ll> ii;
typedef vector<ii> vii;
/* constants */
ll const inf = 1e9 + 7, MAXN = 1e5 + 5;
/* declaration */
ll n,m,tc;
/* workspace */
vector<ii> g[MAXN];
struct edge {
ll node,last,fare;
bool operator > (const edge& other) const {
return fare > other.fare;
}
};
ll d[MAXN];
priority_queue<edge,vector<edge>,greater<edge>> pq;
signed main(){
ios_base::sync_with_stdio(false);
cin.tie(0);cout.tie(0);
cin >> n >> m;
for (int i = 1 ; i <= m ; i++){
ll u,v,s;
cin >> u >> v >> s;
g[u].pb(mp(v,s));
g[v].pb(mp(u,s));
}
memset(d,inf,sizeof(d));
d[1] = 0;
edge ori; ori.node = 1; ori.fare = 0; ori.last = 0;
pq.push(ori);
while (!pq.empty()){
edge cur = pq.top(); pq.pop();
if (d[cur.node] != cur.fare) continue;
for (ii nxt : g[cur.node]){
edge upd;
upd.last = (cur.last != nxt.se) ? nxt.se : cur.last;
upd.fare = (cur.last != nxt.se) ? cur.fare + 1 : cur.fare;
upd.node = nxt.fi;
if (upd.fare < d[upd.node]){
d[upd.node] = upd.fare;
pq.push(upd);
}
}
}
if (d[n] >= inf) cout << "-1";
else cout << d[n];
} | [
"[email protected]"
] | |
95ebbd49990ef29dc4efd6d50934d749689cdbaa | 29627500e0071b7e6b91dff4a3b56ca6a1e016d0 | /partix/include/partix/partix_rigid.hpp | 772d84e1877d876a51cb9a6a540499b8bd3f3ec5 | [] | no_license | jonigata/yamadumi | 1675431ed38082a7d9740a8d1d82a1c0df8c4f9f | 276bc97e30f2622018f263e7367f771a0f476bfc | refs/heads/master | 2021-03-12T21:50:23.589921 | 2014-09-23T13:11:43 | 2014-09-23T13:11:43 | null | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 11,455 | hpp | /*!
@file partix_rigid.hpp
@brief <概要>
<説明>
$Id: partix_rigid.hpp 252 2007-06-23 08:32:33Z naoyuki $
WARNING: このモジュールメンテナンスしてない
*/
#ifndef PARTIX_RIGID_HPP
#define PARTIX_RIGID_HPP
#include "partix_body.hpp"
#include "partix_math.hpp"
namespace partix {
template < class Traits >
class RigidSnapShot : public BodySnapShot< Traits > {
public:
typedef typename Traits::float_type float_type;
typedef typename Traits::vector_type vector_type;
typedef typename Traits::matrix_type matrix_type;
BodySnapShot< Traits >* clone()
{
return new RigidSnapShot< Traits >( *this );
}
vector_type global_force;
matrix_type transform;
vector_type bbmin;
vector_type bbmax;
float_type mass;
float_type mass_inv;
vector_type position;
float_type inertia_tensor[9];
float_type inertia_tensor_inv[9];
float_type orientation[9];
quaternion< float_type > quaternion;
vector_type linear_momentum;
vector_type angular_momentum;
vector_type linear_velocity;
vector_type angular_velocity;
};
template < class Traits >
class Rigid : public Mesh< Traits > {
public:
typedef typename Traits::index_type index_type;
typedef typename Traits::float_type float_type;
typedef typename Traits::vector_type vector_type;
Rigid(){ clear(); }
~Rigid(){ clear(); }
int classid() { return 2; }
RigidSnapShot< Traits >* make_snapshot() {return make_snapshot_internal(); }
void apply_snapshot( const BodySnapShot< Traits >* ss ) { apply_snapshot_internal( ss ); }
void clear()
{
initialized_ = false;
Mesh< Traits >::clear();
}
void restart()
{
start();
initialized_ = true;
}
void apply_inertia( float_type dt, float_type idt )
{
// position
position_ += linear_velocity_ * dt;
// orientation
vector_type v = angular_velocity_ * ( dt * 0.5f );
quaternion_ *= quaternion< float_type >( v.x, v.y, v.z, float_type( 1.0 ) );
}
void apply_forces( float_type dt, float_type idt )
{
}
void update_boundingbox()
{
}
void prepare_render()
{
quaternion_.normalize();
float_type m[9];
quaternion_.make_matrix( m );
Traits::make_matrix( transform_, m, position_ );
}
void add_linear_momenutm( const vector_type& v ) { linear_momentum_ += v; }
void add_angular_momentum( const vector_type& v ) { angular_momentum_ += v; }
void add_linear_velocity( const vector_type& v ) { linear_velocity_ += v; }
void add_angular_velocity( const vector_type& v ) { angular_velocity_ += v; }
// implements ImpulseReceiver
float_type get_mass_inv() { return mass_inv_; }
const float_type* get_inertia_tensor_inv()
{
static const float_type tensor[] = {
float_type( 1.0 ), 0, 0,
0, float_type( 1.0 ), 0,
0, 0, float_type( 1.0 ),
};
return tensor;
}
vector_type get_position() { return position_; }
vector_type get_velocity( const vector_type& relative_position )
{
return linear_velocity_ + math< Traits >::cross( angular_velocity_, relative_position );
}
void apply_active_impulse( const vector_type& impulse, const vector_type& relative_position )
{
linear_velocity_ += impulse * mass_inv_;
vector_type torque = math< Traits >::cross( relative_position, impulse );
vector_type v; math< Traits >::transform_vector( v, get_inertia_tensor_inv(), torque );
angular_velocity_ += v;
}
void apply_passive_impulse( const vector_type& impulse, const vector_type& relative_position )
{
apply_active_impulse( -impulse, relative_position );
}
vector_type get_center() { return position_; }
private:
Rigid( const Rigid& ){}
void operator=( const Rigid& ){}
private:
RigidSnapShot< Traits >* make_snapshot_internal()
{
// 所有権はSnapShotに移動する
RigidSnapShot< Traits >* es = new RigidSnapShot< Traits >;
es->global_force = get_global_force();
es->transform = transform_;
es->bbmin = bbmin_;
es->bbmax = bbmax_;
es->mass = mass_;
es->mass_inv = mass_inv_;
es->position = position_;
memcpy( es->inertia_tensor, inertia_tensor_, sizeof( float_type ) * 9 );
memcpy( es->inertia_tensor_inv, inertia_tensor_inv_, sizeof( float_type ) * 9 );
memcpy( es->orientation, orientation_, sizeof( float_type ) * 9 );
es->quaternion = quaternion_;
es->linear_momentum = linear_momentum_;
es->angular_momentum = angular_momentum_;
es->linear_velocity = linear_velocity_;
es->angular_velocity = angular_velocity_;
return es;
}
void apply_snapshot_internal( const BodySnapShot< Traits >* ss )
{
const RigidSnapShot< Traits >* es = dynamic_cast< const RigidSnapShot< Traits >* >( ss );
assert( es );
set_global_force( es->global_force );
transform_ = es->transform;
bbmin_ = es->bbmin;
bbmax_ = es->bbmax;
mass_ = es->mass;
mass_inv_ = es->mass_inv;
position_ = es->position;
memcpy( inertia_tensor_, es->inertia_tensor, sizeof( float_type ) * 9 );
memcpy( inertia_tensor_inv_, es->inertia_tensor_inv, sizeof( float_type ) * 9 );
memcpy( orientation_, es->orientation, sizeof( float_type ) * 9 );
quaternion_ = es->quaternion;
linear_momentum_ = es->linear_momentum;
angular_momentum_ = es->angular_momentum;
linear_velocity_ = es->linear_velocity;
angular_velocity_ = es->angular_velocity;
}
void start()
{
vector_type v0 = math< Traits >::vector_zero();
vector_type center_of_mass;
compute_inertia_tensor( mass_, center_of_mass, inertia_tensor_ );
//shift( center_of_mass );
math< Traits >::inverse_matrix( inertia_tensor_inv_, inertia_tensor_ );
mass_inv_ = 1.0f / mass_;
position_ = v0;
linear_momentum_ = v0;
angular_momentum_ = v0;
linear_velocity_ = v0;
angular_velocity_ = v0;
math< Traits >::make_identity( orientation_ );
quaternion_ = quaternion< float_type >( 1, 0, 0, 0 );
}
void compute_inertia_tensor(
float_type& mass,
vector_type& center_of_mass,
float_type* inertia_tensor )
{
const float_type fOneDiv6 = float_type( 1.0 / 6.0 );
const float_type fOneDiv24 = float_type( 1.0 / 24.0 );
const float_type fOneDiv60 = float_type( 1.0 / 60.0 ) ;
const float_type fOneDiv120 = float_type( 1.0 / 120.0 );
// order: 1, x, y, z, x^2, y^2, z^2, xy, yz, zx
float_type afIntegral[10] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
for( blocks_type::const_iterator i = blocks_.begin() ; i != blocks_.end() ; ++i ) {
block_type* b = *i;
cloud_type* c = b->get_cloud();
vector_type cloud_center( 0, 0, 0 );
float_type cloud_mass = 0;
int n = int( b->indices_.size() / 3 );
for( int j = 0 ; j != n ; j++ ) {
index_type i0 = b->indices_[ j * 3 + 0 ];
index_type i1 = b->indices_[ j * 3 + 1 ];
index_type i2 = b->indices_[ j * 3 + 2 ];
// get vertices of triangle i
const vector_type& kV0 = c->particles_[i0].position;
const vector_type& kV1 = c->particles_[i1].position;
const vector_type& kV2 = c->particles_[i2].position;
// get cross product of edges
vector_type kV1mV0 = kV1 - kV0;
vector_type kV2mV0 = kV2 - kV0;
vector_type kN = math< Traits >::cross( kV1mV0, kV2mV0 );
// compute integral terms
float_type fTmp0, fTmp1, fTmp2;
float_type fF1x, fF2x, fF3x, fG0x, fG1x, fG2x;
fTmp0 = kV0.x + kV1.x;
fF1x = fTmp0 + kV2.x;
fTmp1 = kV0.x*kV0.x;
fTmp2 = fTmp1 + kV1.x*fTmp0;
fF2x = fTmp2 + kV2.x*fF1x;
fF3x = kV0.x*fTmp1 + kV1.x*fTmp2 + kV2.x*fF2x;
fG0x = fF2x + kV0.x*(fF1x + kV0.x);
fG1x = fF2x + kV1.x*(fF1x + kV1.x);
fG2x = fF2x + kV2.x*(fF1x + kV2.x);
float_type fF1y, fF2y, fF3y, fG0y, fG1y, fG2y;
fTmp0 = kV0.y + kV1.y;
fF1y = fTmp0 + kV2.y;
fTmp1 = kV0.y*kV0.y;
fTmp2 = fTmp1 + kV1.y*fTmp0;
fF2y = fTmp2 + kV2.y*fF1y;
fF3y = kV0.y*fTmp1 + kV1.y*fTmp2 + kV2.y*fF2y;
fG0y = fF2y + kV0.y*(fF1y + kV0.y);
fG1y = fF2y + kV1.y*(fF1y + kV1.y);
fG2y = fF2y + kV2.y*(fF1y + kV2.y);
float_type fF1z, fF2z, fF3z, fG0z, fG1z, fG2z;
fTmp0 = kV0.z + kV1.z;
fF1z = fTmp0 + kV2.z;
fTmp1 = kV0.z*kV0.z;
fTmp2 = fTmp1 + kV1.z*fTmp0;
fF2z = fTmp2 + kV2.z*fF1z;
fF3z = kV0.z*fTmp1 + kV1.z*fTmp2 + kV2.z*fF2z;
fG0z = fF2z + kV0.z*(fF1z + kV0.z);
fG1z = fF2z + kV1.z*(fF1z + kV1.z);
fG2z = fF2z + kV2.z*(fF1z + kV2.z);
// update integrals
afIntegral[0] += kN.x*fF1x;
afIntegral[1] += kN.x*fF2x;
afIntegral[2] += kN.y*fF2y;
afIntegral[3] += kN.z*fF2z;
afIntegral[4] += kN.x*fF3x;
afIntegral[5] += kN.y*fF3y;
afIntegral[6] += kN.z*fF3z;
afIntegral[7] += kN.x*(kV0.y*fG0x + kV1.y*fG1x + kV2.y*fG2x);
afIntegral[8] += kN.y*(kV0.z*fG0y + kV1.z*fG1y + kV2.z*fG2y);
afIntegral[9] += kN.z*(kV0.x*fG0z + kV1.x*fG1z + kV2.x*fG2z);
}
}
afIntegral[0] *= fOneDiv6;
afIntegral[1] *= fOneDiv24;
afIntegral[2] *= fOneDiv24;
afIntegral[3] *= fOneDiv24;
afIntegral[4] *= fOneDiv60;
afIntegral[5] *= fOneDiv60;
afIntegral[6] *= fOneDiv60;
afIntegral[7] *= fOneDiv120;
afIntegral[8] *= fOneDiv120;
afIntegral[9] *= fOneDiv120;
// mass
mass = afIntegral[0];
// center of mass
center_of_mass = vector_traits::make_vector(
afIntegral[1], afIntegral[2], afIntegral[3] ) / mass;
// inertia relative to world origin
math< Traits >::make_identity( inertia_tensor );
inertia_tensor[0] = afIntegral[5] + afIntegral[6];
inertia_tensor[1] = -afIntegral[7];
inertia_tensor[2] = -afIntegral[9];
inertia_tensor[3] = inertia_tensor[2];
inertia_tensor[4] = afIntegral[4] + afIntegral[6];
inertia_tensor[5] = -afIntegral[8];
inertia_tensor[6] = inertia_tensor[3];
inertia_tensor[7] = inertia_tensor[6];
inertia_tensor[8] = afIntegral[4] + afIntegral[5];
// inertia relative to center of mass
inertia_tensor[0] -= mass*(center_of_mass.y*center_of_mass.y +
center_of_mass.z*center_of_mass.z);
inertia_tensor[1] += mass*center_of_mass.x*center_of_mass.y;
inertia_tensor[2] += mass*center_of_mass.z*center_of_mass.x;
inertia_tensor[3] = inertia_tensor[2];
inertia_tensor[4] -= mass*(center_of_mass.z*center_of_mass.z +
center_of_mass.x*center_of_mass.x);
inertia_tensor[5] += mass*center_of_mass.y*center_of_mass.z;
inertia_tensor[6] = inertia_tensor[3];
inertia_tensor[7] = inertia_tensor[6];
inertia_tensor[8] -= mass*(center_of_mass.x*center_of_mass.x +
center_of_mass.y*center_of_mass.y);
#if 0
// 正方形
D3DXMatrixIdentity( &inertia_tensor_ );
inertia_tensor._11 /= 6.0f;
inertia_tensor._22 /= 6.0f;
inertia_tensor._33 /= 6.0f;
#endif
}
//private:
public:
bool initialized_;
vector_type initial_center_;
vector_type current_center_;
matrix_type transform_;
vector_type bbmin_;
vector_type bbmax_;
float_type mass_;
float_type mass_inv_;
vector_type position_;
float_type inertia_tensor_[9];
float_type inertia_tensor_inv_[9];
float_type orientation_[9];
quaternion< float_type > quaternion_;
vector_type linear_momentum_;
vector_type angular_momentum_;
vector_type linear_velocity_;
vector_type angular_velocity_;
template < class T > friend class World;
};
} // namespace partix
#endif // PARTIX_RIGID_HPP
| [
"[email protected]"
] | |
60a03fae8797e745d274dec1fa4ad8063b97fda8 | 5a3f67cd8126d638232204c7900dcbf9acb4f5ac | /nvxio/src/Render/GlfwUIRenderImpl.cpp | 90dd95e828205e77518545510bd13daf5944bfc6 | [] | no_license | marcgh/vovox | 45f76dd8efd6f037ae772f0c84740ecbaf2cceb5 | 92ef2f5d995de296bef04fc37744a64defe079f1 | refs/heads/master | 2021-05-01T18:38:07.767604 | 2016-10-10T15:46:47 | 2016-10-10T15:46:47 | 66,146,804 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,287 | cpp | /*
# Copyright (c) 2014-2015, NVIDIA CORPORATION. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * 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.
# * Neither the name of NVIDIA CORPORATION nor the names of its
# contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``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 THE COPYRIGHT OWNER 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.
*/
#ifdef USE_GUI
#ifdef _WIN32
# define NOMINMAX
# include <Windows.h>
#endif
#include <string>
#include "Render/GlfwUIRenderImpl.hpp"
#include "Private/LogUtils.hpp"
#include "NVXIO/Application.hpp"
nvxio::GlfwUIImpl::GlfwUIImpl(vx_context context, TargetType type, const std::string & name) :
OpenGLRenderImpl(type, name),
context_(context),
window_(NULL), prevWindow_(NULL),
keyboardCallback_(NULL),
keyboardCallbackContext_(NULL),
mouseCallback_(NULL),
mouseCallbackContext_(NULL),
scaleRatioWindow(1.0),
xBorder_(0), yBorder_(0)
{
}
nvxio::GlfwUIImpl::~GlfwUIImpl()
{
close();
}
namespace {
std::string getDisplayName()
{
char * displayName = getenv("NVXIO_DISPLAY");
return std::string(displayName ? displayName : glfwGetMonitorName(glfwGetPrimaryMonitor()));
}
}
bool nvxio::GlfwUIImpl::open(const std::string& title, vx_uint32 width, vx_uint32 height, vx_uint32 format,
bool doScale, bool fullScreen)
{
NVXIO_ASSERT(format == VX_DF_IMAGE_RGBX);
windowTitle_ = title;
doScale_ = doScale;
if (!nvxio::Application::get().initGui())
{
NVXIO_PRINT("Error: Failed to init GUI");
return false;
}
vx_uint32 wndWidth = 0, wndHeight = 0;
const GLFWvidmode * mode = NULL;
bool renderToFile = (targetType == Render::VIDEO_RENDER) ||
(targetType == Render::IMAGE_RENDER);
GLFWmonitor * monitor = NULL;
if (fullScreen)
{
NVXIO_PRINT("Full Screen mode is used. Both specified width and height are ignored");
}
if (!renderToFile)
{
int count = 0;
GLFWmonitor ** monitors = glfwGetMonitors(&count);
if (count == 0)
{
NVXIO_PRINT("Glfw: no monitors found");
return false;
}
int maxPixels = 0;
std::string specifiedDisplayName = getDisplayName();
for (int i = 0; i < count; ++i)
{
const GLFWvidmode* currentMode = glfwGetVideoMode(monitors[i]);
int currentPixels = currentMode->width * currentMode->height;
if (maxPixels < currentPixels)
{
mode = currentMode;
maxPixels = currentPixels;
}
if (fullScreen)
{
std::string monitorName = glfwGetMonitorName(monitors[i]);
if (monitorName == specifiedDisplayName)
{
monitor = monitors[i];
mode = currentMode;
break;
}
}
}
#ifdef _WIN32
int clientWidth = GetSystemMetrics(SM_CXFULLSCREEN),
clientHeight = GetSystemMetrics(SM_CYFULLSCREEN);
#else
int clientWidth = mode->width, clientHeight = mode->height;
#endif
// use full client area if we are in full-screen mode
if (fullScreen)
{
width = clientWidth;
height = clientHeight;
}
if (width <= (vx_uint32)clientWidth && height <= (vx_uint32)clientHeight)
{
wndWidth = width;
wndHeight = height;
}
else
{
// calculate scale to keep aspect ratio
vx_float64 widthRatio = static_cast<vx_float64>(clientWidth) / width;
vx_float64 heightRatio = static_cast<vx_float64>(clientHeight) / height;
scaleRatioWindow = std::min(widthRatio, heightRatio);
// apply max contraints
wndWidth = static_cast<vx_uint32>(width * scaleRatioWindow);
wndHeight = static_cast<vx_uint32>(height * scaleRatioWindow);
}
}
else // set window params for video/image renders
{
wndWidth = width;
wndHeight = height;
}
glfwDefaultWindowHints();
glfwWindowHint(GLFW_RESIZABLE, GL_FALSE);
#ifdef USE_GLES
glfwWindowHint(GLFW_CLIENT_API, GLFW_OPENGL_ES_API);
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 1);
#else
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
#endif
if (renderToFile)
glfwWindowHint(GLFW_VISIBLE, GL_FALSE);
window_ = glfwCreateWindow(wndWidth, wndHeight,
windowTitle_.c_str(),
monitor, NULL);
if (!window_)
{
NVXIO_PRINT("Error: Failed to create GLFW window");
return false;
}
if (!renderToFile)
{
// as it's said in documentation, actual window and context
// parameters may differ from specified ones. So, we need to query
// actual params and use them later.
glfwGetFramebufferSize(window_, (int *)&wndWidth, (int *)&wndHeight);
#ifdef _WIN32
// update sizes
vx_float64 widthRatio = static_cast<vx_float64>(wndWidth) / width;
vx_float64 heightRatio = static_cast<vx_float64>(wndHeight) / height;
scaleRatioWindow = std::min(heightRatio, widthRatio);
wndHeight = static_cast<vx_uint32>(scaleRatioWindow * height);
vx_float64 aspectRatio = static_cast<vx_float64>(width) / height;
wndWidth = static_cast<vx_uint32>(aspectRatio * scaleRatioWindow * height);
// update window size
glfwSetWindowSize(window_, wndWidth, wndHeight);
#endif
// GLFW says that we don't have to set window position
// for full screen mode.
if (!fullScreen)
{
NVXIO_ASSERT(mode != nullptr);
int xpos = (mode->width - wndWidth) >> 1;
int ypos = (mode->height - wndHeight) >> 1;
glfwSetWindowPos(window_, xpos, ypos);
}
}
glfwSetWindowUserPointer(window_, this);
glfwSetInputMode(window_, GLFW_STICKY_KEYS, GL_TRUE);
// create OpenGL context holder
createOpenGLContextHolder();
// Must be done after glfw is initialized!
return initGL(context_, wndWidth, wndHeight);
}
void nvxio::GlfwUIImpl::putImage(vx_image image)
{
NVXIO_ASSERT(image != nullptr);
vx_uint32 imgWidth = 0, imgHeight = 0;
NVXIO_SAFE_CALL( vxQueryImage(image, VX_IMAGE_ATTRIBUTE_WIDTH, &imgWidth, sizeof(imgWidth)) );
NVXIO_SAFE_CALL( vxQueryImage(image, VX_IMAGE_ATTRIBUTE_HEIGHT, &imgHeight, sizeof(imgHeight)) );
// calculate borders
GLfloat scaleUniformX_ = static_cast<GLfloat>(wndWidth_) / imgWidth;
GLfloat scaleUniformY_ = static_cast<GLfloat>(wndHeight_) / imgHeight;
GLfloat scale = std::min(scaleUniformX_, scaleUniformY_);
GLint viewportWidth = static_cast<GLint>(imgWidth * scale);
GLint viewportHeight = static_cast<GLint>(imgHeight * scale);
xBorder_ = (wndWidth_ - viewportWidth) >> 1;
yBorder_ = (wndHeight_ - viewportHeight) >> 1;
// render image
nvxio::OpenGLRenderImpl::putImage(image);
}
void nvxio::GlfwUIImpl::getCursorPos(vx_float64 & x, vx_float64 & y) const
{
glfwGetCursorPos(window_, &x, &y);
x = x / (scaleRatioWindow) - xBorder_;
y = y / (scaleRatioWindow) - yBorder_;
x /= scaleRatioImage_;
y /= scaleRatioImage_;
}
void nvxio::GlfwUIImpl::cursor_pos(GLFWwindow* window, double x, double y)
{
GlfwUIImpl* impl = static_cast<GlfwUIImpl*>(glfwGetWindowUserPointer(window));
x = x / (impl->scaleRatioWindow) - impl->xBorder_;
y = y / (impl->scaleRatioWindow) - impl->yBorder_;
x /= impl->scaleRatioImage_;
y /= impl->scaleRatioImage_;
if (impl->mouseCallback_)
{
(impl->mouseCallback_)(impl->mouseCallbackContext_, Render::MouseMove,
static_cast<vx_uint32>(x),
static_cast<vx_uint32>(y));
}
}
// callback for keys
void nvxio::GlfwUIImpl::key_fun(GLFWwindow* window, int key, int /*scancode*/, int action, int /*mods*/)
{
GlfwUIImpl* impl = static_cast<GlfwUIImpl*>(glfwGetWindowUserPointer(window));
if (impl->keyboardCallback_ && action == GLFW_PRESS)
{
double x = 0, y = 0;
impl->getCursorPos(x, y);
if (key == GLFW_KEY_ESCAPE)
key = 27;
(impl->keyboardCallback_)(impl->keyboardCallbackContext_, tolower(key),
static_cast<vx_uint32>(x),
static_cast<vx_uint32>(y));
}
}
void nvxio::GlfwUIImpl::setOnKeyboardEventCallback(OnKeyboardEventCallback callback, void* context)
{
keyboardCallback_ = callback;
keyboardCallbackContext_ = context;
glfwSetKeyCallback(window_, key_fun);
}
void nvxio::GlfwUIImpl::setOnMouseEventCallback(OnMouseEventCallback callback, void* context)
{
mouseCallback_ = callback;
mouseCallbackContext_ = context;
glfwSetMouseButtonCallback(window_, mouse_button);
glfwSetCursorPosCallback(window_, cursor_pos);
}
// callback for mouse
void nvxio::GlfwUIImpl::mouse_button(GLFWwindow* window, int button, int action, int /*mods*/)
{
GlfwUIImpl* impl = static_cast<GlfwUIImpl*>(glfwGetWindowUserPointer(window));
if (impl->mouseCallback_)
{
Render::MouseButtonEvent event = Render::MouseMove;
if (button == GLFW_MOUSE_BUTTON_LEFT)
{
if (action == GLFW_RELEASE)
event = Render::LeftButtonUp;
else
event = Render::LeftButtonDown;
}
if (button == GLFW_MOUSE_BUTTON_RIGHT)
{
if (action == GLFW_RELEASE)
event = Render::RightButtonUp;
else
event = Render::RightButtonDown;
}
if (button == GLFW_MOUSE_BUTTON_MIDDLE)
{
if (action == GLFW_RELEASE)
event = Render::MiddleButtonUp;
else
event = Render::MiddleButtonDown;
}
double x = 0, y = 0;
impl->getCursorPos(x, y);
(impl->mouseCallback_)(impl->mouseCallbackContext_, event,
static_cast<vx_uint32>(x),
static_cast<vx_uint32>(y));
}
}
bool nvxio::GlfwUIImpl::flush()
{
if (!window_)
NVXIO_THROW_EXCEPTION("The render is closed, you must open it before");
if (glfwWindowShouldClose(window_))
{
close();
return false;
}
// GLFW says that we don't need current OpenGL context, but
// it's wrong for EGL (OpenGL ES).
// See EGL 1.4 spec. 3.9.3. Posting Semantics;
// See EGL 1.5 spec. 3.10.3. Posting Semantics;
{
OpenGLContextSafeSetter setter(holder_);
glfwSwapBuffers(window_);
}
glfwPollEvents();
clearGlBuffer();
return true;
}
void nvxio::GlfwUIImpl::close()
{
if (window_)
{
// finalize OpenGL resources of base class
finalGL();
glfwDestroyWindow(window_);
window_ = NULL;
}
}
namespace {
class GLFWContextHolderImpl :
public nvxio::OpenGLContextHolder
{
public:
explicit GLFWContextHolderImpl(GLFWwindow * currentWindow_) :
prevWindow(NULL), currentWindow(currentWindow_)
{
if (!currentWindow)
NVXIO_THROW_EXCEPTION("The render is closed, you must open it before");
}
virtual void set()
{
// save current context
prevWindow = glfwGetCurrentContext();
// attach our OpenGL context
glfwMakeContextCurrent(currentWindow);
}
virtual void unset()
{
// attach previous context
glfwMakeContextCurrent(prevWindow);
}
private:
GLFWwindow * prevWindow, * currentWindow;
};
}
void nvxio::GlfwUIImpl::createOpenGLContextHolder()
{
holder_ = std::make_shared<GLFWContextHolderImpl>(window_);
}
#endif // USE_GUI
| [
"[email protected]"
] | |
085842fb78eeb56752bf383ab477356ad3784a1a | 93c3e0b8f5bf78c4cc489a54ec567fe9dddc719a | /mwfilters_source/I_H0_8.cpp | d6def15de073e17cced20a812c78a25bca094a2c | [] | no_license | MRChemSoft/mw_data | 9953251c4f0f401bddc5229cd2df98bd2e980760 | cdd1acece5d5ce9751a7cd8475ed78d845e9d416 | refs/heads/master | 2020-09-03T16:03:14.226948 | 2019-11-04T13:14:56 | 2019-11-04T13:14:56 | 219,505,002 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,018 | cpp | /*
* MRCPP, a numerical library based on multiresolution analysis and
* the multiwavelet basis which provide low-scaling algorithms as well as
* rigorous error control in numerical computations.
* Copyright (C) 2019 Stig Rune Jensen, Jonas Juselius, Luca Frediani and contributors.
*
* This file is part of MRCPP.
*
* MRCPP is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* MRCPP 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with MRCPP. If not, see <https://www.gnu.org/licenses/>.
*
* For information on the complete list of contributors to MRCPP, see:
* <https://mrcpp.readthedocs.io/>
*/
// THIS FILE HAS BEEN AUTOGENERATED, DO NOT TOUCH
#include "FilterData.h"
#include <Eigen/Core>
namespace mrcpp {
namespace detail {
auto get_I_H0_8() noexcept -> Eigen::Matrix<double, 9, 9> {
return (Eigen::Matrix<double, 9, 9>() << 0.896773946241752, 0.432870109761272, -0.0627247947912101, -0.0387187905481026, 0.0411600025512103, 0.00405118013686238, -0.0206980802494254, -0.0109489385319853, -0.00146264870372405, -0.211360043872203, 0.580305479346816, 0.756500093591404, 0.149343339486372, -0.125688650370776, -0.0112346240933068, 0.0546929558640125, 0.0282032596300496, 0.00372236952564397, 0.121503571529026, -0.224796083209483, 0.165302089684863, 0.766775404667056, 0.536247540189224, 0.0292415386595639, -0.120458121162512, -0.0576076307587072, -0.00735500461288688, -0.0817627051915076, 0.13814411041186, -0.0793358072768354, -0.132525450479551, 0.4143290667221, 0.708450363305784, 0.462847913098563, 0.151340948270319, 0.0170697907614947, 0.0579531701116861, -0.0944533466986255, 0.0501561011611043, 0.0714882325337642, -0.153951807506104, -0.0301891502624727, 0.331410580580984, 0.472764991211272, 0.349487538880809, -0.0412350626744209, 0.0660281652324626, -0.0338428073376663, -0.0453950846565999, 0.0883428724626968, 0.0145727367013055, -0.117095612326991, -0.0902555361203553, -0.0154720814654703, 0.0281964291214948, -0.0447194639728663, 0.0225027950984833, 0.0293096065642655, -0.0546045552524689, -0.00846889287514354, 0.0627249174368406, 0.0440234219962543, 0.00698286919566965, -0.0171921612790873, 0.027123579143294, -0.01351407053249, -0.0173355990030459, 0.0316125097169287, 0.00476752268479988, -0.0341499395427212, -0.0231658098473473, -0.00358325429966334, 0.00731289759703063, -0.0115080130621754, 0.00570666783538192, 0.00726819781941797, -0.0131249138438536, -0.00195508455403407, 0.013808158040086, 0.009239378553024, 0.00141532493051064).finished();
}
} // namespace mrcpp
} // namespace detail
| [
"[email protected]"
] | |
88b73a21fdfa0a790c932794593a84604afcc137 | af0f9e707ab1f762e5ba7c817f7086fa62faff75 | /pat_1026/pat_1026.cc | ec481fbd6289d86965c9e310d5eab00002431595 | [] | no_license | kresle/pat_advance | 0889e1650e23d224420024d5f2adebb2f435f1dc | c58a8a54b9659d6a75c7a867cea90ed2e5ea1b4b | refs/heads/master | 2020-05-15T11:09:25.911963 | 2019-03-13T14:54:30 | 2019-03-13T14:54:30 | 182,215,386 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,380 | cc | // 11:20 - 14:14(AC)
// 太麻烦了,这花了将近3个小时才AC掉。
// 关于时间模拟的其他几道题也是这样,尤其是cars on campus. 遇上这种题真的是只能自求多福,放在最后面做了。
// 最重大的几个失误有:
// 1. 如昨天还是前天做的某题一样,条件判断里,忘了!empty().
// 2. priority_queue,自定义比较函数的写法(和set这些是一样的,要有一个重载了括号运算符的类或者结构体,括号运算符函数用来进行比较操作)
// 3. 关于player的两个队列里,队首player是否已经被serve过,想到了要对all_qq里的进行排查,但却忘了对vip_qq里的也进行同样的排查。这个是有三个样例过不了的那份代码的原因。
// 4. 代码太长,细节太多,就容易出错。在不同时有vip桌子和vip会员的压队逻辑里,也就是第二个while循环里,居然一开始漏写了all_qq.pop(). 这个可以算是重大逻辑疏漏了
// 5. 最后的最后,输出时,居然还要再依服务时间,对player再进行一次排序,这题要求做的东西也太多了。
// 6. 这份代码这么长,但是没一行是多余没用的。
#include <iostream>
#include <stdio.h>
#include <string>
#include <queue>
#include <vector>
#include <string>
#include <algorithm>
#include <math.h>
using namespace std;
#define INF 0x3f3f3f3f
struct player
{
int arrTime;
int svTime = INF; //顺带实现visit功能
int playTime;
bool isVip;
bool operator<(player obj) { return arrTime < obj.arrTime; }
bool operator>(player obj)
{
if (svTime != obj.svTime)
return svTime < obj.svTime;
return (svTime-arrTime)<(obj.svTime-obj.arrTime);
}
};
struct table
{
int id;
bool isVip;
int expTime;
int svCnt = 0;
bool operator<(table obj) { return expTime < obj.expTime; }
};
int nn, kk, mm;
vector<table> tables;
vector<player> players;
struct tabHeapCmp
{
bool operator()(int id1, int id2)
{
return tables[id1].expTime > tables[id2].expTime;
}
};
inline int stimeToSeconds(string ss) { return stoi(ss.substr(0, 2)) * 3600 + stoi(ss.substr(3, 2)) * 60 + stoi(ss.substr(6)); }
void printTime(int tt)
{
printf("%02d:%02d:%02d ", tt / 3600, (tt / 60) % 60, tt % 60);
}
int main()
{
int pid, tid;
string ss;
cin >> nn;
players.resize(nn);
for (int ii = 0; ii < nn; ii++)
{
cin >> ss >> players[ii].playTime >> players[ii].isVip;
players[ii].arrTime = stimeToSeconds(ss);
if (players[ii].playTime >= 120)
players[ii].playTime = 7200;
else
players[ii].playTime *= 60;
}
sort(players.begin(), players.end());
cin >> kk >> mm;
tables.resize(kk);
for (int ii = 0; ii < kk; ii++)
tables[ii].id = ii;
for (int ii = 0; ii < mm; ii++)
{
cin >> tid;
tid--;
tables[tid].isVip = true;
}
queue<int> all_qq; //所有player的队列,要记住与vip队列进行服务状态排查
queue<int> vip_qq; //vip player的队列,也要记住与所有成员的队列进行服务状态排查
for (int ii = 0; ii < nn; ii++)
{
if (players[ii].isVip)
vip_qq.push(ii);
all_qq.push(ii);
}
priority_queue<int, vector<int>, tabHeapCmp> tab_qq; //已用台子的编号队列,是结束时间的小根堆,以判断是否有台子可以回收
priority_queue<int, vector<int>, greater<int>> normTab_qq; //普通台子的编号队列,方便得到最小编号
priority_queue<int, vector<int>, greater<int>> vipTab_qq; //vip台子的编号队列
for (int ii = 0; ii < kk; ii++)
{
if (tables[ii].isVip)
vipTab_qq.push(ii);
else
normTab_qq.push(ii);
}
// If one cannot get a table before the closing time, their information must NOT be printed.
for (int ii = 8 * 3600; ii < 21 * 3600 && !all_qq.empty(); ii++)
{
//先弹桌子
while (!tab_qq.empty() && tables[tab_qq.top()].expTime == ii)
{
tid = tab_qq.top();
if (tables[tid].isVip)
vipTab_qq.push(tid); //, cerr << " , vip\n";
else
normTab_qq.push(tid); //, cerr << " , ordinary\n";
tab_qq.pop();
}
//再分配桌子,先分配普通桌子,再分配vip桌子。如果两者都有,且队首是vip,应该分到哪?
// if when it is the turn of a VIP pair, yet no VIP table is available, they can be assigned as any ordinary players.
// 应该是先看有没有vip用户和vip桌子,有,则依序分配vip桌子给vip用户;
// 如果没有vip用户而有vip桌子,则vip桌子应与普通桌子一视同仁,从编号小的起分配;
// 如果有vip用户而没有vip桌子,则就是普通情形,不用特殊处理。
// 如果两者都没有,则普通情形。
if (normTab_qq.empty() && vipTab_qq.empty())
continue;
while (!vipTab_qq.empty() && !vip_qq.empty() && players[vip_qq.front()].arrTime <= ii)
{
if (players[vip_qq.front()].svTime != INF) //对此队进行排查,以防止被当做普通用户就服务过后,这里再次提供服务
{
vip_qq.pop();
continue;
}
pid = vip_qq.front(), vip_qq.pop();
tid = vipTab_qq.top(), vipTab_qq.pop();
players[pid].svTime = ii;
tables[tid].svCnt++;
tables[tid].expTime = ii + players[pid].playTime;
tab_qq.push(tid);
}
while (!(vipTab_qq.empty() && normTab_qq.empty()) && !all_qq.empty() && players[all_qq.front()].arrTime <= ii)
{
if (players[all_qq.front()].svTime != INF) //对此队进行排查,以防止其中的享受了vip待遇的vip用户这里再次被服务。其实逻辑可以再加上是否是vip以增强可读性,但这样也没任何问题
{
all_qq.pop();
continue;
}
pid = all_qq.front(), all_qq.pop(); //这两个操作算是原子操作,一定要绑定。之前的代码居然忘了pop.
if (vipTab_qq.empty())
tid = normTab_qq.top(), normTab_qq.pop();
else if (normTab_qq.empty())
tid = vipTab_qq.top(), vipTab_qq.pop();
else if (vipTab_qq.top() < normTab_qq.top())
tid = vipTab_qq.top(), vipTab_qq.pop();
else
tid = normTab_qq.top(), normTab_qq.pop();
players[pid].svTime = ii;
tables[tid].svCnt++;
tables[tid].expTime = ii + players[pid].playTime;
tab_qq.push(tid);
}
}
sort(players.begin(), players.end(), [](player ll, player rr) { return ll > rr; });
for (auto pp : players)
{
if (pp.svTime == INF)
break;
printTime(pp.arrTime);
printTime(pp.svTime);
printf("%d\n", (int)round((pp.svTime - pp.arrTime) / 60.0));
// printf("%.0f\n", round((pp.svTime - pp.arrTime) / 60.0));
}
if (kk > 0)
printf("%d", tables[0].svCnt);
for (int ii = 1; ii < kk; ii++)
{
printf(" %d", tables[ii].svCnt);
}
} | [
"[email protected]"
] | |
28fcf7f079f94519ed02b64849a99c46001a745d | 9315d9a0222dfe7963ff5eecb685051990e3c97d | /MultiSet.cpp | db5489d52eff4aa550e9f213116a42effa7d16f6 | [] | no_license | vincenicoara/cs130aProject | 428b0b6ced88e68a8da854f6f052dc2908a161fe | 9d6d34adbf49a08f05f0bb48d2941416fb22d7b6 | refs/heads/master | 2021-01-19T05:04:08.028928 | 2015-05-06T13:33:43 | 2015-05-06T13:33:43 | 35,154,084 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 405 | cpp | #include "MultiSet.h"
MultiSet::MultiSet(){
number = 0;
ptr2previousVersion = 0;
}
MultiSet *MultiSet::getptr2prev(){
return ptr2previousVersion;
}
void MultiSet::setptr2prev(MultiSet *p){
ptr2previousVersion = p;
}
int MultiSet::getNumber(){
return number;
}
void MultiSet::setNumber(int i){
number = i;
}
void MultiSet::numberPlus(){
number++;
}
void MultiSet::numberMinus(){
number--;
} | [
"[email protected]"
] | |
fca8c185653204cdb3fe89b6698cee1e8c70195c | b7f3edb5b7c62174bed808079c3b21fb9ea51d52 | /chrome/browser/sync/test/integration/send_tab_to_self_helper.h | 2a243049ca44846b29557c047735abdb05fe7186 | [
"BSD-3-Clause"
] | permissive | otcshare/chromium-src | 26a7372773b53b236784c51677c566dc0ad839e4 | 64bee65c921db7e78e25d08f1e98da2668b57be5 | refs/heads/webml | 2023-03-21T03:20:15.377034 | 2020-11-16T01:40:14 | 2020-11-16T01:40:14 | 209,262,645 | 18 | 21 | BSD-3-Clause | 2023-03-23T06:20:07 | 2019-09-18T08:52:07 | null | UTF-8 | C++ | false | false | 7,620 | h | // Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_SYNC_TEST_INTEGRATION_SEND_TAB_TO_SELF_HELPER_H_
#define CHROME_BROWSER_SYNC_TEST_INTEGRATION_SEND_TAB_TO_SELF_HELPER_H_
#include <string>
#include <vector>
#include "chrome/browser/sync/test/integration/status_change_checker.h"
#include "components/send_tab_to_self/send_tab_to_self_model_observer.h"
#include "components/sync_device_info/device_info_tracker.h"
#include "url/gurl.h"
namespace send_tab_to_self {
class SendTabToSelfEntry;
class SendTabToSelfSyncService;
} // namespace send_tab_to_self
namespace send_tab_to_self_helper {
// Class that allows waiting until a particular |url| is exposed by the
// SendTabToSelfModel in |service|.
class SendTabToSelfUrlChecker
: public StatusChangeChecker,
public send_tab_to_self::SendTabToSelfModelObserver {
public:
// The caller must ensure that |service| is not null and will outlive this
// object.
SendTabToSelfUrlChecker(send_tab_to_self::SendTabToSelfSyncService* service,
const GURL& url);
~SendTabToSelfUrlChecker() override;
// StatusChangeChecker implementation.
bool IsExitConditionSatisfied(std::ostream* os) override;
// SendTabToSelfModelObserver implementation.
void SendTabToSelfModelLoaded() override;
void EntriesAddedRemotely(
const std::vector<const send_tab_to_self::SendTabToSelfEntry*>&
new_entries) override;
void EntriesRemovedRemotely(
const std::vector<std::string>& guids_removed) override;
private:
const GURL url_;
send_tab_to_self::SendTabToSelfSyncService* const service_;
DISALLOW_COPY_AND_ASSIGN(SendTabToSelfUrlChecker);
};
// Class that allows waiting until a particular |url| is marked opened by the
// SendTabToSelfModel in |service|.
class SendTabToSelfUrlOpenedChecker
: public StatusChangeChecker,
public send_tab_to_self::SendTabToSelfModelObserver {
public:
// The caller must ensure that |service| is not null and will outlive this
// object.
SendTabToSelfUrlOpenedChecker(
send_tab_to_self::SendTabToSelfSyncService* service,
const GURL& url);
~SendTabToSelfUrlOpenedChecker() override;
// StatusChangeChecker implementation.
bool IsExitConditionSatisfied(std::ostream* os) override;
// SendTabToSelfModelObserver implementation.
void SendTabToSelfModelLoaded() override;
void EntriesAddedRemotely(
const std::vector<const send_tab_to_self::SendTabToSelfEntry*>&
new_entries) override;
void EntriesRemovedRemotely(
const std::vector<std::string>& guids_removed) override;
void EntriesOpenedRemotely(
const std::vector<const send_tab_to_self::SendTabToSelfEntry*>&
opened_entries) override;
private:
const GURL url_;
send_tab_to_self::SendTabToSelfSyncService* const service_;
DISALLOW_COPY_AND_ASSIGN(SendTabToSelfUrlOpenedChecker);
};
// Class that allows waiting the number of entries in until |service0|
// matches the number of entries in |service1|.
class SendTabToSelfModelEqualityChecker
: public StatusChangeChecker,
public send_tab_to_self::SendTabToSelfModelObserver {
public:
// The caller must ensure that |service0| and |service1| are not null and
// will outlive this object.
SendTabToSelfModelEqualityChecker(
send_tab_to_self::SendTabToSelfSyncService* service0,
send_tab_to_self::SendTabToSelfSyncService* service1);
~SendTabToSelfModelEqualityChecker() override;
// StatusChangeChecker implementation.
bool IsExitConditionSatisfied(std::ostream* os) override;
// SendTabToSelfModelObserver implementation.
void SendTabToSelfModelLoaded() override;
void EntriesAddedRemotely(
const std::vector<const send_tab_to_self::SendTabToSelfEntry*>&
new_entries) override;
void EntriesRemovedRemotely(
const std::vector<std::string>& guids_removed) override;
private:
send_tab_to_self::SendTabToSelfSyncService* const service0_;
send_tab_to_self::SendTabToSelfSyncService* const service1_;
DISALLOW_COPY_AND_ASSIGN(SendTabToSelfModelEqualityChecker);
};
// Class that allows waiting until the bridge is ready.
class SendTabToSelfActiveChecker
: public StatusChangeChecker,
public send_tab_to_self::SendTabToSelfModelObserver {
public:
// The caller must ensure that |service| is not null and will outlive this
// object.
explicit SendTabToSelfActiveChecker(
send_tab_to_self::SendTabToSelfSyncService* service);
~SendTabToSelfActiveChecker() override;
// StatusChangeChecker implementation.
bool IsExitConditionSatisfied(std::ostream* os) override;
// SendTabToSelfModelObserver implementation.
void SendTabToSelfModelLoaded() override;
void EntriesAddedRemotely(
const std::vector<const send_tab_to_self::SendTabToSelfEntry*>&
new_entries) override;
void EntriesRemovedRemotely(
const std::vector<std::string>& guids_removed) override;
private:
send_tab_to_self::SendTabToSelfSyncService* const service_;
DISALLOW_COPY_AND_ASSIGN(SendTabToSelfActiveChecker);
};
// Class that allows waiting until two devices are ready.
class SendTabToSelfMultiDeviceActiveChecker
: public StatusChangeChecker,
public syncer::DeviceInfoTracker::Observer {
public:
explicit SendTabToSelfMultiDeviceActiveChecker(
syncer::DeviceInfoTracker* tracker);
~SendTabToSelfMultiDeviceActiveChecker() override;
// StatusChangeChecker implementation.
bool IsExitConditionSatisfied(std::ostream* os) override;
// DeviceInfoTracker::Observer implementation.
void OnDeviceInfoChange() override;
private:
syncer::DeviceInfoTracker* const tracker_;
DISALLOW_COPY_AND_ASSIGN(SendTabToSelfMultiDeviceActiveChecker);
};
// Class that allows waiting until device has send_tab_to_self disabled.
class SendTabToSelfDeviceDisabledChecker
: public StatusChangeChecker,
public syncer::DeviceInfoTracker::Observer {
public:
SendTabToSelfDeviceDisabledChecker(syncer::DeviceInfoTracker* tracker,
const std::string& device_guid);
~SendTabToSelfDeviceDisabledChecker() override;
// StatusChangeChecker implementation.
bool IsExitConditionSatisfied(std::ostream* os) override;
// DeviceInfoTracker::Observer implementation.
void OnDeviceInfoChange() override;
private:
syncer::DeviceInfoTracker* const tracker_;
std::string device_guid_;
};
class SendTabToSelfUrlDeletedChecker
: public StatusChangeChecker,
public send_tab_to_self::SendTabToSelfModelObserver {
public:
// The caller must ensure that |service| is not null and will outlive this
// object.
SendTabToSelfUrlDeletedChecker(
send_tab_to_self::SendTabToSelfSyncService* service,
const GURL& url);
~SendTabToSelfUrlDeletedChecker() override;
// StatusChangeChecker implementation.
bool IsExitConditionSatisfied(std::ostream* os) override;
// SendTabToSelfModelObserver implementation.
void SendTabToSelfModelLoaded() override;
void EntriesAddedRemotely(
const std::vector<const send_tab_to_self::SendTabToSelfEntry*>&
new_entries) override;
void EntriesRemovedRemotely(
const std::vector<std::string>& guids_removed) override;
private:
const GURL url_;
send_tab_to_self::SendTabToSelfSyncService* const service_;
DISALLOW_COPY_AND_ASSIGN(SendTabToSelfUrlDeletedChecker);
};
} // namespace send_tab_to_self_helper
#endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_SEND_TAB_TO_SELF_HELPER_H_
| [
"[email protected]"
] | |
1e66b565637ab90351632425a5cbb05e33303c7b | eea72893d7360d41901705ee4237d7d2af33c492 | /src/calorim/CsCalorimeterHist.h | 4e3702fec6c0540b4e21c806d97f5cc204a08e4e | [] | no_license | lsilvamiguel/Coral.Efficiencies.r14327 | 5488fca306a55a7688d11b1979be528ac39fc433 | 37be8cc4e3e5869680af35b45f3d9a749f01e50a | refs/heads/master | 2021-01-19T07:22:59.525828 | 2017-04-07T11:56:42 | 2017-04-07T11:56:42 | 87,541,002 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,323 | h | ////////////////////////////////////////////////////////////////////////////////
/*! \brief CsCalorimeterHist class in COMPASS experiment
Set of test histograms for COMPASS calorimeters.
Authors:
Vladimir Kolosov ( [email protected],[email protected] )
Alexander Zvyagin ( [email protected], [email protected] )
Denis Murashev ( [email protected], [email protected] )
*/
//class CsCalorimeterHist;
#ifndef CsCalorimeterHist___include
#define CSCalorimeterHist___include
#include "coral_config.h"
class TH1D;
class TH2D;
class TDirectory;
////////////////////////////////////////////////////////////////////////////////
/*! \brief Set of histograms .
*/
class CsCalorimeterHist
{
//============================================================================
// Constructors and destructor
//============================================================================
public:
/// Empty default constructor
CsCalorimeterHist (void) {}
private:
/// You can not use copy constructor.
CsCalorimeterHist (const CsCalorimeterHist &);
//============================================================================
// Operators
//============================================================================
private:
/// You can not use assignment operator.
CsCalorimeterHist& operator= (const CsCalorimeterHist &);
//============================================================================
// Attributes
//============================================================================
public:
const static int trig_groups_max = 100;
/// ROOT directory corresponed to the calorimeter
TDirectory *root_dir;
TDirectory *all_groups_dir;
TDirectory *all_gcorr_dir;
TDirectory *timing_dir;
TDirectory *geom_test_dir;
TDirectory *cells_dir;
TH1D *h1_HitedGroups;
TH2D *h2_GroupVsGroup;
TH2D *h2_GroupVsCellX;
TH2D *h2_GroupVsCellY;
TH2D *h2_T1GroupVsEGroup;
TH2D *h2_T2GroupVsEGroup;
TH2D *h2_TGroupVsNCellE;
TH1D *h1_NHits;
TH1D *h1_Egroups[trig_groups_max];
TH2D *h2_EtgEcm[trig_groups_max];
TH2D *h2_EtgEcmT1[trig_groups_max];
TH2D *h2_EtgEcmT2[trig_groups_max];
TH2D *h2_Geom[trig_groups_max];
// Search for bad mapping
TH2D *h2_SearchADC[trig_groups_max];
TH2D *h2_SearchT1[trig_groups_max];
TH2D *h2_SearchT2[trig_groups_max];
TH2D *h2_Timing1[trig_groups_max];
TH2D *h2_Timing2[trig_groups_max];
TH1D *h1_ECell[5000];
};
class TestHistoSADC
{
public:
TestHistoSADC ( void ) {
h2_TimevsTime=NULL;
h2_AmpvsAmp=NULL;
h2_DeltaTimevsTime=NULL;
h2_DeltaAmpvsAmp=NULL;
h2_TimevsTimeIsNoise0=NULL;
h2_AmpvsAmpIsNoise0=NULL;
h2_DeltaTimevsTimeIsNoise0=NULL;
h2_DeltaAmpvsAmpIsNoise0=NULL;
h2_TimevsTimeIsNoise1=NULL;
h2_AmpvsAmpIsNoise1=NULL;
h2_DeltaTimevsTimeIsNoise1=NULL;
h2_DeltaAmpvsAmpIsNoise1=NULL;
}
std::vector<TH1D*> h1_NSamplesSADC;
std::vector<TH1D*> h1_SizeSamplesSADC;
std::vector<TH2D*> h2_SummMax;
std::vector<TH2D*> h2_ChMaxAmp;
std::vector<TH2D*> h2_SignalMax;
std::vector<TH1D*> h1_Ped;
std::vector<TH1D*> h1_Summ;
std::vector<TH1D*> h1_Signal;
std::vector<TProfile*> p1_Shape10SADC;
std::vector<TProfile*> p1_Shape100SADC;
std::vector<TProfile*> p1_Shape500SADC;
std::vector<TProfile*> p1_Shape1000SADC;
std::vector<TProfile*> p1_ShapeNM10SADC;
std::vector<TProfile*> p1_ShapeNM100SADC;
std::vector<TProfile*> p1_ShapeNM500SADC;
std::vector<TProfile*> p1_ShapeNM1000SADC;
std::vector<TH1D*> h1_TimeSADC;
std::vector<TH2D*> h2_TimeSADCvsE;
std::vector<TH2D*> h2_TimeSADCvsTCS;
TH2D* h2_TimevsTime;
TH2D* h2_AmpvsAmp;
TH2D* h2_DeltaTimevsTime;
TH2D* h2_DeltaAmpvsAmp;
TH2D* h2_TimevsTimeIsNoise0;
TH2D* h2_AmpvsAmpIsNoise0;
TH2D* h2_DeltaTimevsTimeIsNoise0;
TH2D* h2_DeltaAmpvsAmpIsNoise0;
TH2D* h2_TimevsTimeIsNoise1;
TH2D* h2_AmpvsAmpIsNoise1;
TH2D* h2_DeltaTimevsTimeIsNoise1;
TH2D* h2_DeltaAmpvsAmpIsNoise1;
};
class TestHistoSADCMore
{
public:
TestHistoSADCMore ( void ) {}
std::vector<TH1D*> h1_NSamplesSADC;
std::vector<TH2D*> h2_AmpSummVsMax;
std::vector<TH2D*> h2_AmpMaxAdVsMax;
std::vector<TH2D*> h2_TimeSummVsMax;
std::vector<TH2D*> h2_TimeMaxAdVsMax;
std::vector<TH2D*> h2_DAmpSummVsMax;
std::vector<TH2D*> h2_DAmpMaxAdVsMax;
std::vector<TH2D*> h2_DTimeSummVsMax;
std::vector<TH2D*> h2_DTimeMaxAdVsMax;
std::vector<TH2D*> h2_TimeSADCvsAmpMax;
std::vector<TH1D*> h1_TimeSADC;
std::vector<TH2D*> h2_TimeSADCvsTCS;
std::vector<TH2D*> h2_SampleSADC;
std::vector<TProfile*> p1_Shape10SADC;
std::vector<TProfile*> p1_Shape100SADC;
std::vector<TProfile*> p1_Shape500SADC;
std::vector<TProfile*> p1_Shape1000SADC;
std::vector<TProfile*> p1_ShapeNM10SADC;
std::vector<TProfile*> p1_ShapeNM100SADC;
std::vector<TProfile*> p1_ShapeNM500SADC;
std::vector<TProfile*> p1_ShapeNM1000SADC;
std::vector<TProfile*> p1_SADCMaxad2Ref;
std::vector<TH2D*> h2_SampleSADCcells;
};
class TestHistoSADC_LED
{
public:
TestHistoSADC_LED ( void ) {}
std::vector<TH1D*> h1_NSamplesSADC;
std::vector<TH2D*> h2_AmpSummVsMax;
std::vector<TH2D*> h2_AmpMaxAdVsMax;
std::vector<TH2D*> h2_TimeSummVsMax;
std::vector<TH2D*> h2_TimeMaxAdVsMax;
std::vector<TH2D*> h2_DAmpSummVsMax;
std::vector<TH2D*> h2_DAmpMaxAdVsMax;
std::vector<TH2D*> h2_DTimeSummVsMax;
std::vector<TH2D*> h2_DTimeMaxAdVsMax;
std::vector<TH2D*> h2_TimeSADCvsAmpMax;
std::vector<TH1D*> h1_TimeSADC;
std::vector<TH2D*> h2_TimeSADCvsTCS;
std::vector<TProfile*> p1_Shape10SADC;
std::vector<TProfile*> p1_Shape100SADC;
std::vector<TProfile*> p1_Shape500SADC;
std::vector<TProfile*> p1_Shape1000SADC;
std::vector<TProfile*> p1_ShapeNM10SADC;
std::vector<TProfile*> p1_ShapeNM100SADC;
std::vector<TProfile*> p1_ShapeNM500SADC;
std::vector<TProfile*> p1_ShapeNM1000SADC;
};
#endif // CsCalorimeterHist___include
| [
"[email protected]"
] | |
35002180fe00b9dbcab72283b93b2708a5729d46 | 84643d000f9dd1e39c5c008b490b09a8956c0f02 | /purenessscopeserver/PurenessScopeServer/UDP/ReactorUDPClient.cpp | d179fe2da9b12d3768d83b6f39f5f7ce56f27ce3 | [] | no_license | rover13/purenessscopeserver | 9b7d3329a5f81c0c335e6942ff4877c0bb2f4fd8 | b7255639dd94ea6b796e6537d3260c426bea1236 | refs/heads/master | 2020-05-19T17:03:45.461934 | 2015-02-19T03:08:28 | 2015-02-19T03:08:28 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 3,900 | cpp | #include "ReactorUDPClient.h"
CReactorUDPClient::CReactorUDPClient(void)
{
m_pClientUDPMessage = NULL;
m_u4RecvPacketCount = 0;
m_u4SendPacketCount = 0;
m_u4RecvSize = 0;
m_u4SendSize = 0;
}
CReactorUDPClient::~CReactorUDPClient(void)
{
}
int CReactorUDPClient::OpenAddress(const ACE_INET_Addr& AddrRemote, ACE_Reactor* pReactor, IClientUDPMessage* pClientUDPMessage)
{
if(m_skRemote.open(AddrRemote) == -1)
{
OUR_DEBUG((LM_ERROR, "[CReactorUDPClient::OpenAddress]Open error(%d).\n", errno));
return -1;
}
reactor(pReactor);
//设置发送超时时间(因为UDP如果客户端不存在的话,sendto会引起一个recv错误)
//在这里设置一个超时,让个recv不会无限等下去
struct timeval timeout = {MAX_RECV_UDP_TIMEOUT, 0};
ACE_OS::setsockopt(m_skRemote.get_handle(), SOL_SOCKET, SO_RCVTIMEO, (const char *)&timeout, sizeof(timeout));
m_pClientUDPMessage = pClientUDPMessage;
if(-1 == this->reactor()->register_handler(this, ACE_Event_Handler::READ_MASK))
{
OUR_DEBUG((LM_ERROR, "[CReactorUDPClient::OpenAddress] Addr is register_handler error(%d).\n", errno));
return -1;
}
return 0;
}
void CReactorUDPClient::Close()
{
ACE_Reactor_Mask close_mask = ACE_Event_Handler::ALL_EVENTS_MASK | ACE_Event_Handler::DONT_CALL;
this->reactor()->remove_handler(this, close_mask);
m_skRemote.close();
}
ACE_HANDLE CReactorUDPClient::get_handle(void) const
{
return m_skRemote.get_handle();
}
int CReactorUDPClient::handle_input(ACE_HANDLE fd)
{
if(fd == ACE_INVALID_HANDLE)
{
OUR_DEBUG((LM_ERROR, "[CReactorUDPClient::handle_input]fd is ACE_INVALID_HANDLE.\n"));
return -1;
}
char szBuff[MAX_UDP_PACKET_LEN] = {'\0'};
int nDataLen = m_skRemote.recv(szBuff, MAX_UDP_PACKET_LEN, m_addrRemote);
if(nDataLen > 0)
{
CheckMessage(szBuff, (uint32)nDataLen);
}
return 0;
}
int CReactorUDPClient::handle_close(ACE_HANDLE handle, ACE_Reactor_Mask close_mask)
{
if(handle == ACE_INVALID_HANDLE)
{
OUR_DEBUG((LM_ERROR, "[CReactorUDPClient::handle_close]close_mask = %d.\n", (uint32)close_mask));
}
Close();
return 0;
}
bool CReactorUDPClient::SendMessage(const char* pMessage, uint32 u4Len, const char* szIP, int nPort)
{
ACE_INET_Addr AddrRemote;
int nErr = AddrRemote.set(nPort, szIP);
if(nErr != 0)
{
OUR_DEBUG((LM_INFO, "[CProactorUDPHandler::SendMessage]set_address error[%d].\n", errno));
return false;
}
int nSize = (int)m_skRemote.send(pMessage, u4Len, AddrRemote);
if((uint32)nSize == u4Len)
{
m_atvOutput = ACE_OS::gettimeofday();
m_u4SendSize += u4Len;
m_u4SendPacketCount++;
return true;
}
else
{
OUR_DEBUG((LM_ERROR, "[CProactorUDPHandler::SendMessage]send error(%d).\n", errno));
return false;
}
}
_ClientConnectInfo CReactorUDPClient::GetClientConnectInfo()
{
_ClientConnectInfo ClientConnectInfo;
ClientConnectInfo.m_blValid = true;
ClientConnectInfo.m_u4ConnectID = 0;
ClientConnectInfo.m_u4AliveTime = 0;
ClientConnectInfo.m_u4BeginTime = (uint32)m_atvInput.sec();
ClientConnectInfo.m_u4AllRecvSize = m_u4RecvSize;
ClientConnectInfo.m_u4AllSendSize = m_u4SendSize;
ClientConnectInfo.m_u4RecvCount = m_u4RecvPacketCount;
ClientConnectInfo.m_u4SendCount = m_u4SendPacketCount;
return ClientConnectInfo;
}
bool CReactorUDPClient::CheckMessage(const char* pData, uint32 u4Len)
{
if(NULL == m_pClientUDPMessage || NULL == pData)
{
return false;
}
_ClientIPInfo objServerIPInfo;
sprintf_safe(objServerIPInfo.m_szClientIP, MAX_BUFF_20, "%s", m_addrRemote.get_host_addr());
objServerIPInfo.m_nPort = m_addrRemote.get_port_number();
m_pClientUDPMessage->RecvData(pData, u4Len, objServerIPInfo);
m_atvInput = ACE_OS::gettimeofday();
m_u4RecvSize += u4Len;
m_u4RecvPacketCount++;
return true;
}
| [
"[email protected]@f49f508c-0c2f-bbd7-3b2f-f17ad4634cb1"
] | [email protected]@f49f508c-0c2f-bbd7-3b2f-f17ad4634cb1 |
0e834c5ff03240a8d4c9617fec445d682ed5a34b | 2dcf3948c7f15743b715ddecb01414bc503e4223 | /src/test/Checkpoints_tests.cpp | 8fc10afd7961629e698f6696738c825570947d61 | [
"MIT"
] | permissive | ckti-integral-clone/wagerr | a64bddc65ecd2eaf28f192f99f142e33c0903011 | 73d51832f9886050c86c5c468dac7088b8dde275 | refs/heads/master | 2021-02-27T17:21:33.755877 | 2018-06-05T10:01:01 | 2018-06-05T10:01:01 | 245,622,373 | 0 | 1 | MIT | 2020-03-09T09:24:11 | 2020-03-07T11:43:41 | null | UTF-8 | C++ | false | false | 1,325 | cpp | // Copyright (c) 2011-2018 The Bitcoin Core developers
// Copyright (c) 2018 The Wagerr developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
//
// Unit tests for block-chain checkpoints
//
#include "checkpoints.h"
#include "uint256.h"
#include <boost/test/unit_test.hpp>
using namespace std;
BOOST_AUTO_TEST_SUITE(Checkpoints_tests)
BOOST_AUTO_TEST_CASE(sanity)
{
// WagerrDevs - RELEASE CHANGE - if required, sanity checks
uint256 p1 = uint256("0x000001364c4ed20f1b240810b5aa91fee23ae9b64b6e746b594b611cf6d8c87b"); // First premine block
uint256 p1001 = uint256("0x0000002a314058a8f61293e18ddbef5664a2097ac0178005f593444549dd5b8c"); // Last block
BOOST_CHECK(Checkpoints::CheckBlock(1, p1));
BOOST_CHECK(Checkpoints::CheckBlock(1001, p1001));
// Wrong hashes at checkpoints should fail:
BOOST_CHECK(!Checkpoints::CheckBlock(1, p1001));
BOOST_CHECK(!Checkpoints::CheckBlock(1001, p1));
// ... but any hash not at a checkpoint should succeed:
BOOST_CHECK(Checkpoints::CheckBlock(1+1, p1001));
BOOST_CHECK(Checkpoints::CheckBlock(1001+1, p1));
// remove this later
BOOST_CHECK(Checkpoints::GetTotalBlocksEstimate() >= 1001);
}
BOOST_AUTO_TEST_SUITE_END()
| [
"[email protected]"
] | |
028b84e9423a259b94e28b0c4519bf1eea0dc03a | 0e24f85ca28ccfb2db66aa6b42a84683e15c531d | /Dynamic_Programming/virtual_calling.c++ | 0ad963e2203c6f9ff362cd7fc244f41d820abbe7 | [] | no_license | huyilong/algorithm_c | 7b2a25addc2413ace0f57588c361d2399fbf5810 | fad274125ce3ef9d05a6a19166643fec8be7c923 | refs/heads/master | 2021-01-13T01:31:00.323595 | 2015-01-12T04:15:06 | 2015-01-12T04:15:06 | 28,994,553 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,198 | #include <iostream>
using namespace std;
class A{
public:
void print(){
cout<<"A non-virtual print()"<<endl;
}
virtual void vprint(){
cout<<"A virtual vprint()"<<endl;
}
};
class B:public A{
public:
void print(){
cout<<"B non-virtual print()"<<endl;
}
/*
virtual void vprint(){
cout<<"B virtual vprint()"<<endl;
}
*/
};
class C: public B{
public:
void print(){
cout<<"C non-virtual print()"<<endl;
}
virtual void vprint(){
cout<<"C virtual print()"<<endl;
}
};
int main(){
A *aptr = new B;
//A is starting point to find the virtual func
//B is the ending point to find, and nothing to do with C
aptr->print();
//because in B there is no virtual func defined
//therefore even though the func in A is virtual, it could only call itself version
//and will not go into C to find, even though C inherits B but new B limits the destination
aptr->vprint();
A *aaptr = new C;
aaptr->vprint();
//using scoping operator to
//limit the scope and statically call the base virtual version
//rather than go down
aaptr->A::vprint();
//what's more , if A both inherits public B and C
//it does not mean that B and C could share their functions afterwards
}
| [
"hu,[email protected]"
] | ||
6a98e403dc90829ea3512a7a05b76e26f542299f | d411286f27d0920710833eb2a7a81f0fa4f0bfce | /Vector3_String/String.h | b3e6adfd47c8e0f62671f79d66b3dacaf43d2057 | [] | no_license | Rubetoman/Vector3-String | 01f3fa42286acd3c6dbf8385e6fadf28ed2ead0e | dff4653b291fc666101faf5394345fbaf09a190e | refs/heads/master | 2020-03-31T05:30:33.715324 | 2018-10-11T18:29:06 | 2018-10-11T18:29:06 | 151,948,949 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 744 | h | #ifndef STRING_H
#define STRING_H
#include <iostream>
class String
{
char* str;
unsigned len;
public:
String();
String(char ch);
String(const char* ch);
String(const String& string);
~String();
unsigned length() const;
void clear();
String& operator+= (const String& s);
friend String operator+(const String& string_a, const String& string_b);
inline char operator[] (unsigned j) const;
inline char& operator[] (unsigned j);
friend std::ostream& operator<< (std::ostream& so, const String& s);
friend std::istream& operator>> (std::istream& so, String& s);
};
//char* strcpy(char *destination, char *source);
//char* strcpy(char* destination, char* source, int size);
//char* strcat(char* destination, char* source);
#endif | [
"[email protected]"
] | |
c89606ad403dc2a0e2928370be7b5cb496325bde | decee9455ad3e8024207b462eb7967f16eb5d78a | /cpp/heima/Technician.cpp | 9543255572b2b19864e83085df6a20f1b1ee733b | [] | no_license | WangDavid2012/cpp | 1106af556b475b593a94035cf0d353951d929747 | 3c371cc63d7b27766eda4dc902d0e9c9dee03ecb | refs/heads/master | 2020-12-29T16:06:52.585140 | 2020-12-05T05:03:42 | 2020-12-05T05:03:42 | 238,660,702 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 576 | cpp | #include "Technician.h"
Technician::Technician()
{
}
Technician::~Technician()
{
}
void Technician::init()
{
cout << "请输入技术人员的姓名" << endl;
cin >> this->name;
perHourMoney = 100; //技术人员每小时赚100
}
//得到员工的薪水的方法
void Technician::getPay()
{
cout << "请输入员工一个月工作了多少小时" << endl;
cin >> workHour;
//计算工资
this->salary = perHourMoney * workHour;
}
//员工的升级方法
void Technician::uplevel(int addLevel)
{
this->level += addLevel;
}
| [
"[email protected]"
] | |
6058bb6736638ce962f4cb32fe545783179c9a66 | 009b24842a765658df1af377c64d3ac9a73d191a | /WonState.h | 0066e0b282332d89a9bc79b7c63d4ac5ab975ec3 | [] | no_license | jeem200/Project-Mayhem | 55d6eb1f7b7a4c78a395a4f3edee261451a38374 | 178acb0ff06d60c99b1891e4e40644ce8a056764 | refs/heads/master | 2021-05-27T21:08:11.283922 | 2012-03-15T17:20:28 | 2012-03-15T17:20:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 522 | h | #pragma once
#include "GameState.h"
#include "enums.h"
class Menu;
class WonState : public GameState
{
public:
void init(Game* game);
void cleanup();
void pause();
void resume();
void update(double dt);
void draw();
bool menuHandler(std::string name);
void handleEvents(UINT msg, WPARAM wParam, LPARAM lParam);
static WonState* Instance() {
return &mMenuState;
}
protected:
WonState() {};
private:
static WonState mMenuState;
IDirect3DTexture9* mBgkd;
IDirect3DTexture9* mLogo;
Menu* mMenu;
};
| [
"Focusrite@Focus.(none)"
] | Focusrite@Focus.(none) |
61ff391f2eed9a1b3aaf982a26078f949d57a46e | 2b0b07242be5ea756aba992e171b43fbee9bfada | /BOJ/10254/10254.cpp | 59779e88ff2cd88f76286547e50d929c6918f912 | [] | no_license | newdaytrue/PS | 28f138a5e8fd4024836ea7c2b6ce59bea91dbad7 | afffef30fcb59f6abfee2d5b8f00a304e8d80c91 | refs/heads/master | 2020-03-22T13:01:46.555651 | 2018-02-13T18:25:34 | 2018-02-13T18:25:34 | 140,078,090 | 1 | 0 | null | 2018-07-07T11:21:44 | 2018-07-07T11:21:44 | null | UTF-8 | C++ | false | false | 3,111 | cpp | // =====================================================================================
//
// Filename: 10254.cpp
// Created: 2017년 01월 15일 02시 38분 02초
// Compiler: g++ -O2 -std=c++14
// Author: baactree , [email protected]
// Company: Chonnam National University
//
// =====================================================================================
#include <bits/stdc++.h>
using namespace std;
template <typename T>
struct vector2 {
T x, y;
explicit vector2(T x = 0, T y = 0) :x(x), y(y) {}
bool operator == (const vector2& rhs)const {
return x == rhs.x&&y == rhs.y;
}
bool operator < (const vector2& rhs)const {
return x != rhs.x ? x < rhs.x : y < rhs.y;
}
vector2 operator + (const vector2&rhs)const {
return vector2(x + rhs.x, y + rhs.y);
}
vector2 operator - (const vector2&rhs)const {
return vector2(x - rhs.x, y - rhs.y);
}
vector2 operator * (int rhs)const {
return vector2(x*rhs, y*rhs);
}
T norm() const {
return hypot(x,y);
}
vector2 normalize() const {
return vector2(x / norm(), y / norm());
}
T dot(const vector2&rhs)const {
return x*rhs.x + y*rhs.y;
}
T cross(const vector2&rhs)const {
return x*rhs.y - rhs.x*y;
}
};
double ccw(vector2<double> a, vector2<double> b) {
return a.cross(b);
}
double ccw(vector2<double> p, vector2<double> a, vector2<double> b) {
return ccw(a - p, b - p);
}
int N;
vector2<double> input[200000];
vector2<double> hull[200000],up[200000],down[200000];
pair<vector2<double>, vector2<double>> ans;
vector2<double> toNext[200000];
int a, b;
int main() {
int Case;
scanf("%d", &Case);
while (Case--) {
scanf("%d", &N);
for (int i = 0; i < N; i++)
scanf("%lf%lf", &input[i].x, &input[i].y);
int idx, iup, idown;
iup = idown = -1;
sort(input, input + N);
for (int i = 0; i < N; i++) {
while (iup > 0 && ccw(up[iup - 1], up[iup], input[i]) > 0)iup--;
up[++iup] = input[i];
while (idown > 0 && ccw(down[idown - 1], down[idown], input[i]) < 0)idown--;
down[++idown] = input[i];
}
for (idx = 0; idx <= iup; idx++)
hull[idx] = up[idx];
for (int i = idown - 1; i > 0; i--)
hull[idx++] = down[i];
int n = idx;
int left = min_element(hull, hull+n) - hull;
int right = max_element(hull, hull+n) - hull;
vector2<double> calipersA(0, 1);
double ret = (hull[right] - hull[left]).norm();
ans.first = hull[right],ans.second = hull[left];
for (int i = 0; i < n; i++)
toNext[i] = (hull[(i + 1) % n] - hull[i]).normalize();
int a = left, b = right;
while (a != right || b != left) {
double cosThetaA = calipersA.dot(toNext[a]);
double cosThetaB = -calipersA.dot(toNext[b]);
if (a!=right && (cosThetaA > cosThetaB || b == left)) {
calipersA = toNext[a];
a = (a + 1) % n;
}
else {
calipersA = toNext[b] * (-1);
b = (b + 1) % n;
}
if (ret < (hull[a] - hull[b]).norm()) {
ret = (hull[a] - hull[b]).norm();
ans.first = hull[a], ans.second = hull[b];
}
}
printf("%d %d %d %d\n", (int)ans.first.x, (int)ans.first.y, (int)ans.second.x, (int)ans.second.y);
}
return 0;
}
| [
"[email protected]"
] | |
a61a0f13485ab3c8cbfa1b15696efdbca05774bb | 880639d21c818bb5b9ab1f1d82da1e26bb31739d | /src/arith_uint256.h | 522dec1cde98bedd75b68d4f203b727d8fe85474 | [
"MIT"
] | permissive | jwrl/Unit | dba4c0c810df7304bbe9d52f7ad0f1ab97c1fb4c | fd8e4fdb548ca5ba33e6f22176a569a102a78f99 | refs/heads/master | 2020-12-26T22:27:41.467471 | 2020-02-01T20:21:23 | 2020-02-01T20:21:23 | 237,667,704 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 9,074 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2017 The Bitcoin Core developers
// Copyright (c) 2019 The Unit Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_ARITH_UINT256_H
#define BITCOIN_ARITH_UINT256_H
#include <assert.h>
#include <cstring>
#include <stdexcept>
#include <stdint.h>
#include <string>
#include <vector>
class uint256;
class uint_error : public std::runtime_error {
public:
explicit uint_error(const std::string& str) : std::runtime_error(str) {}
};
/** Template base class for unsigned big integers. */
template<unsigned int BITS>
class base_uint
{
protected:
static constexpr int WIDTH = BITS / 32;
uint32_t pn[WIDTH];
public:
base_uint()
{
static_assert(BITS/32 > 0 && BITS%32 == 0, "Template parameter BITS must be a positive multiple of 32.");
for (int i = 0; i < WIDTH; i++)
pn[i] = 0;
}
base_uint(const base_uint& b)
{
static_assert(BITS/32 > 0 && BITS%32 == 0, "Template parameter BITS must be a positive multiple of 32.");
for (int i = 0; i < WIDTH; i++)
pn[i] = b.pn[i];
}
base_uint& operator=(const base_uint& b)
{
for (int i = 0; i < WIDTH; i++)
pn[i] = b.pn[i];
return *this;
}
base_uint(uint64_t b)
{
static_assert(BITS/32 > 0 && BITS%32 == 0, "Template parameter BITS must be a positive multiple of 32.");
pn[0] = (unsigned int)b;
pn[1] = (unsigned int)(b >> 32);
for (int i = 2; i < WIDTH; i++)
pn[i] = 0;
}
explicit base_uint(const std::string& str);
bool operator!() const
{
for (int i = 0; i < WIDTH; i++)
if (pn[i] != 0)
return false;
return true;
}
const base_uint operator~() const
{
base_uint ret;
for (int i = 0; i < WIDTH; i++)
ret.pn[i] = ~pn[i];
return ret;
}
const base_uint operator-() const
{
base_uint ret;
for (int i = 0; i < WIDTH; i++)
ret.pn[i] = ~pn[i];
ret++;
return ret;
}
double getdouble() const;
base_uint& operator=(uint64_t b)
{
pn[0] = (unsigned int)b;
pn[1] = (unsigned int)(b >> 32);
for (int i = 2; i < WIDTH; i++)
pn[i] = 0;
return *this;
}
base_uint& operator^=(const base_uint& b)
{
for (int i = 0; i < WIDTH; i++)
pn[i] ^= b.pn[i];
return *this;
}
base_uint& operator&=(const base_uint& b)
{
for (int i = 0; i < WIDTH; i++)
pn[i] &= b.pn[i];
return *this;
}
base_uint& operator|=(const base_uint& b)
{
for (int i = 0; i < WIDTH; i++)
pn[i] |= b.pn[i];
return *this;
}
base_uint& operator^=(uint64_t b)
{
pn[0] ^= (unsigned int)b;
pn[1] ^= (unsigned int)(b >> 32);
return *this;
}
base_uint& operator|=(uint64_t b)
{
pn[0] |= (unsigned int)b;
pn[1] |= (unsigned int)(b >> 32);
return *this;
}
base_uint& operator<<=(unsigned int shift);
base_uint& operator>>=(unsigned int shift);
base_uint& operator+=(const base_uint& b)
{
uint64_t carry = 0;
for (int i = 0; i < WIDTH; i++)
{
uint64_t n = carry + pn[i] + b.pn[i];
pn[i] = n & 0xffffffff;
carry = n >> 32;
}
return *this;
}
base_uint& operator-=(const base_uint& b)
{
*this += -b;
return *this;
}
base_uint& operator+=(uint64_t b64)
{
base_uint b;
b = b64;
*this += b;
return *this;
}
base_uint& operator-=(uint64_t b64)
{
base_uint b;
b = b64;
*this += -b;
return *this;
}
base_uint& operator*=(uint32_t b32);
base_uint& operator*=(const base_uint& b);
base_uint& operator/=(const base_uint& b);
base_uint& operator++()
{
// prefix operator
int i = 0;
while (i < WIDTH && ++pn[i] == 0)
i++;
return *this;
}
const base_uint operator++(int)
{
// postfix operator
const base_uint ret = *this;
++(*this);
return ret;
}
base_uint& operator--()
{
// prefix operator
int i = 0;
while (i < WIDTH && --pn[i] == (uint32_t)-1)
i++;
return *this;
}
const base_uint operator--(int)
{
// postfix operator
const base_uint ret = *this;
--(*this);
return ret;
}
int CompareTo(const base_uint& b) const;
bool EqualTo(uint64_t b) const;
friend inline const base_uint operator+(const base_uint& a, const base_uint& b) { return base_uint(a) += b; }
friend inline const base_uint operator-(const base_uint& a, const base_uint& b) { return base_uint(a) -= b; }
friend inline const base_uint operator*(const base_uint& a, const base_uint& b) { return base_uint(a) *= b; }
friend inline const base_uint operator/(const base_uint& a, const base_uint& b) { return base_uint(a) /= b; }
friend inline const base_uint operator|(const base_uint& a, const base_uint& b) { return base_uint(a) |= b; }
friend inline const base_uint operator&(const base_uint& a, const base_uint& b) { return base_uint(a) &= b; }
friend inline const base_uint operator^(const base_uint& a, const base_uint& b) { return base_uint(a) ^= b; }
friend inline const base_uint operator>>(const base_uint& a, int shift) { return base_uint(a) >>= shift; }
friend inline const base_uint operator<<(const base_uint& a, int shift) { return base_uint(a) <<= shift; }
friend inline const base_uint operator*(const base_uint& a, uint32_t b) { return base_uint(a) *= b; }
friend inline bool operator==(const base_uint& a, const base_uint& b) { return memcmp(a.pn, b.pn, sizeof(a.pn)) == 0; }
friend inline bool operator!=(const base_uint& a, const base_uint& b) { return memcmp(a.pn, b.pn, sizeof(a.pn)) != 0; }
friend inline bool operator>(const base_uint& a, const base_uint& b) { return a.CompareTo(b) > 0; }
friend inline bool operator<(const base_uint& a, const base_uint& b) { return a.CompareTo(b) < 0; }
friend inline bool operator>=(const base_uint& a, const base_uint& b) { return a.CompareTo(b) >= 0; }
friend inline bool operator<=(const base_uint& a, const base_uint& b) { return a.CompareTo(b) <= 0; }
friend inline bool operator==(const base_uint& a, uint64_t b) { return a.EqualTo(b); }
friend inline bool operator!=(const base_uint& a, uint64_t b) { return !a.EqualTo(b); }
std::string GetHex() const;
void SetHex(const char* psz);
void SetHex(const std::string& str);
std::string ToString() const;
unsigned int size() const
{
return sizeof(pn);
}
/**
* Returns the position of the highest bit set plus one, or zero if the
* value is zero.
*/
unsigned int bits() const;
uint64_t GetLow64() const
{
static_assert(WIDTH >= 2, "Assertion WIDTH >= 2 failed (WIDTH = BITS / 32). BITS is a template parameter.");
return pn[0] | (uint64_t)pn[1] << 32;
}
};
/** 256-bit unsigned big integer. */
class arith_uint256 : public base_uint<256> {
public:
arith_uint256() {}
arith_uint256(const base_uint<256>& b) : base_uint<256>(b) {}
arith_uint256(uint64_t b) : base_uint<256>(b) {}
explicit arith_uint256(const std::string& str) : base_uint<256>(str) {}
/**
* The "compact" format is a representation of a whole
* number N using an unsigned 32bit number similar to a
* floating point format.
* The most significant 8 bits are the unsigned exponent of base 256.
* This exponent can be thought of as "number of bytes of N".
* The lower 23 bits are the mantissa.
* Bit number 24 (0x800000) represents the sign of N.
* N = (-1^sign) * mantissa * 256^(exponent-3)
*
* Satoshi's original implementation used BN_bn2mpi() and BN_mpi2bn().
* MPI uses the most significant bit of the first byte as sign.
* Thus 0x1234560000 is compact (0x05123456)
* and 0xc0de000000 is compact (0x0600c0de)
*
* Bitcoin only uses this "compact" format for encoding difficulty
* targets, which are unsigned 256bit quantities. Thus, all the
* complexities of the sign bit and using base 256 are probably an
* implementation accident.
*/
arith_uint256& SetCompact(uint32_t nCompact, bool *pfNegative = nullptr, bool *pfOverflow = nullptr);
uint32_t GetCompact(bool fNegative = false) const;
friend uint256 ArithToUint256(const arith_uint256 &);
friend arith_uint256 UintToArith256(const uint256 &);
};
uint256 ArithToUint256(const arith_uint256 &);
arith_uint256 UintToArith256(const uint256 &);
#endif // BITCOIN_ARITH_UINT256_H
| [
"[email protected]"
] | |
a950ee7858d41730d64b45cbef2d1d40b9e095cf | cf26d4c768bb463e784b3bc227f89696a5df7db1 | /src/base58.h | 9eb27e94ee4a774713a4a320c2f23eac39f10e39 | [
"MIT"
] | permissive | beastlymac/ccoin | 3ee15406c4fe70e77a8e1351a20db3e609df921f | b1fed673a1f15436519948520b416df798a72a61 | refs/heads/master | 2021-01-01T05:35:13.616981 | 2014-01-11T18:45:10 | 2014-01-11T18:45:10 | 15,719,721 | 1 | 0 | null | 2014-09-06T01:28:18 | 2014-01-07T23:20:47 | TypeScript | UTF-8 | C++ | false | false | 13,228 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2012 The Bitcoin Developers
// Copyright (c) 2011-2012 Litecoin Developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
//
// Why base-58 instead of standard base-64 encoding?
// - Don't want 0OIl characters that look the same in some fonts and
// could be used to create visually identical looking account numbers.
// - A string with non-alphanumeric characters is not as easily accepted as an account number.
// - E-mail usually won't line-break if there's no punctuation to break at.
// - Doubleclicking selects the whole number as one word if it's all alphanumeric.
//
#ifndef BITCOIN_BASE58_H
#define BITCOIN_BASE58_H
#include <string>
#include <vector>
#include "bignum.h"
#include "key.h"
#include "script.h"
static const char* pszBase58 = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz";
// Encode a byte sequence as a base58-encoded string
inline std::string EncodeBase58(const unsigned char* pbegin, const unsigned char* pend)
{
CAutoBN_CTX pctx;
CBigNum bn58 = 58;
CBigNum bn0 = 0;
// Convert big endian data to little endian
// Extra zero at the end make sure bignum will interpret as a positive number
std::vector<unsigned char> vchTmp(pend-pbegin+1, 0);
reverse_copy(pbegin, pend, vchTmp.begin());
// Convert little endian data to bignum
CBigNum bn;
bn.setvch(vchTmp);
// Convert bignum to std::string
std::string str;
// Expected size increase from base58 conversion is approximately 137%
// use 138% to be safe
str.reserve((pend - pbegin) * 138 / 100 + 1);
CBigNum dv;
CBigNum rem;
while (bn > bn0)
{
if (!BN_div(&dv, &rem, &bn, &bn58, pctx))
throw bignum_error("EncodeBase58 : BN_div failed");
bn = dv;
unsigned int c = rem.getulong();
str += pszBase58[c];
}
// Leading zeroes encoded as base58 zeros
for (const unsigned char* p = pbegin; p < pend && *p == 0; p++)
str += pszBase58[0];
// Convert little endian std::string to big endian
reverse(str.begin(), str.end());
return str;
}
// Encode a byte vector as a base58-encoded string
inline std::string EncodeBase58(const std::vector<unsigned char>& vch)
{
return EncodeBase58(&vch[0], &vch[0] + vch.size());
}
// Decode a base58-encoded string psz into byte vector vchRet
// returns true if decoding is successful
inline bool DecodeBase58(const char* psz, std::vector<unsigned char>& vchRet)
{
CAutoBN_CTX pctx;
vchRet.clear();
CBigNum bn58 = 58;
CBigNum bn = 0;
CBigNum bnChar;
while (isspace(*psz))
psz++;
// Convert big endian string to bignum
for (const char* p = psz; *p; p++)
{
const char* p1 = strchr(pszBase58, *p);
if (p1 == NULL)
{
while (isspace(*p))
p++;
if (*p != '\0')
return false;
break;
}
bnChar.setulong(p1 - pszBase58);
if (!BN_mul(&bn, &bn, &bn58, pctx))
throw bignum_error("DecodeBase58 : BN_mul failed");
bn += bnChar;
}
// Get bignum as little endian data
std::vector<unsigned char> vchTmp = bn.getvch();
// Trim off sign byte if present
if (vchTmp.size() >= 2 && vchTmp.end()[-1] == 0 && vchTmp.end()[-2] >= 0x80)
vchTmp.erase(vchTmp.end()-1);
// Restore leading zeros
int nLeadingZeros = 0;
for (const char* p = psz; *p == pszBase58[0]; p++)
nLeadingZeros++;
vchRet.assign(nLeadingZeros + vchTmp.size(), 0);
// Convert little endian data to big endian
reverse_copy(vchTmp.begin(), vchTmp.end(), vchRet.end() - vchTmp.size());
return true;
}
// Decode a base58-encoded string str into byte vector vchRet
// returns true if decoding is successful
inline bool DecodeBase58(const std::string& str, std::vector<unsigned char>& vchRet)
{
return DecodeBase58(str.c_str(), vchRet);
}
// Encode a byte vector to a base58-encoded string, including checksum
inline std::string EncodeBase58Check(const std::vector<unsigned char>& vchIn)
{
// add 4-byte hash check to the end
std::vector<unsigned char> vch(vchIn);
uint256 hash = Hash(vch.begin(), vch.end());
vch.insert(vch.end(), (unsigned char*)&hash, (unsigned char*)&hash + 4);
return EncodeBase58(vch);
}
// Decode a base58-encoded string psz that includes a checksum, into byte vector vchRet
// returns true if decoding is successful
inline bool DecodeBase58Check(const char* psz, std::vector<unsigned char>& vchRet)
{
if (!DecodeBase58(psz, vchRet))
return false;
if (vchRet.size() < 4)
{
vchRet.clear();
return false;
}
uint256 hash = Hash(vchRet.begin(), vchRet.end()-4);
if (memcmp(&hash, &vchRet.end()[-4], 4) != 0)
{
vchRet.clear();
return false;
}
vchRet.resize(vchRet.size()-4);
return true;
}
// Decode a base58-encoded string str that includes a checksum, into byte vector vchRet
// returns true if decoding is successful
inline bool DecodeBase58Check(const std::string& str, std::vector<unsigned char>& vchRet)
{
return DecodeBase58Check(str.c_str(), vchRet);
}
/** Base class for all base58-encoded data */
class CBase58Data
{
protected:
// the version byte
unsigned char nVersion;
// the actually encoded data
std::vector<unsigned char> vchData;
CBase58Data()
{
nVersion = 0;
vchData.clear();
}
~CBase58Data()
{
// zero the memory, as it may contain sensitive data
if (!vchData.empty())
memset(&vchData[0], 0, vchData.size());
}
void SetData(int nVersionIn, const void* pdata, size_t nSize)
{
nVersion = nVersionIn;
vchData.resize(nSize);
if (!vchData.empty())
memcpy(&vchData[0], pdata, nSize);
}
void SetData(int nVersionIn, const unsigned char *pbegin, const unsigned char *pend)
{
SetData(nVersionIn, (void*)pbegin, pend - pbegin);
}
public:
bool SetString(const char* psz)
{
std::vector<unsigned char> vchTemp;
DecodeBase58Check(psz, vchTemp);
if (vchTemp.empty())
{
vchData.clear();
nVersion = 0;
return false;
}
nVersion = vchTemp[0];
vchData.resize(vchTemp.size() - 1);
if (!vchData.empty())
memcpy(&vchData[0], &vchTemp[1], vchData.size());
memset(&vchTemp[0], 0, vchTemp.size());
return true;
}
bool SetString(const std::string& str)
{
return SetString(str.c_str());
}
std::string ToString() const
{
std::vector<unsigned char> vch(1, nVersion);
vch.insert(vch.end(), vchData.begin(), vchData.end());
return EncodeBase58Check(vch);
}
int CompareTo(const CBase58Data& b58) const
{
if (nVersion < b58.nVersion) return -1;
if (nVersion > b58.nVersion) return 1;
if (vchData < b58.vchData) return -1;
if (vchData > b58.vchData) return 1;
return 0;
}
bool operator==(const CBase58Data& b58) const { return CompareTo(b58) == 0; }
bool operator<=(const CBase58Data& b58) const { return CompareTo(b58) <= 0; }
bool operator>=(const CBase58Data& b58) const { return CompareTo(b58) >= 0; }
bool operator< (const CBase58Data& b58) const { return CompareTo(b58) < 0; }
bool operator> (const CBase58Data& b58) const { return CompareTo(b58) > 0; }
};
/** base58-encoded Bitcoin addresses.
* Public-key-hash-addresses have version 0 (or 111 testnet).
* The data vector contains RIPEMD160(SHA256(pubkey)), where pubkey is the serialized public key.
* Script-hash-addresses have version 5 (or 196 testnet).
* The data vector contains RIPEMD160(SHA256(cscript)), where cscript is the serialized redemption script.
*/
class CBitcoinAddress;
class CBitcoinAddressVisitor : public boost::static_visitor<bool>
{
private:
CBitcoinAddress *addr;
public:
CBitcoinAddressVisitor(CBitcoinAddress *addrIn) : addr(addrIn) { }
bool operator()(const CKeyID &id) const;
bool operator()(const CScriptID &id) const;
bool operator()(const CNoDestination &no) const;
};
class CBitcoinAddress : public CBase58Data
{
public:
enum
{
PUBKEY_ADDRESS = 50, //Set the address first bit here
SCRIPT_ADDRESS = 5,
PUBKEY_ADDRESS_TEST = 111,
SCRIPT_ADDRESS_TEST = 196,
};
bool Set(const CKeyID &id) {
SetData(fTestNet ? PUBKEY_ADDRESS_TEST : PUBKEY_ADDRESS, &id, 20);
return true;
}
bool Set(const CScriptID &id) {
SetData(fTestNet ? SCRIPT_ADDRESS_TEST : SCRIPT_ADDRESS, &id, 20);
return true;
}
bool Set(const CTxDestination &dest)
{
return boost::apply_visitor(CBitcoinAddressVisitor(this), dest);
}
bool IsValid() const
{
unsigned int nExpectedSize = 20;
bool fExpectTestNet = false;
switch(nVersion)
{
case PUBKEY_ADDRESS:
nExpectedSize = 20; // Hash of public key
fExpectTestNet = false;
break;
case SCRIPT_ADDRESS:
nExpectedSize = 20; // Hash of CScript
fExpectTestNet = false;
break;
case PUBKEY_ADDRESS_TEST:
nExpectedSize = 20;
fExpectTestNet = true;
break;
case SCRIPT_ADDRESS_TEST:
nExpectedSize = 20;
fExpectTestNet = true;
break;
default:
return false;
}
return fExpectTestNet == fTestNet && vchData.size() == nExpectedSize;
}
CBitcoinAddress()
{
}
CBitcoinAddress(const CTxDestination &dest)
{
Set(dest);
}
CBitcoinAddress(const std::string& strAddress)
{
SetString(strAddress);
}
CBitcoinAddress(const char* pszAddress)
{
SetString(pszAddress);
}
CTxDestination Get() const {
if (!IsValid())
return CNoDestination();
switch (nVersion) {
case PUBKEY_ADDRESS:
case PUBKEY_ADDRESS_TEST: {
uint160 id;
memcpy(&id, &vchData[0], 20);
return CKeyID(id);
}
case SCRIPT_ADDRESS:
case SCRIPT_ADDRESS_TEST: {
uint160 id;
memcpy(&id, &vchData[0], 20);
return CScriptID(id);
}
}
return CNoDestination();
}
bool GetKeyID(CKeyID &keyID) const {
if (!IsValid())
return false;
switch (nVersion) {
case PUBKEY_ADDRESS:
case PUBKEY_ADDRESS_TEST: {
uint160 id;
memcpy(&id, &vchData[0], 20);
keyID = CKeyID(id);
return true;
}
default: return false;
}
}
bool IsScript() const {
if (!IsValid())
return false;
switch (nVersion) {
case SCRIPT_ADDRESS:
case SCRIPT_ADDRESS_TEST: {
return true;
}
default: return false;
}
}
};
bool inline CBitcoinAddressVisitor::operator()(const CKeyID &id) const { return addr->Set(id); }
bool inline CBitcoinAddressVisitor::operator()(const CScriptID &id) const { return addr->Set(id); }
bool inline CBitcoinAddressVisitor::operator()(const CNoDestination &id) const { return false; }
/** A base58-encoded secret key */
class CBitcoinSecret : public CBase58Data
{
public:
enum
{
PRIVKEY_ADDRESS = CBitcoinAddress::PUBKEY_ADDRESS + 128,
PRIVKEY_ADDRESS_TEST = CBitcoinAddress::PUBKEY_ADDRESS_TEST + 128,
};
void SetSecret(const CSecret& vchSecret, bool fCompressed)
{
assert(vchSecret.size() == 32);
SetData(fTestNet ? PRIVKEY_ADDRESS_TEST : PRIVKEY_ADDRESS, &vchSecret[0], vchSecret.size());
if (fCompressed)
vchData.push_back(1);
}
CSecret GetSecret(bool &fCompressedOut)
{
CSecret vchSecret;
vchSecret.resize(32);
memcpy(&vchSecret[0], &vchData[0], 32);
fCompressedOut = vchData.size() == 33;
return vchSecret;
}
bool IsValid() const
{
bool fExpectTestNet = false;
switch(nVersion)
{
case PRIVKEY_ADDRESS:
break;
case PRIVKEY_ADDRESS_TEST:
fExpectTestNet = true;
break;
default:
return false;
}
return fExpectTestNet == fTestNet && (vchData.size() == 32 || (vchData.size() == 33 && vchData[32] == 1));
}
bool SetString(const char* pszSecret)
{
return CBase58Data::SetString(pszSecret) && IsValid();
}
bool SetString(const std::string& strSecret)
{
return SetString(strSecret.c_str());
}
CBitcoinSecret(const CSecret& vchSecret, bool fCompressed)
{
SetSecret(vchSecret, fCompressed);
}
CBitcoinSecret()
{
}
};
#endif
| [
"[email protected]"
] | |
a6958413186262b0e6ac06f3fe4bfabf7385d402 | 5174ad5bd0194bafd3f4506d6271c3f620532422 | /src/core/Stringable.hpp | 3c926c11b0efd9affc96d0c4c2fe3ea76a8aab9f | [
"LicenseRef-scancode-other-permissive",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | silverweed/lifish | 48e688b12e533ce9ccd75e60afa6dd380615fd00 | 5168fb12fa9e76107e27c84dcb63a08a728f7259 | refs/heads/boom | 2023-08-17T13:46:05.829838 | 2023-08-05T19:19:59 | 2023-08-05T19:19:59 | 37,540,907 | 45 | 8 | NOASSERTION | 2022-08-29T07:54:29 | 2015-06-16T16:05:25 | C++ | UTF-8 | C++ | false | false | 152 | hpp | #pragma once
#include <string>
namespace lif {
class Stringable {
public:
virtual ~Stringable() {}
virtual std::string toString() const = 0;
};
}
| [
"[email protected]"
] | |
e54cad56a08bfff9832f8b52c04b37da47a081c5 | d55d1b0114c379478d52f4001171a23c73257488 | /Ordered Data Structures/week3/GenericTree/GenericTreeExercises.h | 398eb0b043b62dcac1d969103a701fcf5f860aef | [] | no_license | ahmadsadeed/UIUC_DSA | 5f69fbe8026e9c7ee262c0019107042d2fe99f97 | 9656cc20a48de27df185546af627f9d4edefaa83 | refs/heads/main | 2023-05-11T23:06:11.307540 | 2021-05-28T06:29:48 | 2021-05-28T06:29:48 | 371,600,898 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 18,041 | h |
/**
* @file GenericTreeExercises.h
* University of Illinois CS 400, MOOC 2, Week 3: Generic Tree
* Spring 2019
* STUDENT STARTER FILE
*
* @author Eric Huber - University of Illinois staff
*
**/
/********************************************************************
NOTE: There are 2 exercises in this file! Please complete them
both and test your work before handing this file in on Coursera.
You can jump to the functions that need editing by searching for
"TODO", but ideally, you should read through this entire code file
for background information and hints.
********************************************************************/
// Prevent the header from being included more than once per cpp file
#pragma once
// It's good to put system headers first, so that if your own libraries
// cause conflicts, the compiler will most likely identify the problem
// as being in your own source code files, where it arises later.
#include <iostream>
#include <string>
// This is the provided GenericTree class. You can study the header file
// liner notes for additional tips and information about the assignment.
#include "GenericTree.h"
/*******************************************************************
EXERCISE 1: Populate a tree by completing the treeFactory function.
Here is a generic tree that stores ints, that is, an instance of
GenericTree<int>:
4
|
|_ 8
| |
| |_ 16
| | |
| | |_ 42
| |
| |_ 23
|
|_ 15
This is how a GenericTree is printed to standard output in the
terminal. The root is 4, which has two children: a left child, 8,
and a right child, 15. 8 has a left child that is 16, and a right
child that is 23. 16 has a single child that is 42.
(Recall that for the sake of our terminal printing, "leftmost"
children are printed first, at the top, and "rightmost" children
are printed last, at the bottom.)
You should try to build this tree as a GenericTree<int> in the
treeFactory function. We'll help you get started below. You can study
the other provided source files for hints, especially GenericTree.h,
main.cpp, and this file, and the terminal output you see should resemble
the diagram shown above.
****************************************************************/
// Note about "static" functions at global scope:
// Normally if you have helper functions declared at global scope, you put
// the declarations (function prototypes) in a header file, and the function
// body definitions in a cpp file. That ensures that function bodies don't
// get redefined during the compiling and linking stages, and it's efficient.
// But in some situations you might want or need to put everything in the
// header file, either for readability, or some other reason. (Some libraries
// today are distributed as header files only.)
// For templated functions, everything usually MUST be in a header file,
// since the compiler refers to the entire definition each time it generates
// specific code later. However, for global-scope helper functions that are
// NOT templated, such as treeFactory, if we insist on defining them in a
// header file, we can put "static" to ensure that the definition is
// restricted to this compilation unit and does not generate conflicts later.
// treeFactory: A GenericTree<int> is passed as input by reference, and this
// function populates it with contents according to the specification given
// above. If the tree passed in already has some contents then they should be
// properly destroyed first. There is no need to return a value because the
// tree is edited in-place by reference.
static void treeFactory(GenericTree<int> &tree) {
// *****************************************************
// EXERCISE 1
// TODO: Your work here! You should edit this function body!
// *****************************************************
// Edit the function body only. You should leave the function header alone.
// Build the contents of tree so that it matches the diagram above
// when you print it out. The main() function runs that test for you.
tree.deleteSubtree(tree.getRootPtr());
tree.compress();
auto *root = tree.createRoot(4);
auto *child1 = root->addChild(8);
auto *child2 = root->addChild(15);
auto *child11 = child1->addChild(16);
auto *child12 = child1->addChild(23);
auto *child121 = child11->addChild(42);
}
// treeFactoryTest: This function demonstrates the execution of treeFactory
// and displays a preview of the results in the main function.
// (You do NOT need to edit this function.)
static void treeFactoryTest() {
std::cout << std::endl;
std::cout << "------------------------------" << std::endl;
std::cout << "EXERCISE 1: treeFactoryTest" << std::endl;
std::cout << "The output should match what you see in the code comments" << std::endl << std::endl;
GenericTree<int> tree(9999);
treeFactory(tree);
std::cout << tree << std::endl;
}
/*******************************************************************
The second exercise is found at the bottom of this file.
Please read through for some background discussion.
****************************************************************/
// -------------------------------------------------------------------
// Breadth-first vs. Depth-first Search Strategies
// -------------------------------------------------------------------
// In the lecture about tree traversal, the professor made a distinction
// between traversal and search: Traversal aims to walk an entire tree,
// while search is meant to find a specific node. There is a certain
// relationship between the depth-first search strategy and the first
// types of traversal order that the professor discussed: Pre-, in-, and
// post-order reporting during traversal can all be accomplished with a
// very similar implementation strategy to depth-first search. That is,
// the goal is to descend entirely down one branch of the tree before
// descending another. This search strategy is easy to implement recursively,
// but you can also manage to do it iteratively using stack data structures.
// You can see some examples of this in the source code provided with this
// assignment.
// The level-order traversal strategy is related to breadth-first search,
// in that it attempts to finish work on an entire layer of the tree before
// working on the next layer. In contrast with the other methods, it is
// somewhat more natural to implement with a queue. However, it's possible
// to use a combination of data structures, iteration, and recursion to
// achieve certain walks through the tree in certain orders.
// -------------------------------------------------------------------
// Recursive vs. Iterative Design
// -------------------------------------------------------------------
// As a warm up, below is an example of how to implement the same essential
// function two different ways. Both of the countNullChildren functions
// intend to count the number of nodes in a subtree that have null pointers
// taking up space. Sometimes the recursive method is naturally suited to a
// certain problem and produces an elegant solution. However, you do need to
// be careful about memory usage in that case; There is more discussion about
// that in GenericTree.h in the commentary on GenericTree<T>::deleteSubtree.
// Since GenericTree has a vector of subchildren for each node, where each
// node can have many children, it seems natural that you would want to be
// able to iterate over the children nodes, even if you take a recursive
// approach to solving a problem. It's okay to combine recursive and
// iterative techniques in that way. It's also possible to convert
// recursive solutions into iterative ones entirely. Usually that just means
// using a data structure to keep track of what work still needs to be done;
// for example, you could use a queue or stack of node pointers that still
// remain to be explored. Then you would loop over the set of remaining work
// until no work is left to do.
// -------------------------------------------------------------------
// Simplifying Templated Helper Functions at Global Scope
// -------------------------------------------------------------------
// Note that countNullChildrenRecursive is a templated helper function
// defined at global scope, not a member function of our tree class.
// There is no need to overly break down the templated argument type,
// because we can let the template variable stand for the whole type.
// For example, don't try to do this here:
//
// template <typename T>
// int countNullChildrenRecursive(typename GenericTree<T>::TreeNode* subtreeRoot) { ... }
//
// That will cause you problems with compilation and require you to manually
// specify the templated type in more places where you call it. Instead,
// below we simply allow N to stand for the fully-qualified node type:
//
// template <typename N>
// int countNullChildrenRecursive(N* subtreeRoot) { ... }
//
// This makes compilation work easily as long as we only call it on the right
// data types, although it provides less compile-time checking that our input
// types are correct. We have to be careful to pass in only a pointer to some
// TreeNode type. (If we pass in something arbitrary like a pointer to int,
// we'll get other compilation errors, but they won't be as immediately clear
// about what the real problem is.)
//
// When interesting issues like this come up with your design, you have to
// think about whether to use a workaround that may be less clear or less
// safe, or if you should redesign so the issue is avoided.
// -------------------------------------------------------------------
// countNullChildrenRecursive: Given a pointer to a TreeNode, look at the
// subtree that is implicitly rooted at that node, and count how many children
// throughout the tree are null pointers. Here, templated type N should be a
// TreeNode inner type belonging to some type of GenericTree.
// (You do NOT need to edit this function.)
template<typename N>
int countNullChildrenRecursive(N *subtreeRoot) {
// Base case: If the root of this subtree itself is null, then return 1.
if (!subtreeRoot) return 1;
int nullChildrenSum = 0;
// Note 1: We'll allow our definition of recursion to include a combination
// of looping and recursing.
// Node 2: Since we dereference subtreeRoot below with "->", we had to make
// sure that it was not null first. We already handled that base case above.
// Note 3: Instead of "auto", it also works to write "auto*" or "N*" here
// based on how we've set up the template. But you can't use "auto" in the
// function arguments list, only inside the function.
// Iterate over the list of children and recurse on each subtree.
for (auto childPtr : subtreeRoot->childrenPtrs) {
// Increment the sum by the result of recursing on this child's subtree.
nullChildrenSum += countNullChildrenRecursive(childPtr);
}
// Return the sum.
return nullChildrenSum;
}
// countNullChildrenIterative: Given a pointer to a TreeNode, look at the
// subtree that is implicitly rooted at that node, and count how many children
// throughout the tree are null pointers. Here, templated type N should be a
// TreeNode inner type belonging to some type of GenericTree.
// (You do NOT need to edit this function.)
template<typename N>
int countNullChildrenIterative(N *subtreeRoot) {
int nullChildrenSum = 0;
// Stack of node pointers that we still need to explore (constructed empty)
std::stack < N * > nodesToExplore;
// Begin by pushing our subtree root pointer onto the stack
nodesToExplore.push(subtreeRoot);
// Loop while there are still nodes to explore
while (!nodesToExplore.empty()) {
// Make a copy of the top pointer on the stack, then pop it to decrease the stack
N *topNode = nodesToExplore.top();
nodesToExplore.pop();
if (!topNode) {
// If the top node pointer is null, then we must not dereference it.
// Just increment the null counter, then "continue" to jump back to the top of the loop.
nullChildrenSum++;
continue;
}
// If the node exists, it may have children pointers. Let's iterate
// through the childrenPtrs vector and push copies of those pointers
// onto the exploration stack.
for (auto childPtr : topNode->childrenPtrs) {
nodesToExplore.push(childPtr);
}
}
// Return the sum.
return nullChildrenSum;
}
/*******************************************************************
EXERCISE 2: Implement level-order traversal in the traverseLevels function.
As discussed above, a level-order traversal is related to the idea of a
breadth-first traversal. You need to implement the traverseLevels function,
which takes a tree as input and performs a level-order traversal. Traverse
the tree one layer at a time, visiting child nodes from left to right, while
storing copies of the node data in level order as a std::vector. If a null
child pointer is encountered, no data item should be appended to the results
for that one pointer. The function should return the std::vector of result
data in the appropriate order.
You may implement the body of the function however you want, but you must
not leak any memory or crash, and your function should work for any
simple instance of GenericTree<T> (such as GenericTree<int> or
GenericTree<std::string>). You'll find several good strategies for building
the function throughout the source files provided with this assignment.
****************************************************************/
// traverseLevels: Performs a level-order traversal of the input tree
// and records copies of the data found, in order, in a std::vector,
// which should then be returned.
template<typename T>
std::vector <T> traverseLevels(GenericTree<T> &tree) {
// This defines a type alias for the appropriate TreeNode dependent type.
// This might be convenient.
using TreeNode = typename GenericTree<T>::TreeNode;
// Now you can refer to a pointer to a TreeNode in this function like this.
// TreeNode* someTreeNodePointer = nullptr;
// This is the results vector you need to fill.
std::vector <T> results;
auto rootNodePtr = tree.getRootPtr();
if (!rootNodePtr) return results;
// *****************************************************
// EXERCISE 2
// TODO: Your work here! You should edit this function body!
// *****************************************************
// Perform a level-order traversal and record the data of the nodes in
// the results vector. They should be placed in the vector in level order.
// Remember that you can add a copy of an item to the back of a std::vector
// with the .push_back() member function.
std::queue<TreeNode*> q;
q.push(rootNodePtr);
while(!q.empty()) {
TreeNode *front = q.front();
q.pop();
results.push_back(front->data);
for (auto child : front->childrenPtrs){
q.push(child);
}
}
return results;
}
// traversalTest: Runs some tests with your traverseLevels function and
// displays comparison output. (You do NOT need to edit this function.)
static void traversalTest() {
std::cout << std::endl;
std::cout << "------------------------------" << std::endl;
std::cout << "EXERCISE 2: traversalTest" << std::endl;
std::cout << "Testing your traverseLevels function" << std::endl << std::endl;
{
// This is the tree from exampleTree1() in main.cpp
std::cout << "[Test 1] Expected output:" << std::endl
<< "A B E C D F G" << std::endl;
GenericTree<std::string> tree1("A");
auto nodeA = tree1.getRootPtr();
auto nodeB = nodeA->addChild("B");
nodeB->addChild("C");
nodeB->addChild("D");
auto nodeE = nodeA->addChild("E");
nodeE->addChild("F");
nodeE->addChild("G");
std::vector <std::string> tree1_results = traverseLevels(tree1);
std::cout << "Your traverseLevels output:" << std::endl;
for (auto result : tree1_results) {
std::cout << result << " ";
}
std::cout << std::endl << std::endl;
}
{
// This is the tree from exampleTree2() in main.cpp
std::cout << "[Test 2] Expected output:" << std::endl
<< "A B D J K C E I L F G M H" << std::endl;
GenericTree<std::string> tree2("A");
auto A = tree2.getRootPtr();
A->addChild("B")->addChild("C");
auto D = A->addChild("D");
auto E = D->addChild("E");
E->addChild("F");
E->addChild("G")->addChild("H");
D->addChild("I");
A->addChild("J");
auto L = A->addChild("K")->addChild("L");
L->addChild("M");
std::vector <std::string> tree2_results = traverseLevels(tree2);
std::cout << "Your traverseLevels output:" << std::endl;
for (auto result : tree2_results) {
std::cout << result << " ";
}
std::cout << std::endl << std::endl;
}
{
// This is the tree you should have built for the first part of this
// assignment above, with treeFactory.
std::cout << "[Test 3] Expected output:" << std::endl
<< "4 8 15 16 23 42" << std::endl;
GenericTree<int> tree3(9999);
treeFactory(tree3);
std::vector<int> tree3_results = traverseLevels(tree3);
std::cout << "Your traverseLevels output:" << std::endl;
for (auto result : tree3_results) {
std::cout << result << " ";
}
std::cout << std::endl << std::endl;
}
}
| [
"[email protected]"
] | |
3a76da1835c3b86162c329c940cbe14696e4d4f2 | ad5815234c32a481cec501f2bebc99a5f1653b6d | /Core/Item.h | 936ea1b8bc341bfb5052c57963639854bf5a07d7 | [] | no_license | Nielsbishere/Minopia | 02cc5f47d959e4a1b503ca7c8926aa48977e2d17 | dd3b77cf92a4c8782929c4fb2e1441fe0a4916aa | refs/heads/master | 2020-04-11T19:14:11.239791 | 2018-12-16T18:05:27 | 2018-12-16T18:05:27 | 162,027,170 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 404 | h | /*
* Item.h
*
* Created on: Sept 2, 2016
* Author: Niels
*/
#ifndef ITEM_H_
#define ITEM_H_
using namespace std;
class Item{
private:
string name;
bool universal;
public:
Item(string _name, bool _universal) : name(_name), universal(_universal){}
Item() : name(""), universal(false){}
string getName(){return name;}
bool isUniversal(){return universal;}
};
#endif /* 2D_BLOCK_H_ */
| [
"[email protected]"
] | |
7d36903e7884cd38f9247db67a63378f0ec8c7d3 | 881957082521690f71772d43e19e9f249950cc4a | /1802.cpp | 46a014be7899fac0c0ca2dca549da9f09050f937 | [] | no_license | JY1Lnz/AKOJ | afe46be4690da8d9e6975c9edf35676836e945fa | f5cb268de73e591caff6d8fb14b9eb7b256789cf | refs/heads/master | 2023-01-30T01:02:13.025281 | 2018-12-28T09:52:15 | 2018-12-28T09:52:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 751 | cpp | #include<bits/stdc++.h>
using namespace std;
struct cont
{
string name;
string num;
string sex;
};
int main()
{
ifstream cin ("test.in");
vector<cont> data;
int n;
cont tem;
cin>>n;
while(n--&&cin>>tem.name>>tem.num>>tem.sex)
data.push_back(tem);
cin>>n;
string a,b;
while(n--&&cin>>a>>b)
{
int flag = 1;
for (int i = 0;i<data.size();i++)
{
if (data[i].name==a||data[i].name==b||data[i].num==b||data[i].num==a)
if (data[i].sex == "M")
flag++;
else
flag--;
}
if (flag == 1)
cout<<'Y'<<endl;
else
cout<<'N'<<endl;
}
return 0;
}
| [
"[email protected]"
] | |
e3481127bb90b02c73d34fadca12e81d58a376ca | b12bcb039791d3523a410522403230f5404fd8de | /DesignPattern/Learning-005/Geometry.h | 6fe1b17dbe3a142018ada7f9a20a42f4f22119d9 | [] | no_license | cool-cola/leetcode | dee3bde66661d467c5a9bed4d59f765f83e9ad77 | a8b9eb879a2e88d1ce7dce71baccee1ad772a797 | refs/heads/master | 2021-01-11T03:05:27.480822 | 2017-03-09T07:54:11 | 2017-03-09T07:54:11 | 71,098,116 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 751 | h | #pragma once
#include <iostream>
struct Point
{
double X;
double Y;
Point() : X(0), Y(0) {}
};
class CRectangle
{
public:
CRectangle() : m_Width(0), m_Height(0) {}
virtual void setWidth(double vWidth) {m_Width = vWidth;}
virtual void setHeight(double vHeight) {m_Height = vHeight;}
double getWidth() const {return m_Width;}
double getHeight() const {return m_Height;}
double area() const { return m_Height*m_Width;}
private:
Point m_TopLeft;
double m_Width;
double m_Height;
};
class CSquare : public CRectangle
{
public:
void setWidth(double vWidth)
{
CRectangle::setWidth(vWidth);
CRectangle::setHeight(vWidth);
}
void setHeight(double vHeight)
{
CRectangle::setWidth(vHeight);
CRectangle::setHeight(vHeight);
}
}; | [
"[email protected]"
] | |
69b2ea751db8a446b4808fff3311524d4fe08e22 | 9011166b29eefb4d0fabfa087bfa97402272c5f7 | /Problem Solving Paradigms/11389 - The Bus Driver Problem/11389 - The Bus Driver Problem.cpp | 7fe97429bba95287c3e6c0d02f94fc78d6f74421 | [
"MIT"
] | permissive | matheuscr30/UVA | b6ad38e92dc75dba9c19b6c3ae335bbec5f85d96 | 2623f15de4a3948146fe4148a236d932750633b3 | refs/heads/master | 2021-03-27T18:56:08.551238 | 2019-06-07T01:14:08 | 2019-06-07T01:14:08 | 71,507,615 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 650 | cpp | #include <bits/stdc++.h>
#define endl '\n'
using namespace std;
typedef long long int ll;
main()
{
vector<ll>morning, afternoon;
ll n, d, r, num;
while(cin >> n >> d >> r && (n+d+r))
{
morning.clear();
afternoon.clear();
for(ll i = 0 ; i < n; i++){
cin >> num;
morning.push_back(num);
}
for(ll i = 0 ; i < n; i++){
cin >> num;
afternoon.push_back(num);
}
sort(morning.begin(), morning.end());
sort(afternoon.rbegin(), afternoon.rend());
ll pay = 0;
for(ll i = 0 ; i < n; i++)
{
ll hours = morning[i] + afternoon[i];
if(hours > d)
pay += hours-d;
}
cout << pay*r << endl;
}
}
| [
"[email protected]"
] | |
d4550f8b03e9be9ab8db56fd01d9e6c4c34ab344 | be3167504c0e32d7708e7d13725c2dbc9232f2cb | /mameppk/src/emu/machine/wd7600.h | 1eabda229b516f38f852a68458b1f3a8b5de4124 | [] | no_license | sysfce2/MAME-Plus-Plus-Kaillera | 83b52085dda65045d9f5e8a0b6f3977d75179e78 | 9692743849af5a808e217470abc46e813c9068a5 | refs/heads/master | 2023-08-10T06:12:47.451039 | 2016-08-01T09:44:21 | 2016-08-01T09:44:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,803 | h | // license:BSD-3-Clause
// copyright-holders:Barry Rodewald
/*
* wd7600.h
*
* Created on: 5/05/2014
*/
#ifndef WD7600_H_
#define WD7600_H_
#include "emu.h"
#include "machine/am9517a.h"
#include "machine/pic8259.h"
#include "machine/pit8253.h"
#include "machine/ds128x.h"
#include "machine/at_keybc.h"
#include "machine/ram.h"
#define MCFG_WD7600_ADD(_tag, _clock, _cputag, _isatag, _biostag, _keybctag) \
MCFG_DEVICE_ADD(_tag, WD7600, _clock) \
wd7600_device::static_set_cputag(*device, _cputag); \
wd7600_device::static_set_isatag(*device, _isatag); \
wd7600_device::static_set_biostag(*device, _biostag); \
wd7600_device::static_set_keybctag(*device, _keybctag);
#define MCFG_WD7600_IOR(_ior) \
downcast<wd7600_device *>(device)->set_ior_callback(DEVCB_##_ior);
#define MCFG_WD7600_IOW(_iow) \
downcast<wd7600_device *>(device)->set_iow_callback(DEVCB_##_iow);
#define MCFG_WD7600_TC(_tc) \
downcast<wd7600_device *>(device)->set_tc_callback(DEVCB_##_tc);
#define MCFG_WD7600_HOLD(_hold) \
downcast<wd7600_device *>(device)->set_hold_callback(DEVCB_##_hold);
#define MCFG_WD7600_NMI(_nmi) \
downcast<wd7600_device *>(device)->set_nmi_callback(DEVCB_##_nmi);
#define MCFG_WD7600_INTR(_intr) \
downcast<wd7600_device *>(device)->set_intr_callback(DEVCB_##_intr);
#define MCFG_WD7600_CPURESET(_cpureset) \
downcast<wd7600_device *>(device)->set_cpureset_callback(DEVCB_##_cpureset);
#define MCFG_WD7600_A20M(_a20m) \
downcast<wd7600_device *>(device)->set_a20m_callback(DEVCB_##_a20m);
#define MCFG_WD7600_SPKR(_spkr) \
downcast<wd7600_device *>(device)->set_spkr_callback(DEVCB_##_spkr);
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
// ======================> wd7600_device
class wd7600_device : public device_t
{
public:
// construction/destruction
wd7600_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
// optional information overrides
virtual machine_config_constructor device_mconfig_additions() const;
// callbacks
template<class _ior> void set_ior_callback(_ior ior) { m_read_ior.set_callback(ior); }
template<class _iow> void set_iow_callback(_iow iow) { m_write_iow.set_callback(iow); }
template<class _tc> void set_tc_callback(_tc tc) { m_write_tc.set_callback(tc); }
template<class _hold> void set_hold_callback(_hold hold) { m_write_hold.set_callback(hold); }
template<class _cpureset> void set_cpureset_callback(_cpureset cpureset) { m_write_cpureset.set_callback(cpureset); }
template<class _nmi> void set_nmi_callback(_nmi nmi) { m_write_nmi.set_callback(nmi); }
template<class _intr> void set_intr_callback(_intr intr) { m_write_intr.set_callback(intr); }
template<class _a20m> void set_a20m_callback(_a20m a20m) { m_write_a20m.set_callback(a20m); }
template<class _spkr> void set_spkr_callback(_spkr spkr) { m_write_spkr.set_callback(spkr); }
// inline configuration
static void static_set_cputag(device_t &device, const char *tag);
static void static_set_isatag(device_t &device, const char *tag);
static void static_set_biostag(device_t &device, const char *tag);
static void static_set_keybctag(device_t &device, const char *tag);
DECLARE_WRITE_LINE_MEMBER(rtc_irq_w);
DECLARE_WRITE_LINE_MEMBER( pic1_int_w ) { m_write_intr(state); }
DECLARE_READ8_MEMBER( pic1_slave_ack_r );
DECLARE_WRITE_LINE_MEMBER( ctc_out1_w );
DECLARE_WRITE_LINE_MEMBER( ctc_out2_w );
DECLARE_WRITE8_MEMBER( rtc_w );
DECLARE_WRITE8_MEMBER( keyb_cmd_w );
DECLARE_WRITE8_MEMBER( keyb_data_w );
DECLARE_READ8_MEMBER( keyb_data_r );
DECLARE_READ8_MEMBER( keyb_status_r );
DECLARE_WRITE8_MEMBER( a20_reset_w );
DECLARE_READ8_MEMBER( a20_reset_r );
DECLARE_READ8_MEMBER( portb_r );
DECLARE_WRITE8_MEMBER( portb_w );
DECLARE_WRITE8_MEMBER( dma_page_w ) { m_dma_page[offset & 0x0f] = data; }
DECLARE_READ8_MEMBER( dma_page_r ) { return m_dma_page[offset & 0x0f]; }
DECLARE_READ8_MEMBER( dma_read_byte );
DECLARE_WRITE8_MEMBER( dma_write_byte );
DECLARE_READ8_MEMBER( dma_read_word );
DECLARE_WRITE8_MEMBER( dma_write_word );
DECLARE_WRITE_LINE_MEMBER( dma1_eop_w );
DECLARE_READ8_MEMBER( dma1_ior0_r ) { return m_read_ior(0); }
DECLARE_READ8_MEMBER( dma1_ior1_r ) { return m_read_ior(1); }
DECLARE_READ8_MEMBER( dma1_ior2_r ) { return m_read_ior(2); }
DECLARE_READ8_MEMBER( dma1_ior3_r ) { return m_read_ior(3); }
DECLARE_READ8_MEMBER( dma2_ior1_r ) { UINT16 result = m_read_ior(5); m_dma_high_byte = result >> 8; return result; }
DECLARE_READ8_MEMBER( dma2_ior2_r ) { UINT16 result = m_read_ior(6); m_dma_high_byte = result >> 8; return result; }
DECLARE_READ8_MEMBER( dma2_ior3_r ) { UINT16 result = m_read_ior(7); m_dma_high_byte = result >> 8; return result; }
DECLARE_WRITE8_MEMBER( dma1_iow0_w ) { m_write_iow(0, data, 0xffff); }
DECLARE_WRITE8_MEMBER( dma1_iow1_w ) { m_write_iow(1, data, 0xffff); }
DECLARE_WRITE8_MEMBER( dma1_iow2_w ) { m_write_iow(2, data, 0xffff); }
DECLARE_WRITE8_MEMBER( dma1_iow3_w ) { m_write_iow(3, data, 0xffff); }
DECLARE_WRITE8_MEMBER( dma2_iow1_w ) { m_write_iow(5, (m_dma_high_byte << 8) | data, 0xffff); }
DECLARE_WRITE8_MEMBER( dma2_iow2_w ) { m_write_iow(6, (m_dma_high_byte << 8) | data, 0xffff); }
DECLARE_WRITE8_MEMBER( dma2_iow3_w ) { m_write_iow(7, (m_dma_high_byte << 8) | data, 0xffff); }
DECLARE_WRITE_LINE_MEMBER( dma1_dack0_w ) { set_dma_channel(0, state); }
DECLARE_WRITE_LINE_MEMBER( dma1_dack1_w ) { set_dma_channel(1, state); }
DECLARE_WRITE_LINE_MEMBER( dma1_dack2_w ) { set_dma_channel(2, state); }
DECLARE_WRITE_LINE_MEMBER( dma1_dack3_w ) { set_dma_channel(3, state); }
DECLARE_WRITE_LINE_MEMBER( dma2_dack0_w );
DECLARE_WRITE_LINE_MEMBER( dma2_dack1_w ) { set_dma_channel(5, state); }
DECLARE_WRITE_LINE_MEMBER( dma2_dack2_w ) { set_dma_channel(6, state); }
DECLARE_WRITE_LINE_MEMBER( dma2_dack3_w ) { set_dma_channel(7, state); }
DECLARE_WRITE_LINE_MEMBER( dma2_hreq_w ) { m_write_hold(state); }
// input lines
DECLARE_WRITE_LINE_MEMBER( irq01_w ) { m_pic1->ir1_w(state); }
DECLARE_WRITE_LINE_MEMBER( irq03_w ) { m_pic1->ir3_w(state); }
DECLARE_WRITE_LINE_MEMBER( irq04_w ) { m_pic1->ir4_w(state); }
DECLARE_WRITE_LINE_MEMBER( irq05_w ) { m_pic1->ir5_w(state); }
DECLARE_WRITE_LINE_MEMBER( irq06_w ) { m_pic1->ir6_w(state); }
DECLARE_WRITE_LINE_MEMBER( irq07_w ) { m_pic1->ir7_w(state); }
DECLARE_WRITE_LINE_MEMBER( irq09_w ) { m_pic2->ir1_w(state); }
DECLARE_WRITE_LINE_MEMBER( irq10_w ) { m_pic2->ir2_w(state); }
DECLARE_WRITE_LINE_MEMBER( irq11_w ) { m_pic2->ir3_w(state); }
DECLARE_WRITE_LINE_MEMBER( irq12_w ) { m_pic2->ir4_w(state); }
DECLARE_WRITE_LINE_MEMBER( irq13_w ) { m_pic2->ir5_w(state); } // also FERR#
DECLARE_WRITE_LINE_MEMBER( irq14_w ) { m_pic2->ir6_w(state); }
DECLARE_WRITE_LINE_MEMBER( irq15_w ) { m_pic2->ir7_w(state); }
DECLARE_WRITE_LINE_MEMBER( dreq0_w ) { m_dma1->dreq0_w(state); }
DECLARE_WRITE_LINE_MEMBER( dreq1_w ) { m_dma1->dreq1_w(state); }
DECLARE_WRITE_LINE_MEMBER( dreq2_w ) { m_dma1->dreq2_w(state); }
DECLARE_WRITE_LINE_MEMBER( dreq3_w ) { m_dma1->dreq3_w(state); }
DECLARE_WRITE_LINE_MEMBER( dreq5_w ) { m_dma2->dreq1_w(state); }
DECLARE_WRITE_LINE_MEMBER( dreq6_w ) { m_dma2->dreq2_w(state); }
DECLARE_WRITE_LINE_MEMBER( dreq7_w ) { m_dma2->dreq3_w(state); }
DECLARE_WRITE_LINE_MEMBER( hlda_w ) { m_dma2->hack_w(state); }
DECLARE_WRITE_LINE_MEMBER( iochck_w );
DECLARE_WRITE_LINE_MEMBER( gatea20_w );
DECLARE_WRITE_LINE_MEMBER( kbrst_w );
DECLARE_READ16_MEMBER(refresh_r);
DECLARE_WRITE16_MEMBER(refresh_w);
DECLARE_READ16_MEMBER(chipsel_r);
DECLARE_WRITE16_MEMBER(chipsel_w);
DECLARE_READ16_MEMBER(mem_ctrl_r);
DECLARE_WRITE16_MEMBER(mem_ctrl_w);
DECLARE_READ16_MEMBER(bank_01_start_r);
DECLARE_WRITE16_MEMBER(bank_01_start_w);
DECLARE_READ16_MEMBER(bank_23_start_r);
DECLARE_WRITE16_MEMBER(bank_23_start_w);
DECLARE_READ16_MEMBER(split_addr_r);
DECLARE_WRITE16_MEMBER(split_addr_w);
DECLARE_READ16_MEMBER(diag_r);
DECLARE_WRITE16_MEMBER(diag_w);
IRQ_CALLBACK_MEMBER(intack_cb) { return m_pic1->acknowledge(); }
protected:
// device-level overrides
virtual void device_start();
virtual void device_reset();
private:
devcb_read16 m_read_ior;
devcb_write16 m_write_iow;
devcb_write8 m_write_tc;
devcb_write_line m_write_hold;
devcb_write_line m_write_nmi;
devcb_write_line m_write_intr;
devcb_write_line m_write_cpureset;
devcb_write_line m_write_a20m;
devcb_write_line m_write_spkr;
required_device<am9517a_device> m_dma1;
required_device<am9517a_device> m_dma2;
required_device<pic8259_device> m_pic1;
required_device<pic8259_device> m_pic2;
required_device<pit8254_device> m_ctc;
required_device<ds12885_device> m_rtc;
offs_t page_offset();
void set_dma_channel(int channel, bool state);
void keyboard_gatea20(int state);
void nmi();
void a20m();
// internal state
const char *m_cputag;
const char *m_isatag;
const char *m_biostag;
const char *m_keybctag;
UINT8 m_portb;
int m_iochck;
int m_nmi_mask;
int m_alt_a20;
int m_ext_gatea20;
int m_kbrst;
int m_refresh_toggle;
UINT16 m_refresh_ctrl;
UINT16 m_memory_ctrl;
UINT16 m_chip_sel;
UINT16 m_split_start;
UINT8 m_bank_start[4];
UINT16 m_diagnostic;
int m_dma_eop;
UINT8 m_dma_page[0x10];
UINT8 m_dma_high_byte;
int m_dma_channel;
address_space *m_space;
address_space *m_space_io;
UINT8 *m_isa;
UINT8 *m_bios;
UINT8 *m_ram;
at_keyboard_controller_device *m_keybc;
};
// device type definition
extern const device_type WD7600;
#endif /* WD7600_H_ */
| [
"mameppk@199a702f-54f1-4ac0-8451-560dfe28270b"
] | mameppk@199a702f-54f1-4ac0-8451-560dfe28270b |
cb26c1d62c669508283e64b8d9b74d2c6351173e | 49b435a9139dd0e14320de6052f967e1c81a6ecf | /pilal/include/pilal.h | 7f61c28410b870dc966c58923eb7c042f0ad9a9a | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | tunnuz/cpplex | 149f2f2db54aac64f38e1cb867ff5b6506e29838 | bd519bf9c4b176ac1269e84b72557ca1774e78eb | refs/heads/master | 2021-06-21T12:53:21.538840 | 2015-12-01T06:18:24 | 2015-12-01T06:18:24 | 3,394,173 | 14 | 4 | NOASSERTION | 2021-02-23T18:19:42 | 2012-02-09T04:13:58 | C++ | UTF-8 | C++ | false | false | 832 | h | /*
This file is part of C++lex, a project by Tommaso Urli.
C++lex 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 3 of the License, or
(at your option) any later version.
C++lex 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 C++lex. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef PILAL_H
#define PILAL_H
/** Phony header which includes fundamental PILAL headers. */
#include "matrix.h"
#include "pilalexceptions.h"
namespace pilal {
}
#endif
| [
"[email protected]"
] | |
a722cb37a65a36024e6f5577a60fe7fb2f7ff99a | 5775eb2150996990318bec38c79d59dfa2c562bc | /sprout/range/numeric/fixed/partial_sum.hpp | 4cc111602a95f2644b2cd866485b90fbbd101cdf | [
"BSL-1.0"
] | permissive | horance-liu/Sprout | 6e1e396db9e27fbc83da41270c96412cced5a767 | 8274f34db498b02bff12277bac5416ea72e018cd | refs/heads/master | 2020-04-05T14:47:12.706952 | 2018-05-29T14:09:43 | 2018-05-29T14:09:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,585 | hpp | /*=============================================================================
Copyright (c) 2011-2017 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
#ifndef SPROUT_RANGE_NUMERIC_FIXED_PARTIAL_SUM_HPP
#define SPROUT_RANGE_NUMERIC_FIXED_PARTIAL_SUM_HPP
#include <sprout/config.hpp>
#include <sprout/container/traits.hpp>
#include <sprout/container/functions.hpp>
#include <sprout/iterator/type_traits/is_iterator_of.hpp>
#include <sprout/type_traits/enabler_if.hpp>
#include <sprout/algorithm/fixed/results.hpp>
#include <sprout/numeric/fixed/partial_sum.hpp>
namespace sprout {
namespace range {
namespace fixed {
//
// partial_sum
//
template<
typename InputRange, typename Result,
typename sprout::enabler_if<!sprout::is_iterator_outputable<Result>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Result>::type
partial_sum(InputRange const& rng, Result const& result) {
return sprout::fixed::partial_sum(sprout::begin(rng), sprout::end(rng), result);
}
template<
typename InputRange, typename Result, typename BinaryOperation,
typename sprout::enabler_if<!sprout::is_iterator_outputable<Result>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Result>::type
partial_sum(InputRange const& rng, Result const& result, BinaryOperation binary_op) {
return sprout::fixed::partial_sum(sprout::begin(rng), sprout::end(rng), result, binary_op);
}
template<typename Result, typename InputRange>
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Result>::type
partial_sum(InputRange const& rng) {
return sprout::fixed::partial_sum<Result>(sprout::begin(rng), sprout::end(rng));
}
template<typename Result, typename InputRange, typename BinaryOperation>
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Result>::type
partial_sum(InputRange const& rng, BinaryOperation binary_op) {
return sprout::fixed::partial_sum<Result>(sprout::begin(rng), sprout::end(rng), binary_op);
}
} // namespace fixed
using sprout::range::fixed::partial_sum;
} // namespace range
} // namespace sprout
#endif // #ifndef SPROUT_RANGE_NUMERIC_FIXED_PARTIAL_SUM_HPP
| [
"[email protected]"
] | |
98e1fa2f379c8e4d02ee24f7615b2dc6f25bdaba | 88790b9268920b6524c3f35557cadcb1bd554ac8 | /test.cpp | 91ad81dfa1363f6d3ee661fd1b8d09b1af415247 | [] | no_license | DRGreat/testGit | f93a0d66434a54cd05a3270bdb71d5e34968ce05 | 99005a03122e3788345a5c7df7b5a95d363a87c8 | refs/heads/main | 2023-01-08T21:46:36.460677 | 2020-11-16T08:58:33 | 2020-11-16T08:58:33 | 312,754,689 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 124 | cpp | #include<stdio.h>
#include<string.h>
#include<time.h>
int n=10;
int main()
{
int n=5;
printf("%d",::n);
return 0;
}
| [
"[email protected]"
] | |
2546b47cfa0e087e58362bea6fcab2a3ad577129 | a1886f6a52c8a88043b568c6bb8ddb08bb99c6d2 | /wallet/cli.cpp | e283098a07c3ecc12a8c6903e5edad05c01342f2 | [
"Apache-2.0"
] | permissive | DUMIE505/defis | 9a03afb16f51452c522d4a5652f6d5ce2e001721 | 2676311bc0c79b556f29e282ac77b7c4bab47bbc | refs/heads/master | 2022-11-21T12:45:20.657681 | 2020-07-30T05:57:52 | 2020-07-30T05:57:52 | 283,681,973 | 1 | 0 | Apache-2.0 | 2020-07-30T05:52:32 | 2020-07-30T05:52:30 | null | UTF-8 | C++ | false | false | 67,464 | cpp | // Copyright 2018 The Beam Team / Copyright 2019 The Grimm Team
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "wallet/wallet_network.h"
#include "core/common.h"
#include "wallet/wallet.h"
#include "wallet/wallet_db.h"
#include "wallet/wallet_network.h"
#include "wallet/secstring.h"
#include "wallet/litecoin/options.h"
#include "wallet/bitcoin/options.h"
#include "wallet/swaps/common.h"
#include "wallet/swaps/swap_transaction.h"
#include "core/ecc_native.h"
#include "core/serialization_adapters.h"
#include "core/treasury.h"
#include "core/block_rw.h"
#include "unittests/util.h"
#include "mnemonic/mnemonic.h"
#include "utility/string_helpers.h"
#ifndef LOG_VERBOSE_ENABLED
#define LOG_VERBOSE_ENABLED 0
#endif
#include "utility/cli/options.h"
#include "utility/log_rotation.h"
#include "utility/helpers.h"
#include <iomanip>
#include <boost/program_options.hpp>
#include <boost/filesystem.hpp>
#include <boost/algorithm/string/trim.hpp>
#include <iterator>
#include <future>
#include "version.h"
using namespace std;
using namespace grimm;
using namespace grimm::wallet;
using namespace ECC;
namespace grimm
{
std::ostream& operator<<(std::ostream& os, Coin::Status s)
{
stringstream ss;
ss << "[";
switch (s)
{
case Coin::Available: ss << "Available"; break;
case Coin::Unavailable: ss << "Unavailable"; break;
case Coin::Spent: ss << "Spent"; break;
case Coin::Maturing: ss << "Maturing"; break;
case Coin::Outgoing: ss << "In progress(outgoing)"; break;
case Coin::Incoming: ss << "In progress(incoming/change)"; break;
default:
assert(false && "Unknown coin status");
}
ss << "]";
string str = ss.str();
os << str;
assert(str.length() <= 30);
return os;
}
const char* getTxStatus(const TxDescription& tx)
{
static const char* Pending = "pending";
static const char* WaitingForSender = "waiting for sender";
static const char* WaitingForReceiver = "waiting for receiver";
static const char* Sending = "sending";
static const char* Receiving = "receiving";
static const char* Cancelled = "cancelled";
static const char* Sent = "sent";
static const char* Received = "received";
static const char* Failed = "failed";
static const char* Completed = "completed";
static const char* Expired = "expired";
switch (tx.m_status)
{
case TxStatus::Pending: return Pending;
case TxStatus::InProgress: return tx.m_sender ? WaitingForReceiver : WaitingForSender;
case TxStatus::Registering: return tx.m_sender ? Sending : Receiving;
case TxStatus::Cancelled: return Cancelled;
case TxStatus::Completed:
{
if (tx.m_selfTx)
{
return Completed;
}
return tx.m_sender ? Sent : Received;
}
case TxStatus::Failed: return TxFailureReason::TransactionExpired == tx.m_failureReason ? Expired : Failed;
default:
assert(false && "Unknown status");
}
return "";
}
const char* getSwapTxStatus(const IWalletDB::Ptr& walletDB, const TxDescription& tx)
{
static const char* Initial = "initial";
static const char* Invitation = "invitation";
static const char* BuildingGrimmLockTX = "building Grimm LockTX";
static const char* BuildingGrimmRefundTX = "building Grimm RefundTX";
static const char* BuildingGrimmRedeemTX = "building Grimm RedeemTX";
static const char* HandlingContractTX = "handling LockTX";
static const char* SendingRefundTX = "sending RefundTX";
static const char* SendingRedeemTX = "sending RedeemTX";
static const char* SendingGrimmLockTX = "sending Grimm LockTX";
static const char* SendingGrimmRefundTX = "sending Grimm RefundTX";
static const char* SendingGrimmRedeemTX = "sending Grimm RedeemTX";
static const char* Completed = "completed";
static const char* Cancelled = "cancelled";
static const char* Aborted = "aborted";
static const char* Failed = "failed";
static const char* Expired = "expired";
wallet::AtomicSwapTransaction::State state = wallet::AtomicSwapTransaction::State::CompleteSwap;
storage::getTxParameter(*walletDB, tx.m_txId, wallet::TxParameterID::State, state);
switch (state)
{
case wallet::AtomicSwapTransaction::State::Initial:
return Initial;
case wallet::AtomicSwapTransaction::State::Invitation:
return Invitation;
case wallet::AtomicSwapTransaction::State::BuildingGrimmLockTX:
return BuildingGrimmLockTX;
case wallet::AtomicSwapTransaction::State::BuildingGrimmRefundTX:
return BuildingGrimmRefundTX;
case wallet::AtomicSwapTransaction::State::BuildingGrimmRedeemTX:
return BuildingGrimmRedeemTX;
case wallet::AtomicSwapTransaction::State::HandlingContractTX:
return HandlingContractTX;
case wallet::AtomicSwapTransaction::State::SendingRefundTX:
return SendingRefundTX;
case wallet::AtomicSwapTransaction::State::SendingRedeemTX:
return SendingRedeemTX;
case wallet::AtomicSwapTransaction::State::SendingGrimmLockTX:
return SendingGrimmLockTX;
case wallet::AtomicSwapTransaction::State::SendingGrimmRefundTX:
return SendingGrimmRefundTX;
case wallet::AtomicSwapTransaction::State::SendingGrimmRedeemTX:
return SendingGrimmRedeemTX;
case wallet::AtomicSwapTransaction::State::CompleteSwap:
return Completed;
case wallet::AtomicSwapTransaction::State::Cancelled:
return Cancelled;
case wallet::AtomicSwapTransaction::State::Refunded:
return Aborted;
case wallet::AtomicSwapTransaction::State::Failed:
{
TxFailureReason reason = TxFailureReason::Unknown;
storage::getTxParameter(*walletDB, tx.m_txId, wallet::TxParameterID::InternalFailureReason, reason);
return TxFailureReason::TransactionExpired == reason ? Expired : Failed;
}
default:
assert(false && "Unexpected status");
}
return "";
}
const char* getAtomicSwapCoinText(AtomicSwapCoin swapCoin)
{
switch (swapCoin)
{
case AtomicSwapCoin::Bitcoin:
return "BTC";
case AtomicSwapCoin::Litecoin:
return "LTC";
default:
assert(false && "Unknow SwapCoin");
}
return "";
}
}
namespace
{
void ResolveWID(PeerID& res, const std::string& s)
{
bool bValid = true;
ByteBuffer bb = from_hex(s, &bValid);
if ((bb.size() != res.nBytes) || !bValid)
throw std::runtime_error("invalid WID");
memcpy(res.m_pData, &bb.front(), res.nBytes);
}
template <typename T>
bool FLoad(T& x, const std::string& sPath, bool bStrict = true)
{
std::FStream f;
if (!f.Open(sPath.c_str(), true, bStrict))
return false;
yas::binary_iarchive<std::FStream, SERIALIZE_OPTIONS> arc(f);
arc & x;
return true;
}
template <typename T>
void FSave(const T& x, const std::string& sPath)
{
std::FStream f;
f.Open(sPath.c_str(), false, true);
yas::binary_oarchive<std::FStream, SERIALIZE_OPTIONS> arc(f);
arc & x;
}
int HandleTreasury(const po::variables_map& vm, Key::IKdf& kdf)
{
PeerID wid;
Scalar::Native sk;
Treasury::get_ID(kdf, wid, sk);
char szID[PeerID::nTxtLen + 1];
wid.Print(szID);
static const char* szPlans = "treasury_plans.bin";
static const char* szRequest = "-plan.bin";
static const char* szResponse = "-response.bin";
static const char* szData = "treasury_data.bin";
Treasury tres;
FLoad(tres, szPlans, false);
auto nCode = vm[cli::TR_OPCODE].as<uint32_t>();
switch (nCode)
{
default:
cout << "ID: " << szID << std::endl;
break;
case 1:
{
// generate plan
std::string sID = vm[cli::TR_WID].as<std::string>();
ResolveWID(wid, sID);
auto perc = vm[cli::TR_PERC].as<double>();
bool bConsumeRemaining = (perc <= 0.);
if (bConsumeRemaining)
perc = vm[cli::TR_PERC_TOTAL].as<double>();
perc *= 0.01;
Amount val = static_cast<Amount>(Rules::get().Emission.Value0 * perc); // rounded down
Treasury::Parameters pars; // default
uint32_t m = vm[cli::TR_M].as<uint32_t>();
uint32_t n = vm[cli::TR_N].as<uint32_t>();
if (m >= n)
throw std::runtime_error("bad m/n");
assert(n);
if (pars.m_Bursts % n)
throw std::runtime_error("bad n (roundoff)");
pars.m_Bursts /= n;
pars.m_Maturity0 = pars.m_MaturityStep * pars.m_Bursts * m;
Treasury::Entry* pE = tres.CreatePlan(wid, val, pars);
if (bConsumeRemaining)
{
// special case - consume the remaining
for (size_t iG = 0; iG < pE->m_Request.m_vGroups.size(); iG++)
{
Treasury::Request::Group& g = pE->m_Request.m_vGroups[iG];
Treasury::Request::Group::Coin& c = g.m_vCoins[0];
AmountBig::Type valInBurst = Zero;
for (Treasury::EntryMap::const_iterator it = tres.m_Entries.begin(); tres.m_Entries.end() != it; it++)
{
if (&it->second == pE)
continue;
const Treasury::Request& r2 = it->second.m_Request;
for (size_t iG2 = 0; iG2 < r2.m_vGroups.size(); iG2++)
{
const Treasury::Request::Group& g2 = r2.m_vGroups[iG2];
if (g2.m_vCoins[0].m_Incubation != c.m_Incubation)
continue;
for (size_t i = 0; i < g2.m_vCoins.size(); i++)
valInBurst += uintBigFrom(g2.m_vCoins[i].m_Value);
}
}
Amount vL = AmountBig::get_Lo(valInBurst);
if (AmountBig::get_Hi(valInBurst) || (vL >= c.m_Value))
throw std::runtime_error("Nothing remains");
cout << "Maturity=" << c.m_Incubation << ", Consumed = " << vL << " / " << c.m_Value << std::endl;
c.m_Value -= vL;
}
}
FSave(pE->m_Request, sID + szRequest);
FSave(tres, szPlans);
}
break;
case 2:
{
// generate response
Treasury::Request treq;
FLoad(treq, std::string(szID) + szRequest);
Treasury::Response tresp;
uint64_t nIndex = 1;
tresp.Create(treq, kdf, nIndex);
FSave(tresp, std::string(szID) + szResponse);
}
break;
case 3:
{
// verify & import reponse
std::string sID = vm[cli::TR_WID].as<std::string>();
ResolveWID(wid, sID);
Treasury::EntryMap::iterator it = tres.m_Entries.find(wid);
if (tres.m_Entries.end() == it)
throw std::runtime_error("plan not found");
Treasury::Entry& e = it->second;
e.m_pResponse.reset(new Treasury::Response);
FLoad(*e.m_pResponse, sID + szResponse);
if (!e.m_pResponse->IsValid(e.m_Request))
throw std::runtime_error("invalid response");
FSave(tres, szPlans);
}
break;
case 4:
{
// Finally generate treasury
Treasury::Data data;
data.m_sCustomMsg = vm[cli::TR_COMMENT].as<std::string>();
tres.Build(data);
FSave(data, szData);
Serializer ser;
ser & data;
ByteBuffer bb;
ser.swap_buf(bb);
Hash::Value hv;
Hash::Processor() << Blob(bb) >> hv;
char szHash[Hash::Value::nTxtLen + 1];
hv.Print(szHash);
cout << "Treasury data hash: " << szHash << std::endl;
}
break;
case 5:
{
// recover and print
Treasury::Data data;
FLoad(data, szData);
std::vector<Treasury::Data::Coin> vCoins;
data.Recover(kdf, vCoins);
cout << "Recovered coins: " << vCoins.size() << std::endl;
for (size_t i = 0; i < vCoins.size(); i++)
{
const Treasury::Data::Coin& coin = vCoins[i];
cout << "\t" << coin.m_Kidv << ", Height=" << coin.m_Incubation << std::endl;
}
}
break;
case 6:
{
// bursts
Treasury::Data data;
FLoad(data, szData);
auto vBursts = data.get_Bursts();
cout << "Total bursts: " << vBursts.size() << std::endl;
for (size_t i = 0; i < vBursts.size(); i++)
{
const Treasury::Data::Burst& b = vBursts[i];
cout << "\t" << "Height=" << b.m_Height << ", Value=" << b.m_Value << std::endl;
}
}
break;
}
return 0;
}
void printHelp(const po::options_description& options)
{
cout << options << std::endl;
}
int ChangeAddressExpiration(const po::variables_map& vm, const IWalletDB::Ptr& walletDB)
{
string address = vm[cli::WALLET_ADDR].as<string>();
string newTime = vm[cli::EXPIRATION_TIME].as<string>();
WalletID walletID(Zero);
bool allAddresses = address == "*";
if (!allAddresses)
{
walletID.FromHex(address);
}
uint64_t newDuration_s = 0;
if (newTime == "24h")
{
newDuration_s = 24 * 3600; //seconds
}
else if (newTime == "never")
{
newDuration_s = 0;
}
else
{
LOG_ERROR() << "Invalid address expiration time \"" << newTime << "\".";
return -1;
}
if (storage::changeAddressExpiration(*walletDB, walletID, newDuration_s))
{
if (allAddresses)
{
LOG_INFO() << "Expiration for all addresses was changed to \"" << newTime << "\".";
}
else
{
LOG_INFO() << "Expiration for address " << to_string(walletID) << " was changed to \"" << newTime << "\".";
}
return 0;
}
return -1;
}
WalletAddress CreateNewAddress(const IWalletDB::Ptr& walletDB, const std::string& comment, bool isNever = false)
{
WalletAddress address = storage::createAddress(*walletDB);
if (isNever)
{
address.m_duration = 0;
}
address.m_label = comment;
walletDB->saveAddress(address);
LOG_INFO() << "New address generated:\n\n" << std::to_string(address.m_walletID) << "\n";
if (!comment.empty()) {
LOG_INFO() << "comment = " << comment;
}
return address;
}
WordList GeneratePhrase()
{
auto phrase = createMnemonic(getEntropy(), language::en);
assert(phrase.size() == 12);
cout << "======\nGenerated seed phrase: \n\n\t";
for (const auto& word : phrase)
{
cout << word << ';';
}
cout << "\n\n\tIMPORTANT\n\n\tYour seed phrase is the access key to all the cryptocurrencies in your wallet.\n\tPrint or write down the phrase to keep it in a safe or in a locked vault.\n\tWithout the phrase you will not be able to recover your money.\n======" << endl;
return phrase;
}
bool ReadWalletSeed(NoLeak<uintBig>& walletSeed, const po::variables_map& vm, bool generateNew)
{
SecString seed;
WordList phrase;
if (generateNew)
{
LOG_INFO() << "Generating seed phrase...";
phrase = GeneratePhrase();
}
else if (vm.count(cli::SEED_PHRASE))
{
auto tempPhrase = vm[cli::SEED_PHRASE].as<string>();
boost::algorithm::trim_if(tempPhrase, [](char ch) { return ch == ';'; });
phrase = string_helpers::split(tempPhrase, ';');
assert(phrase.size() == WORD_COUNT);
if (!isValidMnemonic(phrase, language::en))
{
LOG_ERROR() << "Invalid seed phrase provided: " << tempPhrase;
return false;
}
}
else
{
LOG_ERROR() << "Seed phrase has not been provided.";
return false;
}
auto buf = decodeMnemonic(phrase);
seed.assign(buf.data(), buf.size());
walletSeed.V = seed.hash().V;
return true;
}
int ShowAddressList(const IWalletDB::Ptr& walletDB)
{
auto addresses = walletDB->getAddresses(true);
array<uint8_t, 5> columnWidths{ { 20, 70, 8, 20, 21 } };
// Comment | Address | Active | Expiration date | Created |
cout << "Addresses\n\n"
<< " " << std::left
<< setw(columnWidths[0]) << "comment" << "|"
<< setw(columnWidths[1]) << "address" << "|"
<< setw(columnWidths[2]) << "active" << "|"
<< setw(columnWidths[3]) << "expiration date" << "|"
<< setw(columnWidths[4]) << "created" << endl;
for (const auto& address : addresses)
{
auto comment = address.m_label;
if (comment.length() > columnWidths[0])
{
comment = comment.substr(0, columnWidths[0] - 3) + "...";
}
auto expirationDateText = (address.m_duration == 0) ? "never" : format_timestamp("%Y.%m.%d %H:%M:%S", address.getExpirationTime() * 1000, false);
cout << " " << std::left << std::boolalpha
<< setw(columnWidths[0]) << comment << " "
<< setw(columnWidths[1]) << std::to_string(address.m_walletID) << " "
<< setw(columnWidths[2]) << !address.isExpired() << " "
<< setw(columnWidths[3]) << expirationDateText << " "
<< setw(columnWidths[4]) << format_timestamp("%Y.%m.%d %H:%M:%S", address.getCreateTime() * 1000, false) << "\n";
}
return 0;
}
bool FromHex(AssetID& assetID, const std::string& s)
{
LOG_INFO() << "Parsing string " << s;
bool bValid = true;
ByteBuffer bb = from_hex(s, &bValid);
if (!bValid)
{
LOG_ERROR() << "Invalid AssetID (hex string)";
return false;
}
if (bb.size() != sizeof(assetID))
{
LOG_ERROR() << "Invalid AssetID (size string)";
return false;
}
typedef uintBig_t<sizeof(assetID)> BigSelf;
static_assert(sizeof(BigSelf) == sizeof(assetID), "");
*reinterpret_cast<BigSelf*>(&assetID) = Blob(bb);
LOG_INFO() << "Parsing string ok. AssetID: " << assetID;
return true;
}
int ShowWalletInfo(const IWalletDB::Ptr& walletDB, const po::variables_map& vm)
{
Block::SystemState::ID stateID = {};
walletDB->getSystemStateID(stateID);
AssetID assetID = Zero;
if (vm.count(cli::ASSET_ID))
{
if (!FromHex(assetID, vm[cli::ASSET_ID].as<string>()))
{
cout << "AssetID Parsing failed...\n";
return -1;
}
}
storage::Totals totals(*walletDB, assetID);
if (vm.count(cli::ASSET_ID))
{
cout << "____Asset Wallet____\n\n"
<< "AssetID .................." << assetID << "\n\n"
<< "Current height............" << stateID.m_Height << '\n'
<< "Current state ID.........." << stateID.m_Hash << "\n\n"
<< "Available................." << PrintableAmount(totals.Avail) << " assets" << '\n'
<< "Maturing.................." << PrintableAmount(totals.Maturing) << '\n'
<< "In progress..............." << PrintableAmount(totals.Incoming) << '\n'
<< "Unavailable..............." << PrintableAmount(totals.Unavail) << '\n'
<< "Available coinbase ......." << PrintableAmount(totals.AvailCoinbase) << '\n'
<< "Total coinbase............" << PrintableAmount(totals.Coinbase) << '\n'
<< "Avaliable fee............." << PrintableAmount(totals.AvailFee) << '\n'
<< "Total fee................." << PrintableAmount(totals.Fee) << '\n'
<< "Total unspent............." << PrintableAmount(totals.Unspent) << " assets" << "\n\n";
} else {
cout << "____Wallet summary____\n\n"
<< "Current height............" << stateID.m_Height << '\n'
<< "Current state ID.........." << stateID.m_Hash << "\n\n"
<< "Available................." << PrintableAmount(totals.Avail) << '\n'
<< "Maturing.................." << PrintableAmount(totals.Maturing) << '\n'
<< "In progress..............." << PrintableAmount(totals.Incoming) << '\n'
<< "Unavailable..............." << PrintableAmount(totals.Unavail) << '\n'
<< "Available coinbase ......." << PrintableAmount(totals.AvailCoinbase) << '\n'
<< "Total coinbase............" << PrintableAmount(totals.Coinbase) << '\n'
<< "Avaliable fee............." << PrintableAmount(totals.AvailFee) << '\n'
<< "Total fee................." << PrintableAmount(totals.Fee) << '\n'
<< "Total unspent............." << PrintableAmount(totals.Unspent) << "\n\n";
}
if (vm.count(cli::TX_HISTORY))
{
auto txHistory = walletDB->getTxHistory();
if (txHistory.empty())
{
cout << "No transactions\n";
return 0;
}
const array<uint8_t, 6> columnWidths{ { 20, 17, 26, 21, 33, 65} };
if (vm.count(cli::ASSET_ID))
{
cout << "TRANSACTIONS\n\n |"
<< left << setw(columnWidths[0]) << " datetime" << " |"
<< left << setw(columnWidths[1]) << " direction" << " |"
<< right << setw(columnWidths[2]) << " assets amount" << " |"
<< left << setw(columnWidths[3]) << " status" << " |"
<< setw(columnWidths[4]) << " ID" << " |"
<< setw(columnWidths[5]) << " kernel ID" << " |" << endl;
} else {
cout << "TRANSACTIONS\n\n |"
<< left << setw(columnWidths[0]) << " datetime" << " |"
<< left << setw(columnWidths[1]) << " direction" << " |"
<< right << setw(columnWidths[2]) << " amount " << vm[cli::CAC_SYMBOL].as<string>() << " |"
<< left << setw(columnWidths[3]) << " status" << " |"
<< setw(columnWidths[4]) << " ID" << " |"
<< setw(columnWidths[5]) << " kernel ID" << " |" << endl;
}
for (auto& tx : txHistory)
{
cout << " "
<< " " << left << setw(columnWidths[0]) << format_timestamp("%Y.%m.%d %H:%M:%S", tx.m_createTime * 1000, false) << " "
<< " " << left << setw(columnWidths[1]) << (tx.m_selfTx ? "self transaction" : (tx.m_sender ? "outgoing" : "incoming"))
<< " " << right << setw(columnWidths[2]) << PrintableAmount(tx.m_amount, true) << " "
<< " " << left << setw(columnWidths[3]+1) << getTxStatus(tx)
<< " " << setw(columnWidths[4]+1) << to_hex(tx.m_txId.data(), tx.m_txId.size())
<< " " << setw(columnWidths[5]+1) << to_string(tx.m_kernelID) << '\n';
}
return 0;
}
if (vm.count(cli::SWAP_TX_HISTORY))
{
auto txHistory = walletDB->getTxHistory(wallet::TxType::AtomicSwap);
if (txHistory.empty())
{
cout << "No swap transactions\n";
return 0;
}
const array<uint8_t, 6> columnWidths{ { 20, 26, 18, 15, 23, 33} };
cout << "SWAP TRANSACTIONS\n\n |"
<< left << setw(columnWidths[0]) << " datetime" << " |"
<< right << setw(columnWidths[1]) << " amount, XGM" << " |"
<< right << setw(columnWidths[2]) << " swap amount" << " |"
<< left << setw(columnWidths[3]) << " swap type" << " |"
<< left << setw(columnWidths[4]) << " status" << " |"
<< setw(columnWidths[5]) << " ID" << " |" << endl;
for (auto& tx : txHistory)
{
Amount swapAmount = 0;
storage::getTxParameter(*walletDB, tx.m_txId, wallet::kDefaultSubTxID, wallet::TxParameterID::AtomicSwapAmount, swapAmount);
bool isGrimmSide = false;
storage::getTxParameter(*walletDB, tx.m_txId, wallet::kDefaultSubTxID, wallet::TxParameterID::AtomicSwapIsGrimmSide, isGrimmSide);
AtomicSwapCoin swapCoin = AtomicSwapCoin::Unknown;
storage::getTxParameter(*walletDB, tx.m_txId, wallet::kDefaultSubTxID, wallet::TxParameterID::AtomicSwapCoin, swapCoin);
stringstream ss;
ss << (isGrimmSide ? "Grimm" : getAtomicSwapCoinText(swapCoin)) << " <--> " << (!isGrimmSide ? "Grimm" : getAtomicSwapCoinText(swapCoin));
cout << " "
<< " " << left << setw(columnWidths[0]) << format_timestamp("%Y.%m.%d %H:%M:%S", tx.m_createTime * 1000, false)
<< " " << right << setw(columnWidths[1]) << PrintableAmount(tx.m_amount, true) << " "
<< " " << right << setw(columnWidths[2]) << swapAmount << " "
<< " " << right << setw(columnWidths[3]) << ss.str() << " "
<< " " << left << setw(columnWidths[4]) << getSwapTxStatus(walletDB, tx)
<< " " << setw(columnWidths[5] + 1) << to_hex(tx.m_txId.data(), tx.m_txId.size()) << '\n';
}
return 0;
}
const array<uint8_t, 6> columnWidths{ { 49, 14, 14, 18, 30, 8} };
if (vm.count(cli::ASSET_ID))
{
cout << "AssetID .................." << assetID << "\n";
cout << " |"
<< left << setw(columnWidths[0]) << " ID" << " |"
<< right << setw(columnWidths[1]) << " assets" << " |"
<< setw(columnWidths[2]) << " centum" << " |"
<< left << setw(columnWidths[3]) << " maturity" << " |"
<< setw(columnWidths[4]) << " status" << " |"
<< setw(columnWidths[5]) << " type" << endl;
} else {
cout << " |"
<< left << setw(columnWidths[0]) << " ID" << " |"
<< right << setw(columnWidths[1]) << " " << vm[cli::CAC_SYMBOL].as<string>() << " |"
<< setw(columnWidths[2]) << " centum" << " |"
<< left << setw(columnWidths[3]) << " maturity" << " |"
<< setw(columnWidths[4]) << " status" << " |"
<< setw(columnWidths[5]) << " type" << endl;
}
walletDB->visit([&columnWidths](const Coin& c)->bool
{
cout << " "
<< " " << left << setw(columnWidths[0]) << c.toStringID()
<< " " << right << setw(columnWidths[1]) << c.m_ID.m_Value / Rules::Coin << " "
<< " " << right << setw(columnWidths[2]) << c.m_ID.m_Value % Rules::Coin << " "
<< " " << left << setw(columnWidths[3]+1) << (c.IsMaturityValid() ? std::to_string(static_cast<int64_t>(c.m_maturity)) : "-")
<< " " << setw(columnWidths[4]+1) << c.m_status
<< " " << setw(columnWidths[5]+1) << c.m_ID.m_Type << endl;
return true;
}, assetID);
return 0;
}
int TxDetails(const IWalletDB::Ptr& walletDB, const po::variables_map& vm)
{
auto txIdStr = vm[cli::TX_ID].as<string>();
if (txIdStr.empty()) {
LOG_ERROR() << "Failed, --tx_id param required";
return -1;
}
auto txIdVec = from_hex(txIdStr);
TxID txId;
if (txIdVec.size() >= 16)
std::copy_n(txIdVec.begin(), 16, txId.begin());
auto tx = walletDB->getTx(txId);
if (!tx)
{
LOG_ERROR() << "Failed, transaction with id: "
<< txIdStr
<< " does not exist.";
return -1;
}
LOG_INFO() << "Transaction details:\n"
<< storage::TxDetailsInfo(walletDB, txId)
<< "Status: "
<< getTxStatus(*tx)
<< (tx->m_status == TxStatus::Failed ? "\nReason: "+ GetFailureMessage(tx->m_failureReason) : "");
return 0;
}
int ExportPaymentProof(const IWalletDB::Ptr& walletDB, const po::variables_map& vm)
{
auto txIdVec = from_hex(vm[cli::TX_ID].as<string>());
TxID txId;
if (txIdVec.size() >= 16)
std::copy_n(txIdVec.begin(), 16, txId.begin());
auto tx = walletDB->getTx(txId);
if (!tx)
{
LOG_ERROR() << "Failed to export payment proof, transaction does not exist.";
return -1;
}
if (!tx->m_sender || tx->m_selfTx)
{
LOG_ERROR() << "Cannot export payment proof for receiver or self transaction.";
return -1;
}
if (tx->m_status != TxStatus::Completed)
{
LOG_ERROR() << "Failed to export payment proof. Transaction is not completed.";
return -1;
}
auto res = storage::ExportPaymentProof(*walletDB, txId);
if (!res.empty())
{
std::string sTxt;
sTxt.resize(res.size() * 2);
grimm::to_hex(&sTxt.front(), res.data(), res.size());
LOG_INFO() << "Exported form: " << sTxt;
}
return 0;
}
int VerifyPaymentProof(const po::variables_map& vm)
{
const auto& pprofData = vm[cli::PAYMENT_PROOF_DATA];
if (pprofData.empty())
{
throw std::runtime_error("No payment proof provided: --payment_proof parameter is missing");
}
ByteBuffer buf = from_hex(pprofData.as<string>());
if (!storage::VerifyPaymentProof(buf))
throw std::runtime_error("Payment proof is invalid");
return 0;
}
int ExportMinerKey(const po::variables_map& vm, const IWalletDB::Ptr& walletDB, const grimm::SecString& pass)
{
uint32_t subKey = vm[cli::KEY_SUBKEY].as<Nonnegative<uint32_t>>().value;
if (subKey < 1)
{
cout << "Please, specify Subkey number --subkey=N (N > 0)" << endl;
return -1;
}
Key::IKdf::Ptr pKey = walletDB->get_ChildKdf(subKey);
const ECC::HKdf& kdf = static_cast<ECC::HKdf&>(*pKey);
KeyString ks;
ks.SetPassword(Blob(pass.data(), static_cast<uint32_t>(pass.size())));
ks.m_sMeta = std::to_string(subKey);
ks.Export(kdf);
cout << "Secret Subkey " << subKey << ": " << ks.m_sRes << std::endl;
return 0;
}
int ExportOwnerKey(const IWalletDB::Ptr& walletDB, const grimm::SecString& pass)
{
Key::IKdf::Ptr pKey = walletDB->get_ChildKdf(0);
const ECC::HKdf& kdf = static_cast<ECC::HKdf&>(*pKey);
KeyString ks;
ks.SetPassword(Blob(pass.data(), static_cast<uint32_t>(pass.size())));
ks.m_sMeta = std::to_string(0);
ECC::HKdfPub pkdf;
pkdf.GenerateFrom(kdf);
ks.Export(pkdf);
cout << "Owner Viewer key: " << ks.m_sRes << std::endl;
return 0;
}
bool LoadDataToImport(const std::string& path, ByteBuffer& data)
{
FStream f;
if (f.Open(path.c_str(), true))
{
size_t size = static_cast<size_t>(f.get_Remaining());
if (size > 0)
{
data.resize(size);
return f.read(data.data(), data.size()) == size;
}
}
return false;
}
bool SaveExportedData(const ByteBuffer& data, const std::string& path)
{
FStream f;
if (f.Open(path.c_str(), false))
{
return f.write(data.data(), data.size()) == data.size();
}
LOG_ERROR() << "Failed to save exported data";
return false;
}
int ExportAddresses(const po::variables_map& vm, const IWalletDB::Ptr& walletDB)
{
auto s = storage::ExportAddressesToJson(*walletDB);
return SaveExportedData(ByteBuffer(s.begin(), s.end()), vm[cli::IMPORT_EXPORT_PATH].as<string>()) ? 0 : -1;
}
int ImportAddresses(const po::variables_map& vm, const IWalletDB::Ptr& walletDB)
{
ByteBuffer buffer;
if (!LoadDataToImport(vm[cli::IMPORT_EXPORT_PATH].as<string>(), buffer))
{
return -1;
}
const char* p = (char*)(&buffer[0]);
return storage::ImportAddressesFromJson(*walletDB, p, buffer.size()) ? 0 : -1;
}
CoinIDList GetPreselectedCoinIDs(const po::variables_map& vm)
{
CoinIDList coinIDs;
if (vm.count(cli::UTXO))
{
auto tempCoins = vm[cli::UTXO].as<vector<string>>();
for (const auto& s : tempCoins)
{
auto csv = string_helpers::split(s, ',');
for (const auto& v : csv)
{
auto coinID = Coin::FromString(v);
if (coinID)
{
coinIDs.push_back(*coinID);
}
}
}
}
return coinIDs;
}
bool LoadAssetParamsForTX(const po::variables_map& vm, AssetCommand& assetCommand, uint64_t& idx, AssetID& assetID)
{
if (vm.count(cli::ASSET_OPCODE) == 0)
{
return false;
}
if (vm.count(cli::ASSET_KID) == 0 && vm.count(cli::ASSET_ID) == 0)
{
LOG_ERROR() << "--- asset_id or asset_kid required";
return false;
}
switch (vm[cli::ASSET_OPCODE].as<uint32_t>())
{
case 1: assetCommand = AssetCommand::Issue; break;
case 2: assetCommand = AssetCommand::Transfer; break;
case 3: assetCommand = AssetCommand::Burn; break;
default: LOG_ERROR() << "confidential asset operation: 1=emission, 2=send, 3=burn"; return false;
}
if (assetCommand == AssetCommand::Transfer)
{
if (!FromHex(assetID, vm[cli::ASSET_ID].as<string>()))
{
LOG_ERROR() << "Invalid asset_id";
return false;
}
}
else
{
idx = vm[cli::ASSET_KID].as<uint64_t>();
}
return true;
}
bool LoadBaseParamsForTX(const po::variables_map& vm, Amount& amount, Amount& fee, WalletID& receiverWalletID, bool checkFee)
{
if (vm.count(cli::RECEIVER_ADDR) == 0)
{
LOG_ERROR() << "receiver's address is missing";
return false;
}
if (vm.count(cli::AMOUNT) == 0)
{
LOG_ERROR() << "amount is missing";
return false;
}
receiverWalletID.FromHex(vm[cli::RECEIVER_ADDR].as<string>());
auto signedAmount = vm[cli::AMOUNT].as<Positive<double>>().value;
if (signedAmount < 0)
{
LOG_ERROR() << "Unable to send negative amount of coins";
return false;
}
signedAmount *= Rules::Coin; // convert grimms to coins
amount = static_cast<ECC::Amount>(std::round(signedAmount));
if (amount == 0)
{
LOG_ERROR() << "Unable to send zero coins";
return false;
}
fee = vm[cli::FEE].as<Nonnegative<Amount>>().value;
if (checkFee && fee < cli::kMinimumFee)
{
LOG_ERROR() << "Failed to initiate the send operation. The minimum fee is 100 centum.";
return false;
}
return true;
}
}
io::Reactor::Ptr reactor;
static const unsigned LOG_ROTATION_PERIOD_SEC = 3*60*60; // 3 hours
int main_impl(int argc, char* argv[])
{
grimm::Crash::InstallHandler(NULL);
try
{
auto [options, visibleOptions] = createOptionsDescription(GENERAL_OPTIONS | WALLET_OPTIONS);
po::variables_map vm;
try
{
vm = getOptions(argc, argv, "defis-wallet.cfg", options, true);
}
catch (const po::invalid_option_value& e)
{
cout << e.what() << std::endl;
return 0;
}
catch (const NonnegativeOptionException& e)
{
cout << e.what() << std::endl;
return 0;
}
catch (const PositiveOptionException& e)
{
cout << e.what() << std::endl;
return 0;
}
catch (const po::error& e)
{
cout << e.what() << std::endl;
printHelp(visibleOptions);
return 0;
}
if (vm.count(cli::HELP))
{
printHelp(visibleOptions);
return 0;
}
if (vm.count(cli::VERSION))
{
cout << PROJECT_VERSION << endl;
return 0;
}
if (vm.count(cli::GIT_COMMIT_HASH))
{
cout << GIT_COMMIT_HASH << endl;
return 0;
}
int logLevel = getLogLevel(cli::LOG_LEVEL, vm, LOG_LEVEL_DEBUG);
int fileLogLevel = getLogLevel(cli::FILE_LOG_LEVEL, vm, LOG_LEVEL_DEBUG);
#define LOG_FILES_DIR "logs"
#define LOG_FILES_PREFIX "wallet_"
const auto path = boost::filesystem::system_complete(LOG_FILES_DIR);
auto logger = grimm::Logger::create(logLevel, logLevel, fileLogLevel, LOG_FILES_PREFIX, path.string());
try
{
po::notify(vm);
unsigned logCleanupPeriod = vm[cli::LOG_CLEANUP_DAYS].as<uint32_t>() * 24 * 3600;
clean_old_logfiles(LOG_FILES_DIR, LOG_FILES_PREFIX, logCleanupPeriod);
Rules::get().UpdateChecksum();
{
reactor = io::Reactor::create();
io::Reactor::Scope scope(*reactor);
io::Reactor::GracefulIntHandler gih(*reactor);
LogRotation logRotation(*reactor, LOG_ROTATION_PERIOD_SEC, logCleanupPeriod);
{
if (vm.count(cli::COMMAND) == 0)
{
LOG_ERROR() << "command parameter not specified.";
printHelp(visibleOptions);
return 0;
}
auto command = vm[cli::COMMAND].as<string>();
{
const string commands[] =
{
cli::INIT,
cli::RESTORE,
cli::SEND,
//cli::ASSET_EMIT,
//cli::ASSET_SEND,
//cli::ASSET_BURN,
cli::LISTEN,
cli::TREASURY,
cli::INFO,
cli::EXPORT_MINER_KEY,
cli::EXPORT_OWNER_KEY,
cli::NEW_ADDRESS,
cli::CANCEL_TX,
cli::DELETE_TX,
cli::CHANGE_ADDRESS_EXPIRATION,
cli::TX_DETAILS,
cli::PAYMENT_PROOF_EXPORT,
cli::PAYMENT_PROOF_VERIFY,
cli::GENERATE_PHRASE,
cli::WALLET_ADDRESS_LIST,
cli::WALLET_RESCAN,
cli::IMPORT_ADDRESSES,
cli::EXPORT_ADDRESSES,
cli::SWAP_INIT,
cli::SWAP_LISTEN
};
if (find(begin(commands), end(commands), command) == end(commands))
{
LOG_ERROR() << "unknown command: \'" << command << "\'";
return -1;
}
}
if (command == cli::GENERATE_PHRASE)
{
GeneratePhrase();
return 0;
}
if (Rules::get().isAssetchain) {
LOG_INFO() << "Confidential Assetchain Symbol: " << vm[cli::CAC_SYMBOL].as<string>();
LOG_INFO() << vm[cli::CAC_SYMBOL].as<string>() << " Wallet " << PROJECT_VERSION << " (" << BRANCH_NAME << ")";
} else {
LOG_INFO() << "Grimm Wallet " << PROJECT_VERSION << " (" << BRANCH_NAME << ")";
}
LOG_INFO() << "Rules signature: " << Rules::get().get_SignatureStr();
bool coldWallet = vm.count(cli::COLD_WALLET) > 0;
if (coldWallet && command == cli::RESTORE)
{
LOG_ERROR() << "You can't restore cold wallet.";
return -1;
}
assert(vm.count(cli::WALLET_STORAGE) > 0);
auto walletPath = vm[cli::WALLET_STORAGE].as<string>();
if (!WalletDB::isInitialized(walletPath) && (command != cli::INIT && command != cli::RESTORE))
{
LOG_ERROR() << "Please initialize your wallet first... \nExample: defis-wallet --command=init";
return -1;
}
else if (WalletDB::isInitialized(walletPath) && (command == cli::INIT || command == cli::RESTORE))
{
bool isDirectory;
#ifdef WIN32
isDirectory = boost::filesystem::is_directory(Utf8toUtf16(walletPath.c_str()));
#else
isDirectory = boost::filesystem::is_directory(walletPath);
#endif
if (isDirectory)
{
walletPath.append("/wallet.db");
}
else
{
LOG_ERROR() << "Your wallet is already initialized.";
return -1;
}
}
LOG_INFO() << "starting a wallet...";
SecString pass;
if (!grimm::read_wallet_pass(pass, vm))
{
LOG_ERROR() << "Please, provide password for the wallet.";
return -1;
}
if ((command == cli::INIT || command == cli::RESTORE) && vm.count(cli::PASS) == 0)
{
if (!grimm::confirm_wallet_pass(pass))
{
LOG_ERROR() << "Passwords do not match";
return -1;
}
}
if (command == cli::INIT || command == cli::RESTORE)
{
NoLeak<uintBig> walletSeed;
walletSeed.V = Zero;
if (!ReadWalletSeed(walletSeed, vm, command == cli::INIT))
{
LOG_ERROR() << "Please, provide a valid seed phrase for the wallet.";
return -1;
}
auto walletDB = WalletDB::init(walletPath, pass, walletSeed, reactor, coldWallet);
if (walletDB)
{
LOG_INFO() << "wallet successfully created...";
// generate default address
CreateNewAddress(walletDB, "default");
return 0;
}
else
{
LOG_ERROR() << "something went wrong, wallet not created...";
return -1;
}
}
auto walletDB = WalletDB::open(walletPath, pass, reactor);
if (!walletDB)
{
LOG_ERROR() << "Please check your password. If password is lost, restore wallet.db from latest backup or delete it and restore from seed phrase.";
return -1;
}
const auto& currHeight = walletDB->getCurrentHeight();
const auto& fork1Height = Rules::get().pForks[1].m_Height;
const bool isFork1 = currHeight >= fork1Height;
if (command == cli::CHANGE_ADDRESS_EXPIRATION)
{
return ChangeAddressExpiration(vm, walletDB);
}
if (command == cli::EXPORT_MINER_KEY)
{
return ExportMinerKey(vm, walletDB, pass);
}
if (command == cli::EXPORT_OWNER_KEY)
{
return ExportOwnerKey(walletDB, pass);
}
if (command == cli::EXPORT_ADDRESSES)
{
return ExportAddresses(vm, walletDB);
}
if (command == cli::IMPORT_ADDRESSES)
{
return ImportAddresses(vm, walletDB);
}
{
const auto& var = vm[cli::PAYMENT_PROOF_REQUIRED];
if (!var.empty())
{
bool b = var.as<bool>();
uint8_t n = b ? 1 : 0;
storage::setVar(*walletDB, storage::g_szPaymentProofRequired, n);
cout << "Parameter set: Payment proof required: " << static_cast<uint32_t>(n) << std::endl;
return 0;
}
}
if (command == cli::NEW_ADDRESS)
{
auto comment = vm[cli::NEW_ADDRESS_COMMENT].as<string>();
CreateNewAddress(walletDB, comment, vm[cli::EXPIRATION_TIME].as<string>() == "never");
if (!vm.count(cli::LISTEN))
{
return 0;
}
}
LOG_INFO() << "wallet sucessfully opened...";
if (command == cli::TREASURY)
{
return HandleTreasury(vm, *walletDB->get_MasterKdf());
}
BitcoinOptions btcOptions;
if (vm.count(cli::BTC_NODE_ADDR) > 0 || vm.count(cli::BTC_USER_NAME) > 0 || vm.count(cli::BTC_PASS) > 0)
{
string btcNodeUri = vm[cli::BTC_NODE_ADDR].as<string>();
if (!btcOptions.m_address.resolve(btcNodeUri.c_str()))
{
LOG_ERROR() << "unable to resolve bitcoin node address: " << btcNodeUri;
return -1;
}
if (vm.count(cli::BTC_USER_NAME) == 0)
{
LOG_ERROR() << "user name of bitcoin node should be specified";
return -1;
}
btcOptions.m_userName = vm[cli::BTC_USER_NAME].as<string>();
// TODO roman.strilets: use SecString instead of std::string
if (vm.count(cli::BTC_PASS) == 0)
{
LOG_ERROR() << "Please, provide password for the bitcoin node.";
return -1;
}
btcOptions.m_pass = vm[cli::BTC_PASS].as<string>();
}
LitecoinOptions ltcOptions;
if (vm.count(cli::LTC_NODE_ADDR) > 0 || vm.count(cli::LTC_USER_NAME) > 0 || vm.count(cli::LTC_PASS) > 0)
{
string ltcNodeUri = vm[cli::LTC_NODE_ADDR].as<string>();
if (!ltcOptions.m_address.resolve(ltcNodeUri.c_str()))
{
LOG_ERROR() << "unable to resolve litecoin node address: " << ltcNodeUri;
return -1;
}
if (vm.count(cli::LTC_USER_NAME) == 0)
{
LOG_ERROR() << "user name of litecoin node should be specified";
return -1;
}
ltcOptions.m_userName = vm[cli::LTC_USER_NAME].as<string>();
// TODO roman.strilets: use SecString instead of std::string
if (vm.count(cli::LTC_PASS) == 0)
{
LOG_ERROR() << "Please, provide password for the litecoin node.";
return -1;
}
ltcOptions.m_pass = vm[cli::LTC_PASS].as<string>();
}
if (command == cli::INFO)
{
return ShowWalletInfo(walletDB, vm);
}
if (command == cli::TX_DETAILS)
{
return TxDetails(walletDB, vm);
}
if (command == cli::PAYMENT_PROOF_EXPORT)
{
return ExportPaymentProof(walletDB, vm);
}
if (command == cli::PAYMENT_PROOF_VERIFY)
{
return VerifyPaymentProof(vm);
}
if (command == cli::WALLET_ADDRESS_LIST)
{
return ShowAddressList(walletDB);
}
io::Address receiverAddr;
Amount amount = 0;
Amount fee = 0;
WalletID receiverWalletID(Zero);
bool isTxInitiator = command == cli::SEND;
//bool isAssetEmit = command == cli::ASSET_EMIT;
//bool isAssetSend = command == cli::ASSET_SEND;
//bool isAssetBurn = command == cli::ASSET_BURN;
if (isTxInitiator && !LoadBaseParamsForTX(vm, amount, fee, receiverWalletID, isFork1))
{
return -1;
}
bool is_server = command == cli::LISTEN || vm.count(cli::LISTEN);
boost::optional<TxID> currentTxID;
auto txCompleteAction = [¤tTxID](const TxID& txID)
{
if (currentTxID.is_initialized() && currentTxID.get() != txID)
{
return;
}
io::Reactor::get_Current().stop();
};
Wallet wallet{ walletDB, is_server ? Wallet::TxCompletedAction() : txCompleteAction,
!coldWallet ? Wallet::UpdateCompletedAction() : []() {io::Reactor::get_Current().stop(); } };
{
wallet::AsyncContextHolder holder(wallet);
if (!coldWallet)
{
if (vm.count(cli::NODE_ADDR) == 0)
{
LOG_ERROR() << "node address should be specified";
return -1;
}
string nodeURI = vm[cli::NODE_ADDR].as<string>();
io::Address nodeAddress;
if (!nodeAddress.resolve(nodeURI.c_str()))
{
LOG_ERROR() << "unable to resolve node address: " << nodeURI;
return -1;
}
auto nnet = make_shared<proto::FlyClient::NetworkStd>(wallet);
nnet->m_Cfg.m_PollPeriod_ms = vm[cli::NODE_POLL_PERIOD].as<Nonnegative<uint32_t>>().value;
if (nnet->m_Cfg.m_PollPeriod_ms)
{
LOG_INFO() << "Node poll period = " << nnet->m_Cfg.m_PollPeriod_ms << " ms";
uint32_t timeout_ms = std::max(Rules::get().DA.DTarget_s * 1000, nnet->m_Cfg.m_PollPeriod_ms);
if (timeout_ms != nnet->m_Cfg.m_PollPeriod_ms)
{
LOG_INFO() << "Node poll period has been automatically rounded up to block rate: " << timeout_ms << " ms";
}
}
uint32_t responceTime_s = Rules::get().DA.DTarget_s * wallet::kDefaultTxResponseTime;
if (nnet->m_Cfg.m_PollPeriod_ms >= responceTime_s * 1000)
{
LOG_WARNING() << "The \"--node_poll_period\" parameter set to more than " << uint32_t(responceTime_s / 3600) << " hours may cause transaction problems.";
}
nnet->m_Cfg.m_vNodes.push_back(nodeAddress);
nnet->Connect();
wallet.AddMessageEndpoint(make_shared<WalletNetworkViaBbs>(wallet, nnet, walletDB));
wallet.SetNodeEndpoint(nnet);
}
else
{
wallet.AddMessageEndpoint(make_shared<ColdWalletMessageEndpoint>(wallet, walletDB));
}
if (!btcOptions.m_userName.empty() && !btcOptions.m_pass.empty())
{
btcOptions.m_feeRate = vm[cli::SWAP_FEERATE].as<Positive<Amount>>().value;
if (vm.count(cli::BTC_CONFIRMATIONS) > 0)
{
btcOptions.m_confirmations = vm[cli::BTC_CONFIRMATIONS].as<Positive<uint16_t>>().value;
}
if (vm.count(cli::BTC_LOCK_TIME) > 0)
{
btcOptions.m_lockTimeInBlocks = vm[cli::BTC_LOCK_TIME].as<Positive<uint32_t>>().value;
}
wallet.initBitcoin(io::Reactor::get_Current(), btcOptions);
}
if (!ltcOptions.m_userName.empty() && !ltcOptions.m_pass.empty())
{
ltcOptions.m_feeRate = vm[cli::SWAP_FEERATE].as<Positive<Amount>>().value;
if (vm.count(cli::LTC_CONFIRMATIONS) > 0)
{
ltcOptions.m_confirmations = vm[cli::LTC_CONFIRMATIONS].as<Positive<uint16_t>>().value;
}
if (vm.count(cli::LTC_LOCK_TIME) > 0)
{
ltcOptions.m_lockTimeInBlocks = vm[cli::LTC_LOCK_TIME].as<Positive<uint32_t>>().value;
}
wallet.initLitecoin(io::Reactor::get_Current(), ltcOptions);
}
if (command == cli::SWAP_INIT || command == cli::SWAP_LISTEN)
{
wallet::AtomicSwapCoin swapCoin = wallet::AtomicSwapCoin::Bitcoin;
if (vm.count(cli::SWAP_COIN) > 0)
{
swapCoin = wallet::from_string(vm[cli::SWAP_COIN].as<string>());
if (swapCoin == wallet::AtomicSwapCoin::Unknown)
{
LOG_ERROR() << "Unknown coin for swap";
return -1;
}
}
if (swapCoin == wallet::AtomicSwapCoin::Bitcoin)
{
if (btcOptions.m_userName.empty() || btcOptions.m_pass.empty() || btcOptions.m_address.empty())
{
LOG_ERROR() << "BTC node credentials should be provided";
return -1;
}
}
else
{
if (ltcOptions.m_userName.empty() || ltcOptions.m_pass.empty() || ltcOptions.m_address.empty())
{
LOG_ERROR() << "LTC node credentials should be provided";
return -1;
}
}
if (vm.count(cli::SWAP_AMOUNT) == 0)
{
LOG_ERROR() << "swap amount is missing";
return -1;
}
Amount swapAmount = vm[cli::SWAP_AMOUNT].as<Positive<Amount>>().value;
bool isGrimmSide = (vm.count(cli::SWAP_GRIMM_SIDE) != 0);
if (command == cli::SWAP_INIT)
{
if (!LoadBaseParamsForTX(vm, amount, fee, receiverWalletID, isFork1))
{
return -1;
}
if (vm.count(cli::SWAP_AMOUNT) == 0)
{
LOG_ERROR() << "swap amount is missing";
return -1;
}
WalletAddress senderAddress = CreateNewAddress(walletDB, "");
currentTxID = wallet.swap_coins(senderAddress.m_walletID, receiverWalletID,
move(amount), move(fee), swapCoin, swapAmount, isGrimmSide);
}
if (command == cli::SWAP_LISTEN)
{
if (vm.count(cli::AMOUNT) == 0)
{
LOG_ERROR() << "amount is missing";
return false;
}
auto signedAmount = vm[cli::AMOUNT].as<Positive<double>>().value;
signedAmount *= Rules::Coin; // convert grimms to coins
amount = static_cast<ECC::Amount>(std::round(signedAmount));
if (amount == 0)
{
LOG_ERROR() << "Unable to send zero coins";
return false;
}
wallet.initSwapConditions(amount, swapAmount, swapCoin, isGrimmSide);
}
}
//if (isAssetEmit) {
// WalletAddress senderAddress = CreateNewAddress(walletDB, "");
// WalletAddress receiverAddress = CreateNewAddress(walletDB, "");
// AssetCommand assetCommand;
// uint64_t idx = 0;
// if (vm.count(cli::ASSET_KID) == 0)
// {
// LOG_ERROR() << "asset_kid required";
// return false;
// }
// idx = vm[cli::ASSET_KID].as<uint64_t>();
// AssetID assetID = Zero;
// LOG_INFO() << "Creating assets...";
// currentTxID = wallet.handle_asset(senderAddress.m_walletID, receiverAddress.m_walletID, assetCommand, move(amount), idx, assetID, move(fee), command == cli::SEND, kDefaultTxLifetime, kDefaultTxResponseTime, {});
// }
if (isTxInitiator)
{
WalletAddress senderAddress = CreateNewAddress(walletDB, "");
AssetCommand assetCommand;
uint64_t idx = 0;
AssetID assetID = Zero;
if (LoadAssetParamsForTX(vm, assetCommand, idx, assetID))
{
currentTxID = wallet.handle_asset(senderAddress.m_walletID, receiverWalletID, assetCommand, move(amount), idx, assetID, move(fee), command == cli::SEND, kDefaultTxLifetime, kDefaultTxResponseTime, {});
}
else
{
CoinIDList coinIDs = GetPreselectedCoinIDs(vm);
currentTxID = wallet.transfer_money(senderAddress.m_walletID, receiverWalletID, move(amount), move(fee), coinIDs, command == cli::SEND, kDefaultTxLifetime, kDefaultTxResponseTime, {}, true);
}
}
bool deleteTx = command == cli::DELETE_TX;
if (command == cli::CANCEL_TX || deleteTx)
{
auto txIdVec = from_hex(vm[cli::TX_ID].as<string>());
TxID txId;
std::copy_n(txIdVec.begin(), 16, txId.begin());
auto tx = walletDB->getTx(txId);
if (tx)
{
if (deleteTx)
{
if (tx->canDelete())
{
wallet.delete_tx(txId);
return 0;
}
else
{
LOG_ERROR() << "Transaction could not be deleted. Invalid transaction status.";
return -1;
}
}
else
{
if (tx->canCancel())
{
currentTxID = txId;
wallet.cancel_tx(txId);
}
else
{
LOG_ERROR() << "Transaction could not be cancelled. Invalid transaction status.";
return -1;
}
}
}
else
{
LOG_ERROR() << "Unknown transaction ID.";
return -1;
}
}
if (command == cli::WALLET_RESCAN)
{
wallet.Refresh();
}
}
io::Reactor::get_Current().run();
}
}
}
catch (const AddressExpiredException&)
{
}
catch (const FailToStartSwapException&)
{
}
catch (const po::invalid_option_value& e)
{
cout << e.what() << std::endl;
return 0;
}
catch (const NonnegativeOptionException& e)
{
cout << e.what() << std::endl;
return 0;
}
catch (const PositiveOptionException& e)
{
cout << e.what() << std::endl;
return 0;
}
catch (const po::error& e)
{
LOG_ERROR() << e.what();
printHelp(visibleOptions);
}
catch (const std::runtime_error& e)
{
LOG_ERROR() << e.what();
}
}
catch (const std::exception& e)
{
std::cout << e.what() << std::endl;
}
return 0;
}
int main(int argc, char* argv[]) {
#ifdef _WIN32
return main_impl(argc, argv);
#else
block_sigpipe();
auto f = std::async(
std::launch::async,
[argc, argv]() -> int {
// TODO: this hungs app on OSX
//lock_signals_in_this_thread();
int ret = main_impl(argc, argv);
kill(0, SIGINT);
return ret;
}
);
wait_for_termination(0);
if (reactor) reactor->stop();
return f.get();
#endif
}
| [
"[email protected]"
] | |
d9d82872118654170313a7c84b85e3b01cd5535f | c0f94940a229f7a077bd9a0a16bb9865d6778580 | /一週間で身につくC++問題/問題6/prob6-2/fundcalc.h | 1a0d8a335bf47ae49a17aa2881bb678bf90a1015 | [] | no_license | kmichy/c-lang-practice | c8a6215d57733e8f01b87d989d2a5115fd178e5c | 5d53375ff0e97622bce0f3b87fdaa6544d4bbcd7 | refs/heads/master | 2020-03-31T20:43:33.873719 | 2018-10-26T08:14:28 | 2018-10-26T08:14:28 | 152,552,718 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 321 | h | #ifndef _FUNDCALC_H_
#define _FUNDCALC_H_
class FundCalc{
protected:
double m_number1;
double m_number2;
public:
FundCalc();
void setNumber1(double number);
void setNumber2(double number);
double getNumber1();
double getNumber2();
double add();
double sub();
};
#endif //_FUNDCALC_H_ | [
"[email protected]"
] | |
e2673278301a639ac15389c1cdeda80ffcc19681 | 8865c31bec93c3ffe7d0da2dd9f298dc1d4d5dd7 | /Algorithm/Dijkstra's/boj 1753 최단 경로.cpp | 175a09b499af4c04627995440de04f84fefb1cef | [] | no_license | Erica1217/2019-1g2z-icpc | 1e3989873dcbf45881cdc8bcb3ca35b0260019a1 | 3be8797782565f631717adc147bb0acd3d848893 | refs/heads/master | 2020-07-27T09:59:32.238066 | 2019-10-02T02:11:16 | 2019-10-02T02:11:16 | 209,052,513 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,092 | cpp | #include <iostream>
#include <queue>
#include <vector>
#define Mx 9999999
using namespace std;
struct st{
int Node,Cost;
};
struct cmp
{
bool operator()(st A, st B)
{
return A.Cost>B.Cost;
}
};
int N,M,S,a,b,c,check[22000],Min[22000];
priority_queue<st,vector<st>,cmp> que;
vector< vector<st> > E(22000);
st Z,Q;
int main()
{
cin>>N>>M>>S;
for(int x=0; x<M; x++)
{
cin>>a>>b>>c;
Z.Node=b;
Z.Cost=c;
E[a].push_back(Z);
//Z.Node=a;
//E[b].push_back(Z);
}
for(int x=1; x<=N; x++) Min[x]=Mx;
Min[S]=0;
check[S]=0;
Z.Node=S;
Z.Cost=0;
que.push(Z);
while(!que.empty())
{
Z=que.top();
//cout<<Z.Node<<endl;
check[Z.Node]=1;
for(int x=0; x<E[Z.Node].size(); x++)
{
if(Min[E[Z.Node][x].Node]>Min[Z.Node]+E[Z.Node][x].Cost)
{
Min[E[Z.Node][x].Node]=Min[Z.Node]+E[Z.Node][x].Cost;
Q.Node= E[Z.Node][x].Node;
Q.Cost=Min[Z.Node]+E[Z.Node][x].Cost;
//cout<<Z.Node<<" "<<Q.Node<<" "<<Q.Cost<<endl;
que.push(Q);
}
}
que.pop();
}
for(int x=1; x<=N; x++)
{
if(Min[x]!=Mx) cout<<Min[x]<<"\n";
else cout<<"INF\n";
}
} | [
"[email protected]"
] | |
db0881f990c0400725bbf1ecc14a28847ab36762 | 954e811fc3facbe3a5d348ddb856724fd0664e08 | /include/I2C_base.hpp | 995a521b49c6c0ad29471ed3c6cfec00892d7f02 | [] | no_license | DavidMonk00/UROP-CMS-com-e | 471c8e1ece93bd58e8b2c124152e04758a403f9e | d99d665f791fb2fa7fcb74ad21422940d3bc31f1 | refs/heads/master | 2021-03-30T17:01:48.362870 | 2018-04-10T14:10:44 | 2018-04-10T14:10:44 | 94,781,518 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 643 | hpp | /**
I2C_base.h
Purpose: defines I2C base class.
@author David Monk - Imperial College London
@version 1.0
*/
#pragma once
#include <cstdlib>
#include <stdio.h>
#include <stdint.h>
using namespace std;
/**
Base I2C class. Has no functionality in current state but acts as a basis for
derived I2C classes
*/
class I2C_base {
protected:
uint32_t addr;
public:
virtual void receiveData(uint32_t address, char* buffer, uint32_t bytecnt, uint32_t start_point)=0;
virtual void sendData(uint32_t address, char* buffer, uint32_t bytecnt, uint32_t start_point)=0;
virtual void getBoardValue(uint32_t value, uint32_t* buffer)=0;
};
| [
"[email protected]"
] | |
39429cc1326509a39bc19f015363fd074e555236 | 6aba3b02d264cca52af155f5ab751b6f4f919690 | /CrustyLib/NES/Cpu6502.h | ffeea53eacf473c9d5264e3e7f31b47a0ef9c040 | [] | no_license | galenelias/CrustyNES | b8aa6d61bb0e2da13159a9ac6368c2c2fce20f2b | df2cd21e8121521ddd3b57685593b13b0cee6118 | refs/heads/master | 2020-04-14T10:01:07.706447 | 2019-06-16T02:47:44 | 2019-06-16T02:47:44 | 163,775,216 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,765 | h | #pragma once
#include <stdint.h>
#include <string>
#include "NESRom.h"
#include "..\Util\CoreUtils.h"
namespace PPU
{
class Ppu;
}
namespace NES
{
class NES;
namespace APU
{
class IApu;
}
}
namespace CPU
{
class InvalidInstruction : public std::runtime_error
{
public:
InvalidInstruction(uint8_t instruction)
: m_instruction(instruction)
, std::runtime_error("Invalid Opcode")
{ }
private:
uint8_t m_instruction;
};
class UnhandledInstruction: public std::runtime_error
{
public:
UnhandledInstruction(uint8_t instruction)
: m_instruction(instruction)
, std::runtime_error("Unhandled Opcode")
{ }
private:
uint8_t m_instruction;
};
enum class AddressingMode
{
IMM, // Immediate
ABS, // Absolute
ABSX, // Absolute, X
ABSY, // Absolute, Y
ZP, // Zero Page
ZPX, // Zero Page, X
ZPY, // Zero Page, Y
_ZPX_, // (Zero Page, X)
_ZP_Y, // (Zero Page), Y
ACC, // Accumulator
IMP, // Implied (not a real addressing mode)
};
enum class CpuStatusFlag
{
None = 0x00,
Carry = 0x01,
Zero = 0x02,
InterruptDisabled = 0x04,
DecimalMode = 0x08,
BreakCommand = 0x10,
Bit5 = 0x20,
Overflow = 0x40,
Negative = 0x80,
};
DEFINE_ENUM_BITWISE_OPERANDS(CpuStatusFlag);
// Memory Regions
// Interrupts ($FFFA-$FFFF)
// - $FFFC-$FFFD - RESET
class Cpu6502
{
public:
Cpu6502(NES::NES& nes); //REVIEW: Should cpu depend on ram, or abstract the PRG/CHR loading?
Cpu6502(const Cpu6502&) = delete;
Cpu6502& operator=(const Cpu6502&) = delete;
void SetRomMapper(NES::IMapper* pMapper);
void Reset();
uint32_t RunNextInstruction();
uint32_t RunInstructions(int targetCycles);
int64_t GetElapsedCycles() const;
const char* GetDebugState() const;
uint16_t GetProgramCounter() const { return m_pc; }
void GenerateNonMaskableInterrupt();
//enum class OpCode : uint16_t;
typedef void (Cpu6502::*InstrunctionFunc)(AddressingMode addressingMode);
struct OpCodeTableEntry
{
uint8_t opCode;
uint16_t baseCycles;
InstrunctionFunc func;
AddressingMode addrMode;
};
private:
OpCodeTableEntry* DoOpcodeStuff(uint8_t opCode);
void Instruction_Unhandled(AddressingMode addressingMode);
void Instruction_Noop(AddressingMode addressingMode);
void Instruction_Break(AddressingMode addressingMode);
void Instruction_LoadAccumulator(AddressingMode addressingMode);
void Instruction_LoadX(AddressingMode addressingMode);
void Instruction_LoadY(AddressingMode addressingMode);
void Instruction_StoreAccumulator(AddressingMode addressingMode);
void Instruction_StoreX(AddressingMode addressingMode);
void Instruction_StoreY(AddressingMode addressingMode);
void Instruction_Compare(AddressingMode addressingMode);
void Instruction_CompareXRegister(AddressingMode addressingMode);
void Instruction_CompareYRegister(AddressingMode addressingMode);
void Instruction_TestBits(AddressingMode addressingMode);
void Instruction_And(AddressingMode addressingMode);
void Instruction_OrWithAccumulator(AddressingMode addressingMode);
void Instruction_ExclusiveOr(AddressingMode addressingMode);
void Instruction_AddWithCarry(AddressingMode addressingMode);
void Instruction_SubtractWithCarry(AddressingMode addressingMode);
void Instruction_RotateLeft(AddressingMode addressingMode);
void Instruction_RotateRight(AddressingMode addressingMode);
void Instruction_ArithmeticShiftLeft(AddressingMode addressingMode);
void Instruction_LogicalShiftRight(AddressingMode addressingMode);
void Instruction_DecrementX(AddressingMode addressingMode);
void Instruction_IncrementX(AddressingMode addressingMode);
void Instruction_DecrementY(AddressingMode addressingMode);
void Instruction_IncrementY(AddressingMode addressingMode);
void Instruction_TransferAtoX(AddressingMode addressingMode);
void Instruction_TransferXtoA(AddressingMode addressingMode);
void Instruction_TransferAtoY(AddressingMode addressingMode);
void Instruction_TransferYtoA(AddressingMode addressingMode);
void Instruction_SetInterrupt(AddressingMode addressingMode);
void Instruction_ClearInterrupt(AddressingMode addressingMode);
void Instruction_SetDecimal(AddressingMode addressingMode);
void Instruction_ClearDecimal(AddressingMode addressingMode);
void Instruction_SetCarry(AddressingMode addressingMode);
void Instruction_ClearCarry(AddressingMode addressingMode);
void Instruction_ClearOverflow(AddressingMode addressingMode);
void Instruction_TransferXToStack(AddressingMode addressingMode);
void Instruction_TransferStackToX(AddressingMode addressingMode);
void Instruction_PushAccumulator(AddressingMode addressingMode);
void Instruction_PullAccumulator(AddressingMode addressingMode);
void Instruction_PushProcessorStatus(AddressingMode addressingMode);
void Instruction_PullProcessorStatus(AddressingMode addressingMode);
void Instruction_BranchOnPlus(AddressingMode addressingMode);
void Instruction_BranchOnMinus(AddressingMode addressingMode);
void Instruction_BranchOnOverflowClear(AddressingMode addressingMode);
void Instruction_BranchOnOverflowSet(AddressingMode addressingMode);
void Instruction_BranchOnCarryClear(AddressingMode addressingMode);
void Instruction_BranchOnCarrySet(AddressingMode addressingMode);
void Instruction_BranchOnNotEqual(AddressingMode addressingMode);
void Instruction_BranchOnEqual(AddressingMode addressingMode);
void Instruction_DecrementMemory(AddressingMode addressingMode);
void Instruction_IncrementMemory(AddressingMode addressingMode);
void Instruction_JumpToSubroutine(AddressingMode addressingMode);
void Instruction_ReturnFromSubroutine(AddressingMode addressingMode);
void Instruction_ReturnFromInterrupt(AddressingMode addressingMode);
void Instruction_Jump(AddressingMode addressingMode);
void Instruction_JumpIndirect(AddressingMode addressingMode);
void Helper_ExecuteBranch(bool shouldBranch);
void AddCycles(uint32_t cycles);
// Read stuff
uint8_t ReadMemory8(uint16_t offset) const;
uint16_t ReadMemory16(uint8_t /*offset*/) const { throw std::runtime_error("Oh shit"); }
uint16_t ReadMemory16(uint16_t offset) const;
// Addressing mode resolution
template <typename Func>
void ReadModifyWriteUint8(AddressingMode mode, Func func);
uint8_t ReadUInt8(AddressingMode mode);
uint16_t ReadUInt16(AddressingMode mode);
uint16_t GetAddressingModeOffset_Read(AddressingMode mode);
uint16_t GetAddressingModeOffset_ReadWrite(AddressingMode mode);
uint16_t GetIndexedIndirectOffset();
uint16_t GetIndirectIndexedOffset_Read();
uint16_t GetIndirectIndexedOffset_ReadWrite();
// Write stuff
byte* MapWritableMemoryOffset(uint16_t offset);
void WriteMemory8(uint16_t offset, uint8_t val);
// Stack stuff
void PushValueOntoStack8(uint8_t val);
void PushValueOntoStack16(uint16_t val);
uint16_t ReadValueFromStack16();
uint8_t ReadValueFromStack8();
// Status flag
void SetStatusFlagsFromValue(uint8_t value);
void SetStatusFlags(CpuStatusFlag flags, CpuStatusFlag mask);
// Random instruction helpers
void CompareValues(uint8_t minuend, uint8_t subtrahend);
void AddWithCarry(uint8_t val1, uint8_t val2);
// REVIEW: Simulate memory bus?
byte m_cpuRam[2*1024 /*2KB*/];
NES::NES& m_nes;
PPU::Ppu& m_ppu;
NES::APU::IApu& m_apu;
NES::IMapper* m_pMapper;
// PPU stuff
uint8_t m_ppuCtrlReg1;
uint8_t m_ppuCtrlReg2;
uint8_t m_ppuStatusReg;
uint32_t m_currentInstructionCycleCount = 0;
//uint64_t m_totalCycles = 0;
int64_t m_totalCycles = 0;
int64_t m_cyclesRemaining = 0;
// CPU Registers
uint16_t m_pc = 0; // Program counter
uint8_t m_sp = 0; // stack pointer
uint8_t m_acc = 0;
uint8_t m_x = 0; // Index Register X
uint8_t m_y = 0; // Index Register Y
uint8_t m_status; // (P) processor status (NV.BDIZC) (N)egative,o(V)erflow,(B)reak,(D)ecimal,(I)nterrupt disable, (Z)ero Flag
};
}
| [
"[email protected]"
] | |
316af7a05a545e49b2cd6f5f2ebd1f85e06acf81 | e71a818ff8eee7b3ef74610130b02f23924c10a7 | /test/main.cpp | c3b44b2c8d2b2ea4cc490e698132c91ba05c0f52 | [
"MIT"
] | permissive | end2endzone/AnyRtttl | 8dca13436260b8d026017d10704f13612a38ca8f | 1bd707cd6ebea7bc8f840d1656b0c84959c117f8 | refs/heads/master | 2023-08-17T04:40:51.378057 | 2023-08-07T19:36:12 | 2023-08-07T19:36:12 | 151,838,849 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,020 | cpp | // ---------------------------------------------------------------------------
// AUTHOR/LICENSE:
// The following code was written by Antoine Beauchamp. For other authors, see AUTHORS file.
// The code & updates for the library can be found at https://github.com/end2endzone/AnyRtttl
// MIT License: http://www.opensource.org/licenses/mit-license.php
// ---------------------------------------------------------------------------
#include <stdio.h>
#include <gtest/gtest.h>
#include "rapidassist/environment.h"
int main(int argc, char **argv)
{
//define default values for xml output report
if (ra::environment::IsConfigurationDebug())
::testing::GTEST_FLAG(output) = "xml:anyrtttl_unittest.debug.xml";
else
::testing::GTEST_FLAG(output) = "xml:anyrtttl_unittest.release.xml";
::testing::GTEST_FLAG(filter) = "*";
::testing::InitGoogleTest(&argc, argv);
int wResult = RUN_ALL_TESTS(); //Find and run all tests
return wResult; // returns 0 if all the tests are successful, or 1 otherwise
}
| [
"[email protected]"
] | |
dba2846646e358154d46270d1cd0d9023a4f3670 | 732b6d1f4328fec0e6f24bd6e0bac6e601e0c666 | /BinaryTreeRayLib/AIEYear1Samples-master/CDDS_BinaryTree/TreeNode.cpp | 9a3ec1e2088bb8a64bc4a1b24524869e2fe89ed1 | [] | no_license | zuwei2/CodeDesignRepo | 1d845f8f51755b4a777a52ec38e44dd50a3eae5b | 43c0246259b850253bd35f2557d23f4e515c7fd4 | refs/heads/master | 2023-08-25T01:03:38.132694 | 2021-10-27T18:45:31 | 2021-10-27T18:45:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 465 | cpp | #include "TreeNode.h"
#include "raylib.h"
#include <string>
TreeNode::TreeNode(int value) : m_value(value), m_left(nullptr), m_right(nullptr)
{
}
TreeNode::~TreeNode()
{
}
void TreeNode::Draw(int x, int y, bool selected)
{
static char buffer[10];
sprintf(buffer, "%d", m_value);
DrawCircle(x, y, 30, YELLOW);
if (selected == true)
DrawCircle(x, y, 28, GREEN);
else
DrawCircle(x, y, 28, BLACK);
DrawText(buffer, x - 12, y - 10, 12, WHITE);
} | [
"[email protected]"
] | |
56450889217433909439df40ecef79e855728e03 | 605b426f3a2e3084ccb075e948b161b906d2638d | /project/Model/BST.cpp | 81fc8a1a29fb34fde5c9fb2769092a06b3de9fce | [
"MIT"
] | permissive | SummerZJU/Data-Structure-Visualization | d7847ac2bfc8c6c8490ea9fcd56bd8e0a0a35316 | b44b181f9e513a09043dd870d80b4c5503bd10ab | refs/heads/master | 2022-04-18T17:48:01.158912 | 2020-04-16T08:07:56 | 2020-04-16T08:07:56 | 140,674,892 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 16 | cpp | #include "BST.h" | [
"[email protected]"
] | |
682099680a6f90ff359ccd942954844105cb5e0e | 91a882547e393d4c4946a6c2c99186b5f72122dd | /Source/XPSP1/NT/printscan/faxsrv/src/test/src/xxxunusedxxx/rendercpapi/testutils.h | 13fd15f5332b5cf36b7b5588b2e02b3696bbc5b1 | [] | no_license | IAmAnubhavSaini/cryptoAlgorithm-nt5src | 94f9b46f101b983954ac6e453d0cf8d02aa76fc7 | d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2 | refs/heads/master | 2023-09-02T10:14:14.795579 | 2021-11-20T13:47:06 | 2021-11-20T13:47:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,299 | h | //
//
// Filename: testutils.h
// Author: Sigalit Bar (sigalitb)
// Date: 10-Jan-2000
//
//
#ifndef __TEST_UTILS_H__
#define __TEST_UTILS_H__
#pragma warning(disable :4786)
#include <iniutils.h>
#include <testruntimeerr.h>
#include <tstring.h>
#include <windows.h>
#include <crtdbg.h>
#include <TCHAR.H>
#include <log.h>
#define HELP_SWITCH_1 TEXT("/?")
#define HELP_SWITCH_2 TEXT("/H")
#define HELP_SWITCH_3 TEXT("-?")
#define HELP_SWITCH_4 TEXT("-H")
#define ARGUMENT_IS_INI_FILENAME_NAME 1
//
// Define pointer to test case function
//
#ifdef _PTR_TO_TEST_CASE_FUNC_
#error redefinition of _PTR_TO_TEST_CASE_FUNC_
#else _PTR_TO_TEST_CASE_FUNC_
#define _PTR_TO_TEST_CASE_FUNC_
typedef BOOL (*PTR_TO_TEST_CASE_FUNC)( void );
#endif
extern tstring g_tstrFullPathToIniFile;
//
// Array of pointers to test cases.
// The "runTestCase" (exported) function uses
// this array to activate the n'th test case
// of the module.
//
//IMPORTANT: If you wish to base your test case DLL
// implementation on this module, or if
// you intend to add test case functions
// to this file,
// MAKE SURE that all test case functions
// are listed in this array (by name).
// The order of functions within the array
// determines their "serial number".
//
extern PTR_TO_TEST_CASE_FUNC gTestCaseFuncArray[];
extern DWORD g_dwTestCaseFuncArraySize;
#define NO_SUCH_TEST_CASE_INDEX (g_dwTestCaseFuncArraySize+1)
//
//
//
void
UsageInfo(
INT argc,
TCHAR* argvT[]
);
//
//
//
HRESULT
GetCommandLineParams(
INT argc,
TCHAR* argvT[],
LPTSTR* pszFullPathToTestIniFile
);
//
//
//
std::vector<LONG> GetVectorOfTestCasesToRunFromIniFile(
IN const tstring& tstrIniFile,
IN const tstring& tstrSectionName
);
//
//
//
std::vector<LONG> GetLongVectorFromStrVector (
IN const std::vector<tstring> tstrVector
);
//
//
//
BOOL testCaseExists(DWORD number);
//
// Runs the "number"th test case in the DLL,
// with parameters "pVoid".
// Returns the return value of that test case.
// Note: if there are less than "number" test
// cases in the DLL, this function returns
// TEST_CASE_FAILURE.
//
HRESULT runTestCase(DWORD number, void* pVoid = NULL);
#endif //__TEST_UTILS_H__ | [
"[email protected]"
] | |
f64b10fe2775089c540df23118a84fd9b568c08f | 751a397a1e64d20ad2e669b67a5f05e036cf0b29 | /MyGame/Asset/DirectX/Camera/DXCamera.cpp | 493dd5c2457bd7fed4b6b49177bd9f401fb2192c | [] | no_license | YanaseTaiho/LegendOfRabbit | d81e8775fcd08b36a988981b2ca4df49a19e87a1 | 76fc73c50ceedbcaa226e48e1bfa935c2aeb8b67 | refs/heads/master | 2020-12-19T20:33:13.542843 | 2020-03-08T21:18:54 | 2020-03-08T21:18:54 | 235,841,122 | 0 | 0 | null | 2020-02-21T22:25:17 | 2020-01-23T16:52:32 | C++ | SHIFT_JIS | C++ | false | false | 4,505 | cpp | #include "DXCamera.h"
#include "../Shader/ConstantBuffer.h"
using namespace FrameWork;
DXCamera::DXCamera()
{
viewport = Rect(0, SCREEN_WIDTH, 0, SCREEN_HEIGHT);
this->nearDistance = 0.1f;
this->farDistance = 5000.0f;
}
DXCamera::DXCamera(int left, int right, int top, int bottom, float nearDistance, float farDistance)
{
viewport = Rect(left, right, top, bottom);
this->nearDistance = nearDistance;
this->farDistance = farDistance;
}
void DXCamera::DrawImGui(int id)
{
std::string strId = "##DXCamera" + std::to_string(id);
ImGui::DragInt(("left" + strId).c_str(), &viewport.left);
ImGui::DragInt(("right" + strId).c_str(), &viewport.right);
ImGui::DragInt(("top" + strId).c_str(), &viewport.top);
ImGui::DragInt(("bottom" + strId).c_str(), &viewport.bottom);
ImGui::DragFloat(("near" + strId).c_str(), &nearDistance);
ImGui::DragFloat(("far" + strId).c_str(), &farDistance);
}
bool DXCamera::IsVisiblity(Vector3 position)
{
/*Vector3 viewPos, porjectionPos;
Matrix4 viewPro = projectionMatrix * viewMatrix;
porjectionPos = viewPro * position;*/
XMVECTOR WorldPos, ViewPos, ProjectPos;
XMFLOAT3 porjectionPos;
XMMATRIX4 view = viewMatrix;
XMMATRIX4 projection = projectionMatrix;
// 座標変換
WorldPos = XMLoadFloat3(&position.XMFLOAT());
ViewPos = XMVector3TransformCoord(WorldPos, view.matrix);
ProjectPos = XMVector3TransformCoord(ViewPos, projection.matrix);
XMStoreFloat3(&porjectionPos, ProjectPos);
if (-1.0f < porjectionPos.x && porjectionPos.x < 1.0f &&
-1.0f < porjectionPos.y && porjectionPos.y < 1.0f &&
0.0f < porjectionPos.z && porjectionPos.z < 1.0f)
{
return true;
}
return false;
}
void DXCamera::Draw()
{
// エディタカメラのビューポート更新
RECT wRect;
GetClientRect(RendererSystem::hWnd, &wRect);
viewport = Rect(wRect.left, wRect.right, wRect.top, wRect.bottom);
float viewWidth = (float)(viewport.right - viewport.left);
float viewHeight = (float)(viewport.bottom - viewport.top);
// ビューポート設定
D3D11_VIEWPORT dxViewport;
dxViewport.TopLeftX = (float)viewport.left;
dxViewport.TopLeftY = (float)viewport.top;
dxViewport.Width = viewWidth;
dxViewport.Height = viewHeight;
dxViewport.MinDepth = 0.0f;
dxViewport.MaxDepth = 1.0f;
RendererSystem::GetDeviceContext()->RSSetViewports(1, &dxViewport);
// ビューマトリクス設定
Matrix4 cameraMatrix(transform.lock()->GetWorldPosition(), Vector3::one(), transform.lock()->GetWorldRotation());
viewMatrix = cameraMatrix.Inverse();
// カメラのマトリクスをセット( データ取得用 )
RendererSystem::SetCameraMatrix(cameraMatrix);
RendererSystem::SetViewMatrix(viewMatrix);
// プロジェクションマトリクス設定
projectionMatrix = XMMatrixPerspectiveFovLH(1.0f, dxViewport.Width / dxViewport.Height, nearDistance, farDistance);
RendererSystem::SetProjectionMatrix(projectionMatrix);
// コンスタントバッファに登録
CB_CAMERA cb;
Vector3 pos = transform.lock()->GetWorldPosition();
Vector3 dir = transform.lock()->forward();
cb.eyePos = XMFLOAT4(pos.x, pos.y, pos.z, 1.0f);
cb.diretion = XMFLOAT4(dir.x, dir.y, dir.z, 1.0f);
ConstantBuffer::UpdateConstBuffer(CB_TYPE::CB_CAMERA, cb);
ConstantBuffer::SetVSRegister(5, CB_TYPE::CB_CAMERA);
ConstantBuffer::SetPSRegister(2, CB_TYPE::CB_CAMERA);
}
void DXCamera::ScreenToWorldPoint(Vector3 & outPos, const Vector2 & screenPos, float depth)
{
// 各行列の逆行列を算出
XMMATRIX4 invView, invPrj, vp, invViewport;
invView = viewMatrix;
invPrj = projectionMatrix;
invView = XMMatrixInverse(NULL, invView.matrix);
invPrj = XMMatrixInverse(NULL, invPrj.matrix);
float viewWidth = (float)(viewport.right - viewport.left);
float viewHeight = (float)(viewport.bottom - viewport.top);
vp = XMMatrixIdentity();
float screenW, screenH;
screenW = viewWidth;
screenH = viewHeight;
vp.matrix.r[0].m128_f32[0] = screenW / 2.0f; vp.matrix.r[1].m128_f32[1] = -screenH / 2.0f;
vp.matrix.r[3].m128_f32[0] = screenW / 2.0f; vp.matrix.r[3].m128_f32[1] = screenH / 2.0f;
//vp.matrix.r[2].m128_f32[2] = 1.0f; vp.matrix.r[3].m128_f32[3] = 1.0f;
invViewport = XMMatrixInverse(NULL, vp.matrix);
// 逆変換
XMMATRIX tmp = invViewport.matrix * invPrj.matrix * invView.matrix;
XMFLOAT3 pos = XMFLOAT3(screenPos.x, screenPos.y, depth);
XMVECTOR xmVec = XMLoadFloat3(&pos);
xmVec = XMVector3TransformCoord(xmVec, tmp);
XMFLOAT3 xmOutPos;
XMStoreFloat3(&xmOutPos, xmVec);
outPos = Vector3(xmOutPos.x, xmOutPos.y, xmOutPos.z);
}
| [
"[email protected]"
] | |
24dc4bd8036cdd8cd8ed63f1482a605c49589b9a | 725c4f1b22f8fac99bb9a3706925753476abe727 | /FindDebug.cpp | 738b47ae976e7616b19ac8c16e3bf95dc98b1438 | [] | no_license | fedorrb/DeleteDebug | 597d37a3976e5a88aaac012a46718c64fcbc94b8 | e0704c311a02ccf3163d707e8ae233751b93b7d2 | refs/heads/master | 2021-01-01T19:09:30.747096 | 2017-07-27T11:21:34 | 2017-07-27T11:21:34 | 98,527,634 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,696 | cpp | #include "StdAfx.h"
#include ".\finddebug.h"
#using <mscorlib.dll>
#include "stdafx.h"
#include <iomanip>
#include <cstdlib>
#include <stdio.h>
#include <windows.h>
#include <algorithm>
#include <string>
using std::cout;
using std::cin;
using std::endl;
using std::setw;
using std::string;
//using namespace std;
FindDebug::FindDebug(void)
{
}
FindDebug::~FindDebug(void)
{
}
void FindDebug::findAllFiles( std::string _patch )
{
WIN32_FIND_DATA FindData;
std::string modifiler_address = _patch;
modifiler_address += "*.*";
HANDLE Handle = FindFirstFile( modifiler_address.c_str() , &FindData);
std::string file_name_first = FindData.cFileName;
bool delFile = false;
while( FindNextFile(Handle, &FindData) )
{
std::string file_name = FindData.cFileName;
if(!(FindData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY))
{
delFile = false;
std::string final_address = _patch;
final_address += file_name;
delFile = isDeleteFile(final_address);
if(delFile) {
remove(final_address.c_str()); //delete file
//std::cout << final_address.c_str() << "\n";
}
}
}
}
bool FindDebug::isDeleteFile( std::string _file)
{
std::string fe(_file.substr(_file.find_last_of(".") + 1));
std::transform(fe.begin(), fe.end(), fe.begin(), ::tolower);
int loc = fe.find("pch");
if(loc != string::npos)
return true;
loc = fe.find("pdb");
if(loc != string::npos)
return true;
loc = fe.find("obj");
if(loc != string::npos)
return true;
loc = fe.find("idb");
if(loc != string::npos)
return true;
loc = fe.find("bsc");
if(loc != string::npos)
return true;
loc = fe.find("res");
if(loc != string::npos)
return true;
loc = fe.find("exp");
if(loc != string::npos)
return true;
loc = fe.find("cache");
if(loc != string::npos)
return true;
loc = fe.find("sbr");
if(loc != string::npos)
return true;
return false;
}
void FindDebug::findDebugDir( std::string _patch)
{
WIN32_FIND_DATA FindData;
std::string modifiler_address = _patch;
modifiler_address += "*.*";
HANDLE Handle = FindFirstFile( modifiler_address.c_str() , &FindData);
std::string file_name_first = FindData.cFileName;
while( FindNextFile(Handle, &FindData) )
{
std::string file_name = FindData.cFileName;
if( FindData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY )
{
if( ! !strcmp(FindData.cFileName, "..") )
{
std::string new_patch = _patch ;
new_patch += file_name;
new_patch += "\\";
findDebugDir( new_patch );
//std::cout << new_patch.c_str() << "\n";
if( !strcmpi(FindData.cFileName, "debug") ) {
findAllFiles(new_patch);
}
if( !strcmpi(FindData.cFileName, "release") ) {
findAllFiles(new_patch);
}
}
}
}
}
| [
"[email protected]"
] | |
9a531d4f822be5b6ff8ce45b7ff0a971bad8cd62 | 5cad8d9664c8316cce7bc57128ca4b378a93998a | /CI/rule/pclint/pclint_include/include_linux/c++/4.8.2/gnu/javax/net/ssl/provider/CertificateRequestBuilder.h | 3be6ceac1ee5e066327398cccbbadd43b088919f | [
"LicenseRef-scancode-unknown-license-reference",
"GPL-2.0-only",
"GPL-3.0-only",
"curl",
"Zlib",
"LicenseRef-scancode-warranty-disclaimer",
"OpenSSL",
"GPL-1.0-or-later",
"MIT",
"LicenseRef-scancode-other-copyleft",
"LicenseRef-scancode-openssl",
"LicenseRef-scancode-ssleay-windows",
"BSD-3-Clause",
"Apache-2.0"
] | permissive | huaweicloud/huaweicloud-sdk-c-obs | 0c60d61e16de5c0d8d3c0abc9446b5269e7462d4 | fcd0bf67f209cc96cf73197e9c0df143b1d097c4 | refs/heads/master | 2023-09-05T11:42:28.709499 | 2023-08-05T08:52:56 | 2023-08-05T08:52:56 | 163,231,391 | 41 | 21 | Apache-2.0 | 2023-06-28T07:18:06 | 2018-12-27T01:15:05 | C | UTF-8 | C++ | false | false | 1,067 | h |
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __gnu_javax_net_ssl_provider_CertificateRequestBuilder__
#define __gnu_javax_net_ssl_provider_CertificateRequestBuilder__
#pragma interface
#include <gnu/javax/net/ssl/provider/CertificateRequest.h>
extern "Java"
{
namespace gnu
{
namespace javax
{
namespace net
{
namespace ssl
{
namespace provider
{
class CertificateRequestBuilder;
}
}
}
}
}
namespace java
{
namespace nio
{
class ByteBuffer;
}
}
}
class gnu::javax::net::ssl::provider::CertificateRequestBuilder : public ::gnu::javax::net::ssl::provider::CertificateRequest
{
public:
CertificateRequestBuilder();
virtual ::java::nio::ByteBuffer * buffer();
virtual void setTypes(::java::util::List *);
virtual void setAuthorities(::java::util::List *);
virtual void ensureCapacity(jint);
static ::java::lang::Class class$;
};
#endif // __gnu_javax_net_ssl_provider_CertificateRequestBuilder__
| [
"[email protected]"
] | |
f5cba79dcae32a3e008fa5a62b27d554c6a3c7af | 9249be458a812dbb6762587badb47126dd79d623 | /person/Address.h | fa58cc29c7eae5c83e1966aec7b48ec86d5d1dea | [] | no_license | xiabodan/lt | d8370b683fb70ad7698ee7654bd1ce6d20a904ba | 44f931a9eb66434ab5e7c3aae9b1a80c90499849 | refs/heads/master | 2020-06-15T14:40:24.397757 | 2017-06-19T05:33:57 | 2017-06-19T05:33:57 | 75,286,084 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 257 | h | #ifndef _ADDRESS_H_
#define _ADDRESS_H_
#include <iostream>
class Address{
public:
Address(std::string s){
add = s;
}
~Address(){}
std::string getadd() const {
return add;
}
private:
std::string add;
};
#endif
| [
"[email protected]"
] | |
015cad67ddd802cbb811d5649d96b43e074d5015 | ea8aa77c861afdbf2c9b3268ba1ae3f9bfd152fe | /cf3C/cf3C/ACMTemplete.cpp | 3b6dd919c4a52f7aacc322e68362354041903e50 | [] | no_license | lonelam/SolveSet | 987a01e72d92f975703f715e6a7588d097f7f2e5 | 66a9a984d7270ff03b9c2dfa229d99b922907d57 | refs/heads/master | 2021-04-03T02:02:03.108669 | 2018-07-21T14:25:53 | 2018-07-21T14:25:53 | 62,948,874 | 9 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 2,587 | cpp | #define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <cstdio>
#include <cmath>
#include <map>
#include <set>
#include <utility>
#include <stack>
#include <cstring>
#include <bitset>
#include <deque>
#include <string>
#include <list>
#include <cstdlib>
using namespace std;
const int inf = 0x3f3f3f3f;
const int maxn = 100000 + 100;
typedef long long ll;
typedef long double ld;
string grid[3];
set<string> legal;
void dfs(string & st, int flip)
{
if (legal.find(st) != legal.end()) return;
legal.insert(st);
int won1 = 0, won2 = 0;
map<char, int> diag, rdiag;
for (int i = 0; i < 3; i++)
{
diag[st[i* 3 + i]]++;
rdiag[st[i * 3 + 2 - i]]++;
map<char, int> row;
map<char, int> col;
for (int j = 0; j < 3; j++)
{
row[st[i* 3 + j]]++;
col[st[j* 3 +i]]++;
}
if (row['X'] == 3 || col['X'] == 3)
{
won1++;
}
if (row['0'] == 3 || col['0'] == 3)
{
won2++;
}
}
if (diag['X'] == 3 || rdiag['X'] == 3)
{
won1++;
}
if (diag['0'] == 3 || rdiag['0'] == 3)
{
won2++;
}
if (won1 || won2)
{
return;
}
for (int i = 0; i < 9; i++)
{
if (st[i] == '.')
{
if (flip)
{
st[i] = '0';
}
else
{
st[i] = 'X';
}
dfs(st, flip ^ 1);
st[i] = '.';
}
}
}
int main()
{
string init = ".........";
dfs(init, 0);
for (int i = 0; i < 3; i++)
{
cin >> grid[i];
}
if (legal.find(grid[0] + grid[1] + grid[2]) == legal.end())
{
cout << "illegal\n";
return 0;
}
map<char, int> cnt;
for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 3; j++)
{
cnt[grid[i][j]]++;
}
}
if (cnt['X'] < cnt['0'] || cnt['X'] > cnt['0'] + 1)
{
cout << "illegal\n";
}
else
{
int won1 = 0, won2 = 0;
map<char, int> diag, rdiag;
for (int i = 0; i < 3; i++)
{
diag[grid[i][i]]++;
rdiag[grid[i][2 - i]]++;
map<char, int> row;
map<char, int> col;
for (int j = 0; j < 3; j++)
{
row[grid[i][j]]++;
col[grid[j][i]]++;
}
if (row['X'] == 3 || col['X'] == 3)
{
won1++;
}
if (row['0'] == 3 || col['0'] == 3)
{
won2++;
}
}
if (diag['X'] == 3 || rdiag['X'] == 3)
{
won1++;
}
if (diag['0'] == 3 || rdiag['0'] == 3)
{
won2++;
}
if (won1 && won2)
{
cout << "illegal\n";
}
else if (won1)
{
cout << "the first player won\n";
}
else if (won2)
{
cout << "the second player won\n";
}
else if (cnt['.'] == 0)
{
cout << "draw\n";
}
else if (cnt['X'] == cnt['0'])
{
cout << "first\n";
}
else if (cnt['0'] < cnt['X'])
{
cout << "second\n";
}
}
} | [
"[email protected]"
] | |
9b123746346137d148b17058eb6ac6c861a0d32c | 5ebd5cee801215bc3302fca26dbe534e6992c086 | /blazetest/src/mathtest/dmatdmatadd/M5x5aMDa.cpp | 2b26141d5ce7b7e5b8e36bb2d80584df3e7a7d4d | [
"BSD-3-Clause"
] | permissive | mhochsteger/blaze | c66d8cf179deeab4f5bd692001cc917fe23e1811 | fd397e60717c4870d942055496d5b484beac9f1a | refs/heads/master | 2020-09-17T01:56:48.483627 | 2019-11-20T05:40:29 | 2019-11-20T05:41:35 | 223,951,030 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,745 | cpp | //=================================================================================================
/*!
// \file src/mathtest/dmatdmatadd/M5x5aMDa.cpp
// \brief Source file for the M5x5aMDa dense matrix/dense matrix addition math test
//
// Copyright (C) 2012-2019 Klaus Iglberger - All Rights Reserved
//
// This file is part of the Blaze library. You can redistribute it and/or modify it under
// the terms of the New (Revised) BSD License. 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.
// 3. Neither the names of the Blaze development group nor the names of its contributors
// may be used to endorse or promote products derived from this software without specific
// prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 THE COPYRIGHT HOLDER 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.
*/
//=================================================================================================
//*************************************************************************************************
// Includes
//*************************************************************************************************
#include <cstdlib>
#include <iostream>
#include <blaze/math/DynamicMatrix.h>
#include <blaze/math/StaticMatrix.h>
#include <blazetest/mathtest/Creator.h>
#include <blazetest/mathtest/dmatdmatadd/OperationTest.h>
#include <blazetest/system/MathTest.h>
#ifdef BLAZE_USE_HPX_THREADS
# include <hpx/hpx_main.hpp>
#endif
//=================================================================================================
//
// MAIN FUNCTION
//
//=================================================================================================
//*************************************************************************************************
int main()
{
std::cout << " Running 'M5x5aMDa'..." << std::endl;
using blazetest::mathtest::TypeA;
try
{
// Matrix type definitions
using M5x5a = blaze::StaticMatrix<TypeA,5UL,5UL>;
using MDa = blaze::DynamicMatrix<TypeA>;
// Creator type definitions
using CM5x5a = blazetest::Creator<M5x5a>;
using CMDa = blazetest::Creator<MDa>;
// Running the tests
RUN_DMATDMATADD_OPERATION_TEST( CM5x5a(), CMDa( 5UL, 5UL ) );
}
catch( std::exception& ex ) {
std::cerr << "\n\n ERROR DETECTED during dense matrix/dense matrix addition:\n"
<< ex.what() << "\n";
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
//*************************************************************************************************
| [
"[email protected]"
] | |
27a067fd771c9a821912c0d8555e6fd51129918e | f1f5f2eaa1000d7a9723a11a1d58cdaf776f66e3 | /ZString/ZString/ZWString.h | 566e3a0237d5eb769ac8b63ccddb6b62598c58a7 | [] | no_license | j-jiwon/CPP-Study | 07543354fa4efeb123b7c986e5ce85fce965d30b | 9283d1a40f403cc77462262e6dc6667c0d21de70 | refs/heads/master | 2023-01-21T14:44:05.318746 | 2020-12-07T23:58:56 | 2020-12-07T23:58:56 | 309,212,289 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 414 | h | #pragma once
class ZWString
{
public:
ZWString();
ZWString(const wchar_t* str);
ZWString(const ZWString& str);
ZWString(ZWString&& str) noexcept;
~ZWString();
/* function */
size_t Length() const;
ZWString& Append(const wchar_t* c);
ZWString& Append(const ZWString &str);
ZWString& Erase(int pos = 0, size_t num = -1);
void Reverse();
void Print();
wchar_t At(int i);
private:
wchar_t* ptr;
};
| [
"[email protected]"
] | |
6704cd8c577157c005130418f049a44e9aa63760 | 66f382479a46b3c3f5fe614a52baa5ef52951cec | /DuiLib/Utils/Utils.h | a7b7d8aad7edbf718b832cf8ff62a0d7498cc00a | [
"MIT"
] | permissive | fawdlstty/DuiLib_Faw | 80005af6b1e328818f66cdad47c06108c9ec2137 | f16f9913f027555640ec17eeb077c5be446681ae | refs/heads/master | 2023-08-22T22:51:58.377968 | 2023-05-03T13:13:51 | 2023-05-03T13:13:51 | 152,514,855 | 95 | 29 | NOASSERTION | 2023-08-06T15:09:06 | 2018-10-11T01:50:39 | C++ | UTF-8 | C++ | false | false | 4,039 | h | #ifndef __UTILS_H__
#define __UTILS_H__
#pragma once
#include "OAIdl.h"
#include <vector>
namespace DuiLib {
class UILIB_API CStdPtrArray {
public:
CStdPtrArray (int iPreallocSize = 0);
CStdPtrArray (const CStdPtrArray& src);
virtual ~CStdPtrArray ();
void Empty ();
void Resize (int iSize);
bool empty () const;
int Find (LPVOID iIndex) const;
bool Add (LPVOID pData);
bool SetAt (int iIndex, LPVOID pData);
bool InsertAt (int iIndex, LPVOID pData);
bool Remove (int iIndex);
int GetSize () const;
LPVOID* GetData ();
LPVOID GetAt (int iIndex) const;
LPVOID operator[] (int nIndex) const;
protected:
LPVOID* m_ppVoid;
int m_nCount;
int m_nAllocated;
};
/////////////////////////////////////////////////////////////////////////////////////
//
class UILIB_API CStdValArray {
public:
CStdValArray (int iElementSize, int iPreallocSize = 0);
virtual ~CStdValArray ();
void Empty ();
bool empty () const;
bool Add (LPCVOID pData);
bool Remove (int iIndex);
int GetSize () const;
LPVOID GetData ();
LPVOID GetAt (int iIndex) const;
LPVOID operator[] (int nIndex) const;
protected:
LPBYTE m_pVoid;
int m_iElementSize;
int m_nCount;
int m_nAllocated;
};
/////////////////////////////////////////////////////////////////////////////////////
//
struct TITEM {
faw::string_t Key;
LPVOID Data;
struct TITEM* pPrev;
struct TITEM* pNext;
};
class UILIB_API CStdStringPtrMap {
public:
CStdStringPtrMap (int nSize = 83);
virtual ~CStdStringPtrMap ();
void Resize (int nSize = 83);
LPVOID Find (faw::string_t key, bool optimize = true) const;
bool Insert (faw::string_t key, LPVOID pData);
LPVOID Set (faw::string_t key, LPVOID pData);
bool Remove (faw::string_t key);
void RemoveAll ();
int GetSize () const;
TITEM *GetAt (int iIndex) const;
TITEM *operator[] (int nIndex) const;
protected:
TITEM** m_aT;
int m_nBuckets;
int m_nCount;
};
/////////////////////////////////////////////////////////////////////////////////////
//
class UILIB_API CWaitCursor {
public:
CWaitCursor ();
virtual ~CWaitCursor ();
protected:
HCURSOR m_hOrigCursor;
};
/////////////////////////////////////////////////////////////////////////////////////
//
class CDuiVariant: public VARIANT {
public:
CDuiVariant () {
VariantInit (this);
}
CDuiVariant (int i) {
VariantInit (this);
this->vt = VT_I4;
this->intVal = i;
}
CDuiVariant (float f) {
VariantInit (this);
this->vt = VT_R4;
this->fltVal = f;
}
CDuiVariant (LPOLESTR s) {
VariantInit (this);
this->vt = VT_BSTR;
this->bstrVal = s;
}
CDuiVariant (IDispatch *disp) {
VariantInit (this);
this->vt = VT_DISPATCH;
this->pdispVal = disp;
}
virtual ~CDuiVariant () {
VariantClear (this);
}
};
///////////////////////////////////////////////////////////////////////////////////////
////
//struct TImageInfo;
//class CPaintManagerUI;
//class UILIB_API CImageString
//{
//public:
// CImageString();
// CImageString(const CImageString&);
// const CImageString& operator=(const CImageString&);
// virtual ~CImageString();
// const faw::string_t& GetAttributeString() const;
// void SetAttributeString(faw::string_t pStrImageAttri);
// void ModifyAttribute(faw::string_t pStrModify);
// bool LoadImage(CPaintManagerUI* pManager);
// bool IsLoadSuccess();
// RECT GetDest() const;
// void SetDest(const RECT &rcDest);
// const TImageInfo* GetImageInfo() const;
//private:
// void Clone(const CImageString&);
// void Clear();
// void ParseAttribute(faw::string_t pStrImageAttri);
//protected:
// friend class CRenderEngine;
// faw::string_t m_sImageAttribute;
// faw::string_t m_sImage;
// faw::string_t m_sResType;
// TImageInfo *m_imageInfo;
// bool m_bLoadSuccess;
// RECT m_rcDest;
// RECT m_rcSource;
// RECT m_rcCorner;
// BYTE m_bFade;
// DWORD m_dwMask;
// bool m_bHole;
// bool m_bTiledX;
// bool m_bTiledY;
//};
}// namespace DuiLib
#endif // __UTILS_H__ | [
"[email protected]"
] | |
10abd5454c03825b31d393d6086f84554d8dea67 | ebe643c45a2eb804e0a87161988397c1a63fef08 | /Entities/GEComponentLabel.h | d5ecbe1274b7558e604e5b7d81e55c26bb7fa84a | [] | no_license | arturocepeda/GameEngine | ce0800c087fe8e5a45db501376ed50cfedb3122e | 767fd57ae933edbc71591c37a3361f0acb8b1782 | refs/heads/master | 2023-05-28T08:35:52.865355 | 2023-05-20T09:28:11 | 2023-05-20T09:28:11 | 84,664,074 | 3 | 1 | null | null | null | null | ISO-8859-2 | C++ | false | false | 4,396 | h |
//////////////////////////////////////////////////////////////////
//
// Arturo Cepeda Pérez
// Game Engine
//
// Entities
//
// --- GEComponentLabel.h ---
//
//////////////////////////////////////////////////////////////////
#pragma once
#include "GEComponentRenderable.h"
#include "Rendering/GEFont.h"
#include <vector>
namespace GE { namespace Entities
{
GESerializableEnum(LabelSettingsBitMask)
{
Justify = 1 << 0,
VariableReplacement = 1 << 1,
RichTextSupport = 1 << 2,
FitSizeToLineWidth = 1 << 3,
Count = 4
};
class ComponentLabelBase : public ComponentRenderable
{
protected:
ComponentLabelBase(Entity* pOwner);
~ComponentLabelBase();
struct Pen
{
Core::ObjectName mFontName;
Core::ObjectName mFontStyle;
Color mColor;
float mFontSize;
float mYOffset;
uint32_t mCharIndex;
};
Core::ObjectName mFontName;
Core::ObjectName mFontStyle;
float mFontSize;
float mFontResizeFactor;
Alignment mAlignment;
SpriteLayer mLayer;
uint8_t mSettings;
Core::ObjectName mStringID;
GESTLString mText;
GESTLString mTextExtension;
uint32_t mTextLength;
uint32_t mCharacterCountLimit;
uint16_t getGlyphIndex(size_t pCharIndex) const;
virtual float getInternalFontSize() const;
virtual float getDefaultVerticalOffset() const;
bool evaluateRichTextTag(Pen* pPen);
void processVariables();
virtual void generateText() = 0;
public:
float getFontSize() const;
Alignment getAlignment() const;
const char* getText() const;
const Core::ObjectName& getStringID() const;
uint32_t getTextLength() const;
uint32_t getCharacterCountLimit() const;
SpriteLayer getLayer() const;
uint8_t getSettings() const;
void setFontSize(float pFontSize);
void setAlignment(Alignment pAlignment);
void setText(const char* pText);
void setStringID(const Core::ObjectName& pStringID);
void setCharacterCountLimit(uint32_t pLimit);
void setLayer(SpriteLayer pLayer);
void setSettings(uint8_t pSettings);
};
class ComponentLabel : public ComponentLabelBase
{
private:
Rendering::Font* mFont;
Rendering::FontReplacement* mFontReplacement;
float mHorizontalSpacing;
float mVerticalSpacing;
float mLineWidth;
float mTextWidth;
GESTLVector(float) mLineWidths;
GESTLVector(uint) mLineFeedIndices;
GESTLVector(bool) mLineFeedSkipChar;
GESTLVector(uint) mLineJustifySpaces;
GESTLVector(float) mVertexData;
GESTLVector(ushort) mIndices;
virtual float getInternalFontSize() const override;
virtual float getDefaultVerticalOffset() const override;
virtual void generateText() override;
float measureCharacter(const Pen& pPen);
float getKerning(const Pen& pPen);
public:
static const Core::ObjectName ClassName;
ComponentLabel(Entity* pOwner);
~ComponentLabel();
Rendering::Font* getFont();
const Core::ObjectName& getFontName() const;
const Core::ObjectName& getFontCharacterSet() const;
float getHorizontalSpacing() const;
float getVerticalSpacing() const;
float getLineWidth() const;
float getTextWidth() const;
void setFont(Rendering::Font* pTextFont);
void setFontName(const Core::ObjectName& pFontName);
void setFontCharacterSet(const Core::ObjectName& pCharSetName);
void setHorizontalSpacing(float pHorizontalSpacing);
void setVerticalSpacing(float pVerticalSpacing);
void setLineWidth(float pLineWidth);
};
#if defined (GE_TEXT_RASTERIZER_SUPPORT)
class ComponentLabelRaster : public ComponentLabelBase
{
private:
Core::ObjectName mFontFamily;
Core::ObjectName mFontStyle;
virtual void generateText() override;
public:
static const Core::ObjectName ClassName;
ComponentLabelRaster(Entity* pOwner);
~ComponentLabelRaster();
GEDefaultGetter(const Core::ObjectName&, FontFamily, m)
GEDefaultGetter(const Core::ObjectName&, FontStyle, m)
void setFontFamily(const Core::ObjectName& pFontFamily);
void setFontStyle(const Core::ObjectName& pFontStyle);
};
#endif
}}
| [
"[email protected]"
] | |
12708051daaa6797537c7b109a11906986ec1c61 | 4aadfbe9b2ad755cb0177135390cb9536fd21019 | /ursa_painting/src/ofApp.cpp | 34fb9c1b941e58373a2304a5baf543bb29b0192c | [] | no_license | zhuzhumao2011/universal-robot | c04fc240cf79c7b3825d7e980497a66c68f96ff1 | 2226e31d72edde1b96db53a6912bc64725d99552 | refs/heads/master | 2020-04-04T22:19:21.494950 | 2016-03-07T18:46:17 | 2016-03-07T18:46:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,721 | cpp | #include "ofApp.h"
//--------------------------------------------------------------
void ofApp::setup(){
drawing.setName("Drawing");
drawing.add(bNewDrawing.set("New Drawing", false));
drawing.add(bDebug.set("Debug", true));
panel.setup();
panel.add(drawing);
panel.loadFromFile("settings.xml");
}
//--------------------------------------------------------------
void ofApp::update(){
// reset drawing
if (bNewDrawing) {
points.clear();
bUpdateLine = false;
line.clear();
nPts = 0;
bNewDrawing = false;
}
if (bUpdateLine) {
}
}
//--------------------------------------------------------------
void ofApp::draw(){
ofSetBackgroundColor(255);
// draw circles at all vertices
ofSetColor(0);
for (int i = 0; i < line.getVertices().size(); i++) {
ofDrawCircle(line.getVertices()[i], 5);
}
// draw line
line.draw();
// debug
if (bDebug) {
ofDrawBitmapStringHighlight(ofToString(ofGetFrameRate()), 10, 20);
panel.draw();
}
}
//--------------------------------------------------------------
void ofApp::exit() {
panel.saveToFile("settings.xml");
}
//--------------------------------------------------------------
void ofApp::keyPressed(int key){
if (key == 'f') ofToggleFullscreen();
if (key == 'b') bDebug = !bDebug;
}
//--------------------------------------------------------------
void ofApp::keyReleased(int key){
}
//--------------------------------------------------------------
void ofApp::mouseMoved(int x, int y ){
}
//--------------------------------------------------------------
void ofApp::mouseDragged(int x, int y, int button){
}
//--------------------------------------------------------------
void ofApp::mousePressed(int x, int y, int button){
points.push_back(ofVec3f(x, y, 0));
if (points.size() > 2) bUpdateLine = true;
line.curveTo(ofVec3f(x, y, 0));
nPts++;
}
//--------------------------------------------------------------
void ofApp::mouseReleased(int x, int y, int button){
}
//--------------------------------------------------------------
void ofApp::mouseEntered(int x, int y){
}
//--------------------------------------------------------------
void ofApp::mouseExited(int x, int y){
}
//--------------------------------------------------------------
void ofApp::windowResized(int w, int h){
}
//--------------------------------------------------------------
void ofApp::gotMessage(ofMessage msg){
}
//--------------------------------------------------------------
void ofApp::dragEvent(ofDragInfo dragInfo){
}
| [
"[email protected]"
] | |
f294f7176a2ce61fa9747af7896c3b522544bcf8 | a75bfdb61d2bfa20f71d2a1548188db18a8e5e6d | /Codeforces/180/a.cpp | f9df0918ca50951e458290751a9722ef8dc3de0b | [] | no_license | Ra1nWarden/Online-Judges | 79bbe269fd35bfb1b4a5b3ea68b806fb39b49e15 | 6d8516bb1560f3620bdc2fc429863a1551d60e6a | refs/heads/master | 2022-05-01T17:50:00.253901 | 2022-04-18T06:55:25 | 2022-04-18T06:55:25 | 18,355,773 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 529 | cpp | #include <cstdio>
using namespace std;
const int maxn = 1000;
int n;
char str[maxn+5];
int main() {
scanf("%d\n%s", &n, str+1);
int start, end;
char c = '.';
bool diff = false;
for(int i = 1; i <= n; i++) {
if(str[i] != '.') {
if(c == '.') {
start = i;
c = str[i];
} else if(c != str[i]) {
diff = true;
end = i;
break;
}
} else if(c != '.') {
if(c == 'L') {
end = start - 1;
} else {
end = i;
}
break;
}
}
printf("%d %d\n", start, end);
return 0;
}
| [
"[email protected]"
] | |
702346aed59d5e6a8cb59f327431137d362c0044 | bd1fea86d862456a2ec9f56d57f8948456d55ee6 | /000/074/762/CWE124_Buffer_Underwrite__new_char_cpy_81_bad.cpp | 58a61d6fb07f94c72c7dd0404ac03c9dc4817105 | [] | no_license | CU-0xff/juliet-cpp | d62b8485104d8a9160f29213368324c946f38274 | d8586a217bc94cbcfeeec5d39b12d02e9c6045a2 | refs/heads/master | 2021-03-07T15:44:19.446957 | 2020-03-10T12:45:40 | 2020-03-10T12:45:40 | 246,275,244 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,260 | cpp | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE124_Buffer_Underwrite__new_char_cpy_81_bad.cpp
Label Definition File: CWE124_Buffer_Underwrite__new.label.xml
Template File: sources-sink-81_bad.tmpl.cpp
*/
/*
* @description
* CWE: 124 Buffer Underwrite
* BadSource: Set data pointer to before the allocated memory buffer
* GoodSource: Set data pointer to the allocated memory buffer
* Sinks: cpy
* BadSink : Copy string to data using strcpy
* Flow Variant: 81 Data flow: data passed in a parameter to a virtual method called via a reference
*
* */
#ifndef OMITBAD
#include "std_testcase.h"
#include "CWE124_Buffer_Underwrite__new_char_cpy_81.h"
namespace CWE124_Buffer_Underwrite__new_char_cpy_81
{
void CWE124_Buffer_Underwrite__new_char_cpy_81_bad::action(char * data) const
{
{
char source[100];
memset(source, 'C', 100-1); /* fill with 'C's */
source[100-1] = '\0'; /* null terminate */
/* POTENTIAL FLAW: Possibly copying data to memory before the destination buffer */
strcpy(data, source);
printLine(data);
/* INCIDENTAL CWE-401: Memory Leak - data may not point to location
* returned by new [] so can't safely call delete [] on it */
}
}
}
#endif /* OMITBAD */
| [
"[email protected]"
] | |
5df12b8e74a909be53c3b352fcc81b54e85f6a58 | 16ef4e94d20f457ec1b5893a21cab6134eb8cab7 | /abstract_syntax_tree.hpp | 65fd833f499ef98b3deac975c0dd2a7f10648825 | [] | no_license | caioboffo/simple-c-compiler | 991a34578ae9fbddc226dab501e7a97b43bb1ec2 | 45fc9f9f30ab33c645b0def584c30f590071dbe7 | refs/heads/master | 2020-03-29T05:58:30.243602 | 2018-04-18T14:22:58 | 2018-04-18T14:22:58 | 149,603,808 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 517 | hpp | #ifndef ABSTRACT_SYNTAX_TREE_H
#define ABSTRACT_SYNTAX_TREE_H
#include <list>
#include <stack>
#include <llvm/IR/Module.h>
#include "codegen_context.hpp"
#include "tree_node.hpp"
using namespace llvm;
class abstract_syntax_tree : public tree_node {
codegen_context *context;
std::list<tree_node*> *nodes;
public:
abstract_syntax_tree(std::list<tree_node*> *nodelist);
Module *get_module();
void evaluate();
Value *emit_ir_code(codegen_context *context);
};
#endif /* ABSTRACT_SYNTAX_TREE_H */
| [
"[email protected]"
] | |
340202301e2fc93fab236327c9ef72090d73e75d | aaefcb0efdb5c0b59d4c3008723949d66d28ddd9 | /Codeforces/Problemset/5A Chat Server's Outgoing Traffic/5A Chat Server's Outgoing Traffic.cpp | 415f2aa3ee1af0790e2da954eb1a430967d20b23 | [] | no_license | UtopiaBeam/competitive | cb80aaee773e215eab68f172c173e2ec857b90ff | bf445ecb56c80b35fa915ca7bf0925d398a9c4d7 | refs/heads/master | 2020-03-28T20:25:33.124594 | 2019-10-19T03:43:20 | 2019-10-19T03:43:20 | 149,068,875 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 440 | cpp | #include<cstdio>
#include<cstring>
int cnt=0,ans=0;
char a[105];
int main(){
while(gets(a)!=NULL){
if(a[0]=='+') cnt++;
else if(a[0]=='-') cnt--;
else{
int len=strlen(a);
for(int i=0;a[i];i++)
if(a[i]==':'){
ans+=cnt*(len-i-1);
break;
}
}
}
printf("%d\n",ans);
return 0;
}
| [
"[email protected]"
] | |
1802baa1b4f0fe69337e3f90c935004cd8a84de9 | 82676daf61085bec5c8028370e9feccb1f8ea7d9 | /GameGears/FlyingCameraBehavior.h | 6286e5dcf2d7dfbaab3cfe0c37185a67f4289d9e | [] | no_license | DanielMehlber/GameGears | 4b32c338e588b1c8448a436695937fcd8632ce36 | 88d588c02fd4614c320dd570a8aa52b26fc1847b | refs/heads/master | 2020-03-27T16:29:20.328759 | 2019-02-15T16:26:09 | 2019-02-15T16:26:09 | 146,786,378 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 653 | h | #pragma once
#include "BehaviorComponent.h"
#include "BehaviorComponent.cpp"
#include "Camera.h"
#include "Input.h"
class FlyingCameraBehavior : public BehaviorComponent<Camera>
{
public:
FlyingCameraBehavior();
~FlyingCameraBehavior();
void update(Camera* cam, SyncTask* task) override;
void start(Camera* cam, SyncTask* task) override;
void destroy(Camera* cam, SyncTask* task) override;
void pause(Camera* cam, SyncTask* task) override;
static void foreward(Camera* cam, float speed);
static void right(Camera* cam, float speed);
static void left(Camera* cam, float speed);
static void backward(Camera* cam, float speed);
float speed;
};
| [
"[email protected]"
] | |
c8e94535bca4afb7112a7c105036370657a50b5b | 9be246df43e02fba30ee2595c8cec14ac2b355d1 | /dlls/ai_localnavigator.h | 77e1900eecfcc57a8750830c62e490dc6858d474 | [] | no_license | Clepoy3/LeakNet | 6bf4c5d5535b3824a350f32352f457d8be87d609 | 8866efcb9b0bf9290b80f7263e2ce2074302640a | refs/heads/master | 2020-05-30T04:53:22.193725 | 2019-04-12T16:06:26 | 2019-04-12T16:06:26 | 189,544,338 | 18 | 5 | null | 2019-05-31T06:59:39 | 2019-05-31T06:59:39 | null | WINDOWS-1252 | C++ | false | false | 1,761 | h | //========= Copyright © 2003, Valve LLC, All rights reserved. ==========
//
// Purpose:
//
//=============================================================================
#ifndef AI_LOCALNAVIGATOR_H
#define AI_LOCALNAVIGATOR_H
#include "ai_component.h"
#include "ai_movetypes.h"
#if defined( _WIN32 )
#pragma once
#endif
class CAI_PlaneSolver;
class CAI_MoveProbe;
//-----------------------------------------------------------------------------
// CAI_LocalNavigator
//
// Purpose: Handles all the immediate tasks of navigation, independent of
// path. Implements steering.
//-----------------------------------------------------------------------------
class CAI_LocalNavigator : public CAI_Component,
public CAI_ProxyMovementSink
{
public:
CAI_LocalNavigator(CAI_BaseNPC *pOuter);
virtual ~CAI_LocalNavigator();
void Init( IAI_MovementSink *pMovementServices );
//---------------------------------
AIMoveResult_t MoveCalc( AILocalMoveGoal_t *pResult );
void ResetMoveCalculations();
protected:
AIMoveResult_t MoveCalcRaw( AILocalMoveGoal_t *pResult );
bool MoveCalcDirect( AILocalMoveGoal_t *pMoveGoal, float *pDistClear, AIMoveResult_t *pResult );
bool MoveCalcSteer( AILocalMoveGoal_t *pMoveGoal, float distClear, AIMoveResult_t *pResult );
bool MoveCalcStop( AILocalMoveGoal_t *pMoveGoal, float distClear, AIMoveResult_t *pResult );
CAI_MoveProbe * GetMoveProbe() { return m_pMoveProbe; }
const CAI_MoveProbe *GetMoveProbe() const { return m_pMoveProbe; }
private:
// --------------------------------
CAI_PlaneSolver * m_pPlaneSolver;
CAI_MoveProbe * m_pMoveProbe;
DECLARE_SIMPLE_DATADESC();
};
#endif // AI_LOCALNAVIGATOR_H
| [
"[email protected]"
] | |
8555c30f707527152a22be8889cb1e7c97fb0a05 | c595d05172678594d49adb9cf62167184bb77228 | /Cpp_template/SensoreTemplate.h | 0fae321b85b7adaeb716407a0d7b324a5a79225e | [] | no_license | astroteo/Cpp-learn | b5f8339fe762e38173cdb8e790df3870132763e8 | 25cc8cdde6d03a91810d5d6e0af262caed6696aa | refs/heads/main | 2023-01-14T00:38:49.094814 | 2020-11-10T09:38:20 | 2020-11-10T09:38:20 | 309,624,602 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 649 | h | #ifndef SensoreTemplate_h
#define SensoreTemplate_h
#include <iostream>
#include <cstring> // string library
#include <cstdlib> // standard C library!!
#include <stdlib.h> // includes atoi
#include <vector>
#include <typeinfo> // per determinare il tipo dinamicamente passato a funzioni
#include <string.h>
using std::string;
template <class T>
class SensoreTemplate{
T val; // in questo modo posso inserire interi, float, double ,etc...
int id;
public:
string measure;
public:
SensoreTemplate(string mis,int idn){
measure = mis;
id = idn;
}
void setVal(T val);
T getVal();
int getId();
};
#endif /* SensoreTemplate_h */
| [
"[email protected]"
] | |
57f17259c87d06c11088eca2ee0cfadbf2c1dd2f | 95a43c10c75b16595c30bdf6db4a1c2af2e4765d | /codecrawler/_code/hdu5199/16215989.cpp | 9ed7d0f52a2e302c5eb59700cb7ee22bd7356c43 | [] | no_license | kunhuicho/crawl-tools | 945e8c40261dfa51fb13088163f0a7bece85fc9d | 8eb8c4192d39919c64b84e0a817c65da0effad2d | refs/heads/master | 2021-01-21T01:05:54.638395 | 2016-08-28T17:01:37 | 2016-08-28T17:01:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,800 | cpp | #include<cstdio>
#include<cstring>
#include<cstdlib>
#include<iostream>
#include<map>
using namespace std;
map<int,bool>mp;
const int maxn=1000000+10;
const int prime=14997;
int a[maxn],b[maxn];
typedef struct Node
{
int key;
struct Node *next;
}node,*listnode;
listnode table[prime];
void init()
{
for(int i=0;i<prime;i++)
{
table[i]=(listnode)malloc(sizeof(node));
table[i]->next=NULL;
}
}
inline int ReadInt()//ä¼åæ¥åintæ°ï¼çæ¶é´ï¼å
·ä½å
容èªå·±çæï¼å½ææ¨¡æ¿ä½¿ç¨
{
char ch = getchar();
int data = 0;
while (ch < '0' || ch > '9')
ch = getchar();
do
{
data = data*10 + ch-'0';
ch = getchar();
}while (ch >= '0' && ch <= '9');
return data;
}
void inSert(int real_val,int val)
{
listnode p,New;
p=table[val];
New=(listnode)malloc(sizeof(node));
New->key=real_val;
New->next=p->next;
p->next=New;
}
int Search(int mod,int x)
{
listnode p;
p=table[mod]->next;
int sum=0;
while(p!=NULL)
{
if(p->key==x)
{
p->key=0;
sum++;
}
p=p->next;
}
return sum;
}
int main()
{
int n,m;
while(~scanf("%d%d",&n,&m))
{
init();
for(int i=1;i<=n;i++)
{
a[i]=ReadInt();
int Hashval=a[i]%prime;
inSert(a[i],Hashval);
}
mp.clear();
for(int i=1;i<=m;i++)
{
int x=ReadInt();
if(mp[x])
{
printf("0\n");
continue;
}
int mod=x%prime;
mp[x]=true;
printf("%d\n",Search(mod,x));
}
}
return 0;
} | [
"[email protected]"
] | |
9772ae4832bd3b189fbf1e4c429c82170fd0b575 | e5e4d2a79185df4e6931c85fe03b2913ba736637 | /Cloud_Skeletonization/Cluster.cpp | f1358caa46717d2bd85ba9a41f1f1035a69cb9cf | [] | no_license | Phil-Smith1/Cloud_Skeletonization_3 | 5d348530c445e9101cea4e8ffb63d0403cf7b4af | 480d8e27b607bf9b6cf2232a75d473f8a33d5db0 | refs/heads/master | 2021-07-14T14:19:10.651928 | 2020-07-06T11:26:16 | 2020-07-06T11:26:16 | 179,479,939 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 178 | cpp | #include "Cluster.h"
Cluster::Cluster ( vector<Data_Pt>const& c, Point2d p, int i )
{
cloud = c;
pt = p;
interval = i;
}
Cluster::Cluster(){}
Cluster::~Cluster(){}
| [
"[email protected]"
] | |
f45ddc8501b86645e3c3d1d0a0f0ca09c08f738b | e1b6ae6f0659cfa4ae6039702bc54731e696c73f | /单元测试/test.cpp | e7a4fb9348431066479c499411af8bccb5787672 | [] | no_license | LinghaoChan/CPP-Final-Homework | 7b1a57e5ab773203ce8a9ec8abe4dc081bcbcf90 | 7ebc815067247ad34b54dc0375a8e4e0f0b6bfba | refs/heads/master | 2022-08-30T15:04:57.213440 | 2020-05-26T11:52:44 | 2020-05-26T11:52:44 | 262,587,936 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 5,598 | cpp | #include <iostream>
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <sstream>
#include <fstream>
#include <time.h>
#include <math.h>
using namespace std;
class People{
public:
string name;
string sex;
string id;
};
class Student : public People {
private:
string college;
string password;
int times;
double money;
public:
Student(string, string, string, string, string, string, string);
~Student();
string Student_Times_Plus(void);
string Stuent_Money_Decrease(void);
string Student_Deposit(double);
};
Student :: Student(string i_name, string i_sex, string i_id, string i_college, string i_password, string i_times, string i_money){
name = i_name;
sex = i_sex;
id = i_id;
college = i_college;
password = i_password;
times = atoi(i_times.c_str());
money = atof(i_money.c_str());
}
Student :: ~Student(){
}
string Student :: Student_Times_Plus(){
times++;
return to_string(times);
}
string Student :: Stuent_Money_Decrease(){
money = money - 2.0;
return to_string(money);
}
string Student :: Student_Deposit(double deposit){
money += deposit;
return to_string(money);
}
string get_password(){
int count = 0;
char str[25];
char c;
while((c = getch()) != 13){
if(c==8 && count>0){
cout<<"\b \b";
count--;
continue;
} else if(c != 8){
putchar('*');
str[count] = c;
count++;
}
if (count >= 20){
cout << endl << "密码不超过20位,重新输入" <<endl;
break;
}
}
str[count] = '\0';
string s = str;
return s;
}
string CharToStr(char * contentChar){
string tempStr;
for (int i=0;contentChar[i]!='\0';i++)
{
tempStr+=contentChar[i];
}
return tempStr;
}
void DelLineData(string fileName, int lineNum){
ifstream in;
in.open(fileName);
string strFileData = "";
int line = 1;
char lineData[1024] = {0};
while(in.getline(lineData, sizeof(lineData))){
if (line == lineNum){
strFileData += "";
}else{
strFileData += CharToStr(lineData);
strFileData += "\n";
}
line++;
}
in.close();
ofstream out;
out.open(fileName);
out.flush();
out<<strFileData;
out.close();
}
void ModifyLineData(char* fileName, int lineNum, char* lineData)
{
ifstream in;
in.open(fileName);
string strFileData = "";
int line = 1;
char tmpLineData[1024] = {0};
while(in.getline(tmpLineData, sizeof(tmpLineData)))
{
if (line == lineNum)
{
strFileData += CharToStr(lineData);
strFileData += "\n";
}
else
{
strFileData += CharToStr(tmpLineData);
strFileData += "\n";
}
line++;
}
in.close();
//写入文件
ofstream out;
out.open(fileName);
out.flush();
out<<strFileData;
out.close();
}
void Student_Deposit(){
string Filename = "Student_Account_Message.txt";
bool sign = true;
while(sign == true){
system("cls");
fflush(stdin);
string s_name;
cout<<"请输入您的名字:"<<endl;
cin>>s_name;
string s_id;
cout<<"请输入您的学号:"<<endl;
cin>>s_id;
ifstream fin(Filename, std::ios::in);
char line[1024]={0};
string f_name = "", f_sex = "", f_id = "", f_college = "", f_password = "", f_times = "", f_money = "";
bool In_Message=false;
int number = 0;
while(fin.getline(line, sizeof(line))){
number++;
stringstream word(line);
word >> f_name >> f_sex >> f_id >> f_college >> f_password >> f_times >> f_money;
// cout << f_name << f_sex << f_id << f_college << f_password << f_times << f_money;
if(f_name == s_name && f_id == s_id){
Student student(f_name, f_sex, f_id, f_college, f_password, f_times, f_money);
sign = false;
while(true){
system("cls");
fflush(stdin);
cout<<"请输入您的密码"<<endl;
string input_password = get_password();
if(input_password == f_password){
double dep;
cout<<"\n请输入您的充值金额:"<<endl;
cin>>dep;
string m = student.Student_Deposit(dep);
string new_inputline = f_name +" "+ f_sex +" "+ f_id +" "+ f_college +" "+ f_password +" "+ f_times +" "+ m;
char* chr1 = const_cast<char*>(Filename.c_str());
char* chr2 = const_cast<char*>(new_inputline.c_str());
ModifyLineData(chr1, number, chr2);
cout<<"\07充值成功"<<endl;
Sleep(300);
break;
} else{
cout<<"\n密码错误,按任意键返回"<<endl;
getch();
}
}
}
}
}
if(sign == true){
cout<<"您不在当前账户中,按任意键返回"<<endl;
getch();
}
}
int main() {
Student_Deposit();
return 0;
}
/*
cout<<" *===================================当前车辆信息====================================*\n\n\n";
cout<<" *===================================================================================*\n";
cout<<"| * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * |\n";
cout<<"| * * |\n";
cout<<"| | 车型: 车牌: 车上人数: 状态: | |\n";
cout<<"| * * |\n";
cout<<"| | 司机 | |\n";
cout<<"| * * |\n";
cout<<"| | 车牌 | |\n";
cout<<"| * * |\n";
cout<<"| | [4] 退出系统 | |\n";
cout<<"| * * |\n";
cout<<"| * - * - * - * - * - * - * - * - * - * |\n\n\n";
*/
| [
"[email protected]"
] | |
3040435eb5beb3457a81380297d68bf1d1644525 | 9b6aae918734e909789b0d590a3258cd3ad825ca | /final/main.cpp | 85ae400bea2df1278cf0cefa5e7e7f398f3df823 | [] | no_license | eleintcroelian/graph_class_and_applications | e1aafe6c443a73047b3ceddd6f0f183b4330db81 | a564409c8fd4afb3b7319fb9db15f90aa172cc9f | refs/heads/master | 2022-08-02T14:43:12.614795 | 2020-06-01T20:51:11 | 2020-06-01T20:51:11 | 268,627,679 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 620 | cpp | #include "MinStack.hpp"
#include <cassert>
#include <iostream>
#include "reshape.hpp"
#include "symmetric.hpp"
#include "transpose.hpp"
#include "intersection.hpp"
int main()
{
MinStack<int> s;
s.push(5);
s.push(2);
s.push(100);
assert(s.size() == 3);
assert(s.min() == 2);
assert(s.top() == 100);
s.pop();
// std::cout<<s.size()<<std::endl;
assert(s.size() == 2);
assert(s.top() == 2);
s.pop();
assert(s.size() == 1);
// std::cout << s.min() << std::endl;
assert(s.min() == 5);
MinStack<int> k(s);
assert(k.min() == 5);
assert(k.size() == 1);
}
| [
"[email protected]"
] | |
712dade4603f301e86bd66d5ee8c7bcb3f36d7f0 | e24c147b71a5ca4a5f3ceec5c15d34c0a0e118dc | /71ClimbingStairs/solution.cpp | a4cd3cdb7e01c636a1344809566c61378232929f | [] | no_license | ZhaoxingNiu/LeetCode | 160e38b53a8809701ab31627abd10d426ce79a1f | 660edf70612dad904aa293c890bf335840913c91 | refs/heads/master | 2021-05-23T06:03:49.717189 | 2018-07-01T11:08:35 | 2018-07-01T11:08:35 | 94,780,021 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 449 | cpp | class Solution {
public:
string simplifyPath(string path) {
string res,tmp;
vector<string> stk;
stringstream ss(path);
while(getline(ss,tmp,'/')){
if(tmp =="" || tmp == ".") continue;
if(tmp ==".." && !stk.empty()) stk.pop_back();
else if(tmp != "..") stk.push_back(tmp);
}
for(auto str:stk) res+= '/'+str;
return res.empty()?"/":res;
}
}; | [
"[email protected]"
] | |
d769967535ec4d06ff4343a35362be1898438520 | 21f7ad6af9e2b3b88015b4a9e676835bf47f348a | /EBUCoreProcessor/include/EBUCore_1_4/metadata/ebucoreLanguage.h | 2433f85ce6a02b03b43fc2fcc3f1be09b8bc87f6 | [
"LicenseRef-scancode-warranty-disclaimer",
"Apache-2.0"
] | permissive | ebu/ebu-mxfsdk | 363535382f0bb4f70411cfa282b7498e8848c500 | d66e4b05354ec2b80365f1956f14678c6f7f6514 | refs/heads/master | 2020-04-05T00:35:11.681563 | 2017-07-12T12:55:20 | 2017-07-12T12:55:20 | 11,311,536 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,255 | h | /*
* Copyright 2012-2013 European Broadcasting Union and Limecraft, NV.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#ifndef __MXFPP_EBUCORELANGUAGE_H__
#define __MXFPP_EBUCORELANGUAGE_H__
#include <EBUCore_1_4/metadata/base/ebucoreLanguageBase.h>
using namespace mxfpp;
namespace EBUSDK { namespace EBUCore { namespace EBUCore_1_4 { namespace KLV
{
class ebucoreLanguage : public ebucoreLanguageBase
{
public:
friend class MetadataSetFactory<ebucoreLanguage>;
public:
ebucoreLanguage(HeaderMetadata *headerMetadata);
virtual ~ebucoreLanguage();
protected:
ebucoreLanguage(HeaderMetadata *headerMetadata, ::MXFMetadataSet *cMetadataSet);
};
}}}};
#endif
| [
"[email protected]"
] | |
304a5bb931b5552f0f855e1c79d022a3f4f36e3a | c1cc43edc9e56072ab1aeadcb9d900700100ed6b | /hw5/debug/src/ProgramState.cpp | c5f4c7853c519811a53681afde250482e55e3849 | [] | no_license | codeon19/Data-Structures-and-Object-Oriented-Design---CSCI-104 | e23badbbb5fc47c5b24c6112ddd4fc31a8344a36 | a18f5f826319048bd210f7f42c6e5b43dd5c39b8 | refs/heads/master | 2021-01-19T02:57:41.746896 | 2016-07-21T21:05:49 | 2016-07-21T21:05:49 | 63,902,395 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,555 | cpp | #include "../lib/ProgramState.h"
#include <stdexcept>
#include <exception>
#include <iostream>
using namespace std;
ProgramState::ProgramState(int numLines){
m_numLines = numLines;
counter = 1;
line = 1;
}
int ProgramState::getLine(){
return line;
}
int ProgramState::getCounter(){
return counter;
}
int ProgramState::getValue(string var){
return items[var];
}
int ProgramState::getNumLines(){
return m_numLines;
}
void ProgramState::updateCounter(){
counter++;
}
void ProgramState::updateLine(){
line++;
}
// sets a given variable a val
void ProgramState::setVariable(string var, int value){
if (items.find(var) == items.end()){ // if the var does not exists, then it creates one
items.insert(make_pair(var, value));
}else{
items[var] = value;
}
}
// prints a single variable given the name
void ProgramState::printVariable(string var, ostream &outf){
if (items.find(var) == items.end()){ // if the var does not exist, it sets the default to 0
setVariable(var, 0);
}
outf << items[var] << endl; // print
}
// prints all of the vars in the map
void ProgramState::printAll(ostream &outf){
if(items.size() > 0){ // only prints if there are items in the map, otherwise nothing happens
map<string, int>::iterator it;
for(it = items.begin(); it != items.end(); ++it){
outf << it->first << " " << it->second << endl;
}
}
}
// adds a var and a value
void ProgramState::addVariable(string var, int value){
if(items.find(var) == items.end()){ // if the var does not exist, then create the var
setVariable(var, 0);
}
int sum = getValue(var) + value;
items[var] = sum; // setting the var with the new value
}
// subtracts a var and value
void ProgramState::subVariable(string var, int value){
if(items.find(var) == items.end()){ // if the var does not exist, then create the var
setVariable(var, 0);
}
int sum = getValue(var) - value;
items[var] = sum; // setting the var with the new value
}
// multiplie a var and value
void ProgramState::multVariable(string var, int value){
if(items.find(var) == items.end()){ // if the var does not exists, then create the var
setVariable(var, 0);
}
int product = ((getValue(var))*(value));
items[var] = product; // set the var with the new value
}
// divide a var and value
void ProgramState::divVariable(string var, int value){
if(items.find(var) == items.end()){ // if the var does not exists, then create the var
setVariable(var, 0);
}
if(value == 0){ // ends the program if the program attempts to divide by 0
throw std::invalid_argument("Divide by Zero");
}
int quotient = ((getValue(var))/(value));
items[var] = quotient; // sets the var with the new value
}
// sets line to the line number passed in value
void ProgramState::toStatement(int value){
line = value;
}
// temporarily jumps to a line number
void ProgramState::goSubStatement(int value){
stack.push(line); // push the current line number onto the stack
toStatement(value);
}
// returns to the line before goSub
void ProgramState::returnStatement(){
if(stack.empty()){
toStatement(m_numLines); // if return is given prematurely, then end the program
}
else{
toStatement(stack.top() + 1); // want to return back to next line of GoSub
stack.pop();
}
}
// conditional if true, then skip to the line number
void ProgramState::ifStatement(string var, string op, int compare, int GoToLine){
if(items.find(var) == items.end()){ // if the var does not exists, then create the var
setVariable(var, 0);
}
bool then = false;
int value = getValue(var); // gets the value of the given the var
// different conditionals
if(op == "<"){
if(value < compare)
then = true;
}
else if(op == "<="){
if(value <= compare)
then = true;
}
else if(op == ">"){
if(value > compare)
then = true;
}
else if(op == ">="){
if(value >= compare)
then = true;
}
else if(op == "="){
if(value == compare)
then = true;
}
else if(op == "<>"){
if(value != compare)
then = true;
}
else{
throw std::invalid_argument("Illegal operator"); // if wrong operator, end the program
}
if(then)
toStatement(GoToLine);
}
// returning the stored variables
map<string, int> ProgramState::getItems(){
return items;
}
// setting the state to constructor state
void ProgramState::resetState(){
line = 1;
counter = 1;
items.clear();
while(!stack.empty()){
stack.pop();
}
} | [
"[email protected]"
] | |
a1e74c632921960ab5c86d45e88aa641e2285261 | 9ef158aceb0fe7857225b32c769eefc7d0cbdad4 | /UntitledGame/src/ver2/CreatePointLight.h | 03dc69da7750b54fc04532d8e7e0a0c91e97b0f6 | [] | no_license | VancsodiMelinda/ProjectLaboratory | 4fb0f90a3ea0c681c67876214717fd52ae1d7d75 | 1a5dd6493ae985d55e59eee9d8f320d1199e017a | refs/heads/master | 2023-06-03T07:55:56.579820 | 2021-06-18T09:08:47 | 2021-06-18T09:08:47 | 212,203,926 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 583 | h | #pragma once
#include <iostream>
#include <glm/glm.hpp>
#include "glm/gtc/matrix_transform.hpp"
struct PointLightContainer
{
glm::vec3 position;
glm::vec3 color;
float ambientStrength;
float diffuseStrength;
float specularStrength;
float constant;
float linear;
float quadratic;
int ID;
};
class CreatePointLight
{
public:
PointLightContainer pointLightContainer;
CreatePointLight();
CreatePointLight(glm::vec3 position, glm::vec3 color,
float ambientStrength, float diffuseStrength, float specularStrength,
float constant, float linear, float quadratic);
};
| [
"[email protected]"
] | |
084dba7eab411370a6417efcda8d3a53810a5576 | 6c0e1217ce848754e29c6c1351677c53c445ad0a | /source/source/params.h | ededd2c5e3754f90cce579e05c56bd649923754a | [] | no_license | FraserThompson/drunner | d7803cc53fcc45bd3de70423ec8963f6d0ee6d8c | c115f8c77434a6422a31361a135a4aa0448b6660 | refs/heads/master | 2020-06-19T02:39:20.214560 | 2016-11-19T07:17:50 | 2016-11-19T07:17:50 | 74,924,918 | 0 | 0 | null | 2016-11-28T01:08:31 | 2016-11-28T01:08:31 | null | UTF-8 | C++ | false | false | 1,667 | h | #ifndef __PARAMS_H
#define __PARAMS_H
#include <vector>
#include <string>
#include <map>
#include "enums.h"
class params {
public:
params(int argc, char * const * argv); // pointer to a const string (poitner to a const pointer to a char).
std::string substitute( const std::string & source ) const;
const std::string & getVersion() const { return mVersion; }
eCommand getCommand() const { return mCmd; }
std::string getCommandStr() const { return mCmdStr; }
eLogLevel getLogLevel() const { return mLogLevel; }
edServiceOutput supportCallMode() const { return mServiceOutput_supportcalls ? kORaw : kOSuppressed; }
edServiceOutput serviceCmdMode() const { return mServiceOutput_servicecmd ? kORaw : kOSuppressed; }
const std::vector<std::string> & getArgs() const { return mArgs; }
int numArgs() const { return mArgs.size(); }
const std::string & getArg(int n) const;
const std::vector<std::string> & getOptions() const { return mOptions; }
bool isDevelopmentMode() const { return mDevelopmentMode; }
bool doPause() const { return mPause; }
bool isdrunnerCommand(std::string c) const;
bool isHook(std::string c) const;
eCommand getdrunnerCommand(std::string c) const;
private:
std::string mVersion;
eCommand mCmd;
std::string mCmdStr;
std::vector<std::string> mArgs;
eLogLevel mLogLevel;
bool mDevelopmentMode;
bool mPause;
const std::map<std::string, eCommand> mCommandList;
bool mServiceOutput_supportcalls;
bool mServiceOutput_servicecmd;
std::vector<std::string> mOptions;
params();
void _setdefaults();
void _parse(int argc, char * const * argv);
};
#endif
| [
"[email protected]"
] | |
e5502e5845528490bd0d2a718a276c93bc216e58 | 20986b4f9533e7f16276f19b789670e6b84f59f2 | /main.cpp | b7e5e76ff7a25bc61a6ffae60dcecce6a5706b5b | [] | no_license | themostfreeboy/BlockingQueue | b6b07b7daa579e97298f467f4c3277150eb4942d | 9963f7243ee64d48729db2221f3a9bbea6bd9990 | refs/heads/master | 2022-10-20T18:23:00.116717 | 2020-06-20T16:35:09 | 2020-06-20T16:35:09 | 268,216,560 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 2,373 | cpp | #include <iostream>
#include <thread>
#include <vector>
#include <csignal>
#include <string>
#include <unistd.h>
#include <sstream>
#include <stdlib.h>
#include <time.h>
#include <atomic>
#include "blocking_queue.h"
// push队列操作线程数
const static int PUSH_THREAD_NUM = 5;
// pop队列操作线程数
const static int POP_THREAD_NUM = 50;
static std::atomic<bool> quit;
static void push_queue(int id, BlockingQueue* queue) {
std::string thread_name = "push_" + std::to_string(id);
while (!quit) {
// 产生0-9999随机数
int data = rand() % 10000;
size_t queue_size = queue->size();
queue->push(data);
// 构造完整字符串,防止由于std::cout在多线程下,线程不安全,完整字符串被分开
std::stringstream info;
info << "[" << thread_name << "] push queue, data=" << data << ", queue_size=" << queue_size << "\n";
std::cout << info.str();
usleep(200000);
}
}
static void pop_queue(int id, BlockingQueue* queue) {
std::string thread_name = "pop_" + std::to_string(id);
while (!quit) {
int data = queue->pop();
size_t queue_size = queue->size();
// 构造完整字符串,防止由于std::cout在多线程下,线程不安全,完整字符串被分开
std::stringstream info;
info << "[" << thread_name << "] pop queue, data=" << data << ", queue_size=" << queue_size << "\n";
std::cout << info.str();
usleep(200000);
}
}
// 捕捉信号,用于程序的优雅退出
static void signalHandler(int signum) {
quit = true;
}
int main(int argc, char** argv) {
quit = false;
signal(SIGINT, signalHandler);
signal(SIGTERM, signalHandler);
srand((unsigned int)time(NULL));
BlockingQueue queue;
std::vector<std::thread> threads;
for (int i = 0; i < PUSH_THREAD_NUM; ++i) {
threads.push_back(std::thread(push_queue, i, &queue));
}
for (int i = 0; i < POP_THREAD_NUM; ++i) {
threads.push_back(std::thread(pop_queue, i, &queue));
}
while (!quit) {
usleep(200000);
}
queue.quit();
for (std::thread& thread : threads) {
if (thread.joinable()) {
// 等待线程的自然结束
thread.join();
}
}
std::cout << "\nprogram going to quit\n";
return 0;
}
| [
"[email protected]"
] | |
fa87dd0b35b8d6f5057b81fcb70ef78403941d71 | d664a873d35a77179c5803ba1e04683b58b26aa8 | /ASS_TemplateMeta/Part 1_expression templates/main.cpp | 7cf22408c1f6d1c6ad9c52dea7429942e78460f8 | [] | no_license | luckyuro/MyShits | 5aee6d675ee37341aff69aa4697dbadca4c15fd8 | 4f43d15f8d6d60814c8bd2b23d344a089aa70346 | refs/heads/master | 2021-07-12T19:49:47.608915 | 2017-10-15T11:55:24 | 2017-10-15T11:55:24 | 107,007,729 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 469 | cpp | //
// Created by zodiac on 30/04/17.
//
#include <cstdio>
#include "intalu.hpp"
int main()
{
// Equation: (x + 4)(x - 7)
Variable x('x');
Number num4(4);
Number num7(7);
auto eq = (x+num4)*(x-num7);
printf("Test (x + 4)(x - 7)\n");
printf("x = %d. Output = %d\n", 4, eq.eval(4));
printf("x = %d. Output = %d\n", -10, eq.eval(-10));
printf("x = %d. Output = %d\n", 6, eq.eval(6));
printf("x = %d. Output = %d\n", 7, eq.eval(7));
} | [
"[email protected]"
] | |
9e6f440cf2f8dc3228b6e899822e1c432c7031aa | 353ff88bd407cbc8265ce5cc403c889cbf2b1966 | /c++ prog/Untitled57452.cpp | 864c6356c4aba6617953ad1e689d7259a947b1ed | [] | no_license | EnezMutluoglu/1st-class-coding | 00c25432a3224698a477c68eb3a81baffd248f49 | c288885442e5c50b833f117d453cd34185fe4de9 | refs/heads/main | 2023-08-11T02:15:40.903215 | 2021-10-06T18:27:18 | 2021-10-06T18:27:18 | 414,326,752 | 0 | 0 | null | null | null | null | ISO-8859-9 | C++ | false | false | 179 | cpp | #include <iostream>
using namespace std;
int main()
{
int a,b,c;
c=0;
cout<<"Lütfen Toplanılacak sayıyı girin";
cin>>a;
while(b<=a){
b+=2;
c=c+b;}
cout<<c;
}
| [
"[email protected]"
] | |
f135eab5e10ad0d1f0887a8a11bcdb15ce64c88a | 38567f7ed1117c623ef58e864f1074a2221ea987 | /src/headers/sybie/datain/datain.hh | 2f09141e42add72fb3574baaeb17c9cc6525344c | [] | no_license | iampaopaoyu/portrait | 0147d1a3b064093702dd3cb46a4fddb688e75dd5 | 1c4426d1dee86dcdf7b10b0be4928457126f3f3f | refs/heads/master | 2021-05-28T03:29:56.437932 | 2014-08-01T07:36:17 | 2014-08-01T07:36:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 598 | hh | //datain.hh
//获取嵌入到程序里的数据
#ifndef INCLUDE_SYBIE_DATAIN_DATAIN_HH
#define INCLUDE_SYBIE_DATAIN_DATAIN_HH
#include <string>
namespace sybie {
namespace datain {
//根据数据ID(可能是文件名)获取源数据。
std::string Load(const std::string& data_id);
//从is读取文本数据并解码成数据源。is必须时可随机访问的。
std::string LoadOnStream(std::istream& is);
//将储存在data_txt中的文本数据(C-style)解码成源数据。
std::string LoadOnData(const char* data_txt);
} //namespace datain
} //namespace sybie
#endif //ifndef
| [
"[email protected]"
] | |
954f20f42b59999d0c8bc75b0957cb91b6b0af60 | 0f8a96150828755edcde8408cace57760ecc73dd | /Data Structures/Heap/heap.cpp | 0e7e45911734a750db08831ba015107e021993ca | [] | no_license | A5hi5hKujur/Competitive-Programming-MNNIT | 082ed0a04fcf81589e571b7955264a129b3befb6 | dbc23f13d8c3e94e0008a7cd5bdf32f9f0f486ad | refs/heads/master | 2021-09-28T04:51:02.851181 | 2021-09-27T09:29:27 | 2021-09-27T09:29:27 | 242,378,745 | 5 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 8,141 | cpp | /*
Heap : A complete Binary Tree.
Max-Heap: Root node must be GREATEST among all of it’s children.
The same property must be recursively true for all sub-trees in that Binary Tree.
Min-Heap: Root node must be MINIMUM among all of it’s children.
The same property must be recursively true for all sub-trees in that Binary Tree
---------------------------- Representation of Heap in array ------------------------------
* The reason that it MUST be a complete Binary Tree because the array should not have any
gaps in between.
* For any Node arr[i] :
left child = arr[2*i]
right child = arr[2*i + 1]
* Parent of a node = arr[i/2]
* Height of a heap is always Log n.
------------------------------------- INSERTION IN HEAP -------------------------------------
Insertion time of a single element : O(log n)
1. If n = length of the heap, the new element should be inserted in (n+1)th position and increase the size of heap.
2. After insertion we make sure that it follows the rule of the heap(either min or max).
- In case of max heap : new element should be smaller than all its descendents.
- In case of min heap : new element should be greater than all its descendents.
3. HeapifyUp() : If the new element does not follow step 2, then keep moving up the new element by comparing
it with its parent at (i/2)th position and swapping them untill step 2 is valid.
---------------------------------------- CREATION OF A HEAP ----------------------------------
Insertion time for n elements : O(nlogn)
1. iteratively insert new elements on the ith position starting from pos = 1.
2. Repeat the insertion heap procedure.
------------------------------------- Deletion from HEAP -------------------------------------
1. Deletion on the heap is done at the root and is replaced by the last element of the heap.
as a 'new root'(to compansate for the gap).
2. The root is reserved for either the largest element (incase of max Heap) or the smallest
element (in case of min Heap), and the 'new root' is most definately neither, therefore the proper
element should be in the root and the element in the root position should be shifted to its proper
position.
3. Compare the 'new root' with both the children :
max heap : keep replacing 'new root' with max(left child, right child), until both the children
of that element is less than the element itself.
min heap : keep replacing 'new root' with min(left child, right child), until both the children
of that element is greater than the element itself.
--------------------------------------- Heap Sort -----------------------------------------------
1. Keep deleting the root element and place it on the last position, while shrinking the heap,
what was once a max-heap / min-heap would now be a sorted-heap.
--------------------------------------------------------------------------------------------------
*/
#include <bits/stdc++.h>
using namespace std;
class MaxHeap
{
private:
int size; // total size of the array which is used to implement the heap.
int pos; // position where a new element is inserted at the time of push. It also marks the size of heap
vector<int> arr; // array through which heap is implimented (1 indexed for convinence)
public:
//-------------------- HEAP INITIALIZATION ---------------------------------
MaxHeap(int n)
{
vector<int> temp(n+1);
size = n;
arr = temp;
pos = 1;
}
//--------------------------------------------------------------------------
//-------------------- INSERT NEW ELEMENT IN HEAP --------------------------
void push(int x)
{
if(pos > size) // if the new insertion exceeds the array capacity
reorder(); // create a new array with 2x the size and copy all elements over
arr[pos++] = x; // add element in the correct 'pos' and point to next pos.
heapifyUp(); // *IMPORTANT* bubble "up" to the new element to its correct spot
}
//--------------------------------------------------------------------------
//---------------- REMOVE TOP ELEMENT OF THE HEAP --------------------------
int pop()
{
if(pos == 1) return -1; // underflow
int val = arr[1]; // top element is always at index 1
arr[1] = arr[pos-1]; // replace the root with the last element.
pos--; // reduce the size of heap
heapifyDown(); // *IMPORTANT* bubble "down" the root element to its correct spot
return val;
}
//--------------------------------------------------------------------------
int peak()
{
if(pos == 1) return -1;
return arr[1];
}
bool isEmpty()
{
return pos == 1;
}
//----------------- HEAPIFY AT THE TIME OF DELETION ------------------------
/*
index = current node. (parent)
left child = left child of current node (index * 2)
right child = right child of current node (index * 2 + 1)
Max heap : compare with bigger child
Min heap : compare with smaller child
*/
void heapifyDown()
{
int index = 1; // start with root
int bigger_child, left_child, right_child;
left_child = (index * 2 < pos)? arr[index * 2] : INT_MIN; // left child value if its within bounds
right_child = (index * 2 < pos)? arr[index * 2 + 1] : INT_MIN; // right child value if its within bounds
bigger_child = (left_child > right_child)? index * 2 : index * 2 + 1; // index of the greater value child
// As long as the bigger child index is within bound and its size is greater than(for maxheap) its parent
while(bigger_child < pos && arr[index] < arr[bigger_child])
{
swap(arr[index], arr[bigger_child]); // swap parent with child
index = bigger_child; // the child has now become the parent.
// compute for its children now.
left_child = (index * 2 < pos)? arr[index * 2] : INT_MIN;
right_child = (index * 2 < pos)? arr[index * 2 + 1] : INT_MIN;
bigger_child = (left_child > right_child)? index * 2 : index * 2 + 1;
}
}
//--------------------------------------------------------------------------
//------------- HEAPIFY AT THE TIME OF INSERTION ---------------------------
/*
swap current node with its parent until parent is smaller than (for max heap) the current node or you've reached the root.
*/
void heapifyUp()
{
int index = pos - 1; // position of last insertion
while(index > 1) // until you reach the root
{
int parent = index / 2; // get parent address
if(arr[parent] < arr[index]) // if parent element < current element
swap(arr[parent], arr[index]); // swap
else
break; // if not, then stop.
index = parent; // move up.
}
}
//--------------------------------------------------------------------------
//----------- RESIZE ABSTRACT DS when it exceeds its size ------------------
void reorder()
{
int new_size = size * 2;
vector<int> temp(new_size + 1);
for(int i = 1; i<=size; i++)
temp[i] = arr[i];
arr = temp;
size = new_size;
}
//--------------------------------------------------------------------------
};
int main()
{
MaxHeap max_heap(7);
max_heap.push(50);
max_heap.push(30);
max_heap.push(40);
max_heap.push(1);
max_heap.push(20);
max_heap.push(100);
max_heap.push(50);
max_heap.push(30);
max_heap.push(40);
max_heap.push(1);
max_heap.push(20);
max_heap.push(100);
while(!max_heap.isEmpty())
{
cout << max_heap.pop() << "\n";
}
return 0;
}
| [
"[email protected]"
] | |
aa60810250e1d52255bb49fad1bb6c0e5f2922c6 | dd949f215d968f2ee69bf85571fd63e4f085a869 | /kth/tags/withbinder090813/subarchitectures/vision.sa/src/c++/vision/components/ObjectTracker/include/Timer.h | b9556a18420ff5fa93cd14d7c48d6d4d63b2dd78 | [] | no_license | marc-hanheide/cogx | a3fd395805f1b0ad7d713a05b9256312757b37a9 | cb9a9c9cdfeba02afac6a83d03b7c6bb778edb95 | refs/heads/master | 2022-03-16T23:36:21.951317 | 2013-12-10T23:49:07 | 2013-12-10T23:49:07 | 219,460,352 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,247 | h | #ifndef TIMER_H
#define TIMER_H
#pragma once
// ***********************************************************************************
// WINDOWS FUNCTIONS
#ifdef _WIN32
#include <windows.h>
class Timer
{
private:
LONGLONG m_StartTicks; // QueryPerformance - Ticks at application start
LONGLONG m_EndTicks; // QueryPerformance - Ticks when calling Now()
LONGLONG m_Frequency; // QueryPerformance - Fequency
float fNow;
double m_fAppTime; // Time since application started
float m_fTime;
public:
Timer(void);
~Timer(void);
float Update();
float GetFrameTime(){ return m_fTime;}
float GetApplicationTime(){ return (float)m_fAppTime;}
};
#endif
// ***********************************************************************************
// LINUX FUNCTIONS
#ifdef linux
#include <time.h>
#include <sys/time.h>
using namespace std;
class Timer
{
private:
struct timespec AppStart, act, old;
double m_fAppTime; // Time since application started
double m_fTime; // Time between two Update calls
public:
Timer(void);
~Timer(void);
double Update();
double GetFrameTime(){ return m_fTime;}
double GetApplicationTime(){ return m_fAppTime;}
};
#endif
#endif
| [
"krsj@9dca7cc1-ec4f-0410-aedc-c33437d64837"
] | krsj@9dca7cc1-ec4f-0410-aedc-c33437d64837 |
6e44e492003451bd263c31cbad96709585e48341 | 51568a4a03a3fd34fd17ad41b0f9a23e10b96f8a | /Example-Project/Chicago-ETL-Processes/Notebooks/libspatialindex-1.8.5/src/mvrtree/Index.h | c95addafb829c178a7a3dc331c64f2cdaa2ff5e7 | [
"FSFUL",
"LGPL-2.0-or-later",
"LGPL-2.1-only",
"MIT",
"LGPL-2.0-only"
] | permissive | varunrao/amazon-sagemaker-architecting-for-ml | a83ea6b897846d50c38443c263edca70e75db68e | 076308379ba691933cdcd0f52187b2674798a61e | refs/heads/master | 2020-05-17T12:06:13.149237 | 2019-04-30T19:16:20 | 2019-04-30T19:16:20 | 183,701,848 | 1 | 2 | MIT | 2019-04-26T22:35:57 | 2019-04-26T22:35:56 | null | UTF-8 | C++ | false | false | 2,910 | h | /******************************************************************************
* Project: libspatialindex - A C++ library for spatial indexing
* Author: Marios Hadjieleftheriou, [email protected]
******************************************************************************
* Copyright (c) 2002, Marios Hadjieleftheriou
*
* 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.
******************************************************************************/
#pragma once
namespace SpatialIndex
{
namespace MVRTree
{
class Index : public Node
{
public:
virtual ~Index();
private:
Index(MVRTree* pTree, id_type id, uint32_t level);
virtual NodePtr chooseSubtree(const TimeRegion& mbr, uint32_t level, std::stack<id_type>& pathBuffer);
virtual NodePtr findLeaf(const TimeRegion& mbr, id_type id, std::stack<id_type>& pathBuffer);
virtual void split(
uint32_t dataLength, byte* pData, TimeRegion& mbr, id_type id, NodePtr& left, NodePtr& right,
TimeRegion& mbr2, id_type id2, bool bInsertMbr2 = false);
uint32_t findLeastEnlargement(const TimeRegion&) const;
uint32_t findLeastOverlap(const TimeRegion&) const;
void adjustTree(Node*, std::stack<id_type>&);
void adjustTree(Node* n, Node* nn, std::stack<id_type>& pathBuffer);
class OverlapEntry
{
public:
uint32_t m_index;
double m_enlargement;
TimeRegionPtr m_original;
TimeRegionPtr m_combined;
double m_oa;
double m_ca;
static int compareEntries(const void* pv1, const void* pv2)
{
OverlapEntry* pe1 = * (OverlapEntry**) pv1;
OverlapEntry* pe2 = * (OverlapEntry**) pv2;
if (pe1->m_enlargement < pe2->m_enlargement) return -1;
if (pe1->m_enlargement > pe2->m_enlargement) return 1;
return 0;
}
}; // OverlapEntry
friend class MVRTree;
friend class Node;
}; // Index
}
}
| [
"[email protected]"
] | |
0f2d408474ce397a675814e654fad0bca4a7b4e8 | 9fad4848e43f4487730185e4f50e05a044f865ab | /src/ash/shell/shell_delegate_impl.cc | 0671bf6127a44c63770e1637c717ac388ef29887 | [
"BSD-3-Clause"
] | permissive | dummas2008/chromium | d1b30da64f0630823cb97f58ec82825998dbb93e | 82d2e84ce3ed8a00dc26c948219192c3229dfdaa | refs/heads/master | 2020-12-31T07:18:45.026190 | 2016-04-14T03:17:45 | 2016-04-14T03:17:45 | 56,194,439 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,272 | cc | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/shell/shell_delegate_impl.h"
#include "ash/accessibility_delegate.h"
#include "ash/app_list/app_list_shower_delegate_factory.h"
#include "ash/app_list/app_list_view_delegate_factory.h"
#include "ash/default_accessibility_delegate.h"
#include "ash/default_user_wallpaper_delegate.h"
#include "ash/gpu_support_stub.h"
#include "ash/media_delegate.h"
#include "ash/new_window_delegate.h"
#include "ash/session/session_state_delegate.h"
#include "ash/shell/context_menu.h"
#include "ash/shell/example_factory.h"
#include "ash/shell/shelf_delegate_impl.h"
#include "ash/shell/toplevel_window.h"
#include "ash/shell_window_ids.h"
#include "ash/system/tray/default_system_tray_delegate.h"
#include "ash/test/test_keyboard_ui.h"
#include "ash/wm/window_state.h"
#include "base/memory/ptr_util.h"
#include "base/message_loop/message_loop.h"
#include "base/strings/utf_string_conversions.h"
#include "components/user_manager/user_info_impl.h"
#include "ui/app_list/app_list_view_delegate.h"
#include "ui/app_list/shower/app_list_shower_impl.h"
#include "ui/aura/window.h"
#include "ui/gfx/image/image.h"
#include "ui/gfx/image/image_skia.h"
namespace ash {
namespace shell {
namespace {
class NewWindowDelegateImpl : public NewWindowDelegate {
public:
NewWindowDelegateImpl() {}
~NewWindowDelegateImpl() override {}
// NewWindowDelegate:
void NewTab() override {}
void NewWindow(bool incognito) override {
ash::shell::ToplevelWindow::CreateParams create_params;
create_params.can_resize = true;
create_params.can_maximize = true;
ash::shell::ToplevelWindow::CreateToplevelWindow(create_params);
}
void OpenFileManager() override {}
void OpenCrosh() override {}
void OpenGetHelp() override {}
void RestoreTab() override {}
void ShowKeyboardOverlay() override {}
void ShowTaskManager() override {}
void OpenFeedbackPage() override {}
private:
DISALLOW_COPY_AND_ASSIGN(NewWindowDelegateImpl);
};
class MediaDelegateImpl : public MediaDelegate {
public:
MediaDelegateImpl() {}
~MediaDelegateImpl() override {}
// MediaDelegate:
void HandleMediaNextTrack() override {}
void HandleMediaPlayPause() override {}
void HandleMediaPrevTrack() override {}
MediaCaptureState GetMediaCaptureState(UserIndex index) override {
return MEDIA_CAPTURE_VIDEO;
}
private:
DISALLOW_COPY_AND_ASSIGN(MediaDelegateImpl);
};
class SessionStateDelegateImpl : public SessionStateDelegate {
public:
SessionStateDelegateImpl()
: screen_locked_(false), user_info_(new user_manager::UserInfoImpl()) {}
~SessionStateDelegateImpl() override {}
// SessionStateDelegate:
int GetMaximumNumberOfLoggedInUsers() const override { return 3; }
int NumberOfLoggedInUsers() const override {
// ash_shell has 2 users.
return 2;
}
bool IsActiveUserSessionStarted() const override { return true; }
bool CanLockScreen() const override { return true; }
bool IsScreenLocked() const override { return screen_locked_; }
bool ShouldLockScreenBeforeSuspending() const override { return false; }
void LockScreen() override {
shell::CreateLockScreen();
screen_locked_ = true;
Shell::GetInstance()->UpdateShelfVisibility();
}
void UnlockScreen() override {
screen_locked_ = false;
Shell::GetInstance()->UpdateShelfVisibility();
}
bool IsUserSessionBlocked() const override {
return !IsActiveUserSessionStarted() || IsScreenLocked();
}
SessionState GetSessionState() const override {
// Assume that if session is not active we're at login.
return IsActiveUserSessionStarted() ? SESSION_STATE_ACTIVE
: SESSION_STATE_LOGIN_PRIMARY;
}
const user_manager::UserInfo* GetUserInfo(UserIndex index) const override {
return user_info_.get();
}
bool ShouldShowAvatar(aura::Window* window) const override {
return !user_info_->GetImage().isNull();
}
gfx::ImageSkia GetAvatarImageForWindow(aura::Window* window) const override {
return gfx::ImageSkia();
}
void SwitchActiveUser(const AccountId& account_id) override {}
void CycleActiveUser(CycleUser cycle_user) override {}
bool IsMultiProfileAllowedByPrimaryUserPolicy() const override {
return true;
}
void AddSessionStateObserver(ash::SessionStateObserver* observer) override {}
void RemoveSessionStateObserver(
ash::SessionStateObserver* observer) override {}
private:
bool screen_locked_;
// A pseudo user info.
std::unique_ptr<user_manager::UserInfo> user_info_;
DISALLOW_COPY_AND_ASSIGN(SessionStateDelegateImpl);
};
class AppListViewDelegateFactoryImpl : public ash::AppListViewDelegateFactory {
public:
AppListViewDelegateFactoryImpl() {}
~AppListViewDelegateFactoryImpl() override {}
// app_list::AppListViewDelegateFactory:
app_list::AppListViewDelegate* GetDelegate() override {
if (!app_list_view_delegate_.get())
app_list_view_delegate_.reset(CreateAppListViewDelegate());
return app_list_view_delegate_.get();
}
private:
std::unique_ptr<app_list::AppListViewDelegate> app_list_view_delegate_;
DISALLOW_COPY_AND_ASSIGN(AppListViewDelegateFactoryImpl);
};
} // namespace
ShellDelegateImpl::ShellDelegateImpl()
: shelf_delegate_(nullptr),
app_list_shower_delegate_factory_(new AppListShowerDelegateFactory(
base::WrapUnique(new AppListViewDelegateFactoryImpl))) {}
ShellDelegateImpl::~ShellDelegateImpl() {}
bool ShellDelegateImpl::IsFirstRunAfterBoot() const {
return false;
}
bool ShellDelegateImpl::IsIncognitoAllowed() const {
return true;
}
bool ShellDelegateImpl::IsMultiProfilesEnabled() const {
return false;
}
bool ShellDelegateImpl::IsRunningInForcedAppMode() const {
return false;
}
bool ShellDelegateImpl::CanShowWindowForUser(aura::Window* window) const {
return true;
}
bool ShellDelegateImpl::IsForceMaximizeOnFirstRun() const {
return false;
}
void ShellDelegateImpl::PreInit() {
}
void ShellDelegateImpl::PreShutdown() {
}
void ShellDelegateImpl::Exit() {
base::MessageLoop::current()->QuitWhenIdle();
}
keyboard::KeyboardUI* ShellDelegateImpl::CreateKeyboardUI() {
return new TestKeyboardUI;
}
void ShellDelegateImpl::VirtualKeyboardActivated(bool activated) {
}
void ShellDelegateImpl::AddVirtualKeyboardStateObserver(
VirtualKeyboardStateObserver* observer) {
}
void ShellDelegateImpl::RemoveVirtualKeyboardStateObserver(
VirtualKeyboardStateObserver* observer) {
}
void ShellDelegateImpl::OpenUrl(const GURL& url) {}
app_list::AppListShower* ShellDelegateImpl::GetAppListShower() {
if (!app_list_shower_) {
app_list_shower_.reset(new app_list::AppListShowerImpl(
app_list_shower_delegate_factory_.get()));
}
return app_list_shower_.get();
}
ShelfDelegate* ShellDelegateImpl::CreateShelfDelegate(ShelfModel* model) {
shelf_delegate_ = new ShelfDelegateImpl();
return shelf_delegate_;
}
ash::SystemTrayDelegate* ShellDelegateImpl::CreateSystemTrayDelegate() {
return new DefaultSystemTrayDelegate;
}
ash::UserWallpaperDelegate* ShellDelegateImpl::CreateUserWallpaperDelegate() {
return new DefaultUserWallpaperDelegate();
}
ash::SessionStateDelegate* ShellDelegateImpl::CreateSessionStateDelegate() {
return new SessionStateDelegateImpl;
}
ash::AccessibilityDelegate* ShellDelegateImpl::CreateAccessibilityDelegate() {
return new DefaultAccessibilityDelegate;
}
ash::NewWindowDelegate* ShellDelegateImpl::CreateNewWindowDelegate() {
return new NewWindowDelegateImpl;
}
ash::MediaDelegate* ShellDelegateImpl::CreateMediaDelegate() {
return new MediaDelegateImpl;
}
ui::MenuModel* ShellDelegateImpl::CreateContextMenu(
ash::Shelf* shelf,
const ash::ShelfItem* item) {
return new ContextMenu(shelf);
}
GPUSupport* ShellDelegateImpl::CreateGPUSupport() {
// Real GPU support depends on src/content, so just use a stub.
return new GPUSupportStub;
}
base::string16 ShellDelegateImpl::GetProductName() const {
return base::string16();
}
gfx::Image ShellDelegateImpl::GetDeprecatedAcceleratorImage() const {
return gfx::Image();
}
} // namespace shell
} // namespace ash
| [
"[email protected]"
] | |
73857e2b014b1b6cffd254d99f1ffd68b1fb1a35 | 07327b5e8b2831b12352bf7c6426bfda60129da7 | /Include/10.0.14393.0/um/winnt.h | 78904ef51dc0c69a0b42ae6e8830e8015b0818ea | [] | no_license | tpn/winsdk-10 | ca279df0fce03f92036e90fb04196d6282a264b7 | 9b69fd26ac0c7d0b83d378dba01080e93349c2ed | refs/heads/master | 2021-01-10T01:56:18.586459 | 2018-02-19T21:26:31 | 2018-02-19T21:29:50 | 44,352,845 | 218 | 432 | null | null | null | null | UTF-8 | C++ | false | false | 696,203 | h | /*++ BUILD Version: 0073 Increment this if a change has global effects
Copyright (c) Microsoft Corporation. All rights reserved.
Module Name:
winnt.h
Abstract:
This module defines the 32-Bit Windows types and constants that are
defined by NT, but exposed through the Win32 API.
Revision History:
--*/
#ifndef _WINNT_
#define _WINNT_
#if _MSC_VER >= 1200
#pragma warning(push)
#pragma warning(disable:4668) // #if not_defined treated as #if 0
#pragma warning(disable:4820) // padded added
#endif
#pragma warning(disable:4200) // nonstandard extension used : zero-sized array in struct/union
#pragma warning(disable:4201) // named type definition in parentheses
#pragma warning(disable:4214) // bit field types other than int
#ifdef __cplusplus
extern "C" {
#endif
#include <ctype.h>
#include <winapifamily.h>
#define ANYSIZE_ARRAY 1
//
// For compilers that don't support nameless unions/structs
//
#ifndef DUMMYUNIONNAME
#if defined(NONAMELESSUNION) || !defined(_MSC_EXTENSIONS)
#define DUMMYUNIONNAME u
#define DUMMYUNIONNAME2 u2
#define DUMMYUNIONNAME3 u3
#define DUMMYUNIONNAME4 u4
#define DUMMYUNIONNAME5 u5
#define DUMMYUNIONNAME6 u6
#define DUMMYUNIONNAME7 u7
#define DUMMYUNIONNAME8 u8
#define DUMMYUNIONNAME9 u9
#else
#define DUMMYUNIONNAME
#define DUMMYUNIONNAME2
#define DUMMYUNIONNAME3
#define DUMMYUNIONNAME4
#define DUMMYUNIONNAME5
#define DUMMYUNIONNAME6
#define DUMMYUNIONNAME7
#define DUMMYUNIONNAME8
#define DUMMYUNIONNAME9
#endif
#endif // DUMMYUNIONNAME
#ifndef DUMMYSTRUCTNAME
#if defined(NONAMELESSUNION) || !defined(_MSC_EXTENSIONS)
#define DUMMYSTRUCTNAME s
#define DUMMYSTRUCTNAME2 s2
#define DUMMYSTRUCTNAME3 s3
#define DUMMYSTRUCTNAME4 s4
#define DUMMYSTRUCTNAME5 s5
#define DUMMYSTRUCTNAME6 s6
#else
#define DUMMYSTRUCTNAME
#define DUMMYSTRUCTNAME2
#define DUMMYSTRUCTNAME3
#define DUMMYSTRUCTNAME4
#define DUMMYSTRUCTNAME5
#define DUMMYSTRUCTNAME6
#endif
#endif // DUMMYSTRUCTNAME
// end_ntoshvp
#include <specstrings.h>
#include <kernelspecs.h>
#if defined(STRICT_GS_ENABLED)
#pragma strict_gs_check(push, on)
#endif
// begin_ntoshvp
#if defined(_M_MRX000) && !(defined(MIDL_PASS) || defined(RC_INVOKED)) && defined(ENABLE_RESTRICTED)
#define RESTRICTED_POINTER __restrict
#else
#define RESTRICTED_POINTER
#endif
#if defined(_M_MRX000) || defined(_M_ALPHA) || defined(_M_PPC) || defined(_M_IA64) || defined(_M_AMD64) || defined(_M_ARM) || defined(_M_ARM64)
#define ALIGNMENT_MACHINE
#define UNALIGNED __unaligned
#if defined(_WIN64)
#define UNALIGNED64 __unaligned
#else
#define UNALIGNED64
#endif
#else
#undef ALIGNMENT_MACHINE
#define UNALIGNED
#define UNALIGNED64
#endif
// end_ntoshvp
#if defined(_WIN64) || defined(_M_ALPHA)
#define MAX_NATURAL_ALIGNMENT sizeof(ULONGLONG)
#define MEMORY_ALLOCATION_ALIGNMENT 16
#else
#define MAX_NATURAL_ALIGNMENT sizeof(DWORD)
#define MEMORY_ALLOCATION_ALIGNMENT 8
#endif
//
// TYPE_ALIGNMENT will return the alignment requirements of a given type for
// the current platform.
//
#ifdef __cplusplus
#if _MSC_VER >= 1300
#define TYPE_ALIGNMENT( t ) __alignof(t)
#endif
#else
#define TYPE_ALIGNMENT( t ) \
FIELD_OFFSET( struct { char x; t test; }, test )
#endif
//
// Note: RC_INVOKED is checked in PROBE_ALIGNMENT to maintain compatibility with previous
// versions of the SDK which did not block inclusion in an .RC file.
//
#if defined(_AMD64_) || defined(_X86_)
#define PROBE_ALIGNMENT( _s ) TYPE_ALIGNMENT( DWORD )
#elif defined(_IA64_) || defined(_ARM_) || defined(_ARM64_)
//
// TODO: WOWXX - Unblock ARM. Make all alignment checks DWORD for now.
//
#define PROBE_ALIGNMENT( _s ) TYPE_ALIGNMENT( DWORD )
#elif !defined(RC_INVOKED)
#error "No Target Architecture"
#endif
//
// Define PROBE_ALIGNMENT32 to be the same as PROBE_ALIGNMENT on x86, so that
// code hosting x86 under WoW can handle x86's maximum garanteed alignment.
//
#define PROBE_ALIGNMENT32( _s ) TYPE_ALIGNMENT( DWORD )
// begin_ntoshvp
//
// C_ASSERT() can be used to perform many compile-time assertions:
// type sizes, field offsets, etc.
//
// An assertion failure results in error C2118: negative subscript.
//
#ifndef SORTPP_PASS
#define C_ASSERT(e) typedef char __C_ASSERT__[(e)?1:-1]
#else
#define C_ASSERT(e) /* nothing */
#endif
#include <basetsd.h>
#if (defined(_M_IX86) || defined(_M_IA64) || defined(_M_AMD64) || defined(_M_ARM) || defined(_M_ARM64)) && !defined(MIDL_PASS)
#define DECLSPEC_IMPORT __declspec(dllimport)
#else
#define DECLSPEC_IMPORT
#endif
#ifndef DECLSPEC_NORETURN
#if (_MSC_VER >= 1200) && !defined(MIDL_PASS)
#define DECLSPEC_NORETURN __declspec(noreturn)
#else
#define DECLSPEC_NORETURN
#endif
#endif
#ifndef DECLSPEC_NOTHROW
#if (_MSC_VER >= 1200) && !defined(MIDL_PASS)
#define DECLSPEC_NOTHROW __declspec(nothrow)
#else
#define DECLSPEC_NOTHROW
#endif
#endif
#ifndef DECLSPEC_ALIGN
#if (_MSC_VER >= 1300) && !defined(MIDL_PASS)
#define DECLSPEC_ALIGN(x) __declspec(align(x))
#else
#define DECLSPEC_ALIGN(x)
#endif
#endif
// end_ntoshvp
#ifndef SYSTEM_CACHE_ALIGNMENT_SIZE
#if defined(_AMD64_) || defined(_X86_)
#define SYSTEM_CACHE_ALIGNMENT_SIZE 64
#else
#define SYSTEM_CACHE_ALIGNMENT_SIZE 128
#endif
#endif
#ifndef DECLSPEC_CACHEALIGN
#define DECLSPEC_CACHEALIGN DECLSPEC_ALIGN(SYSTEM_CACHE_ALIGNMENT_SIZE)
#endif
#ifndef DECLSPEC_UUID
#if (_MSC_VER >= 1100) && defined (__cplusplus)
#define DECLSPEC_UUID(x) __declspec(uuid(x))
#else
#define DECLSPEC_UUID(x)
#endif
#endif
#ifndef DECLSPEC_NOVTABLE
#if (_MSC_VER >= 1100) && defined(__cplusplus)
#define DECLSPEC_NOVTABLE __declspec(novtable)
#else
#define DECLSPEC_NOVTABLE
#endif
#endif
#ifndef DECLSPEC_SELECTANY
#if (_MSC_VER >= 1100)
#define DECLSPEC_SELECTANY __declspec(selectany)
#else
#define DECLSPEC_SELECTANY
#endif
#endif
#ifndef NOP_FUNCTION
#if (_MSC_VER >= 1210)
#define NOP_FUNCTION __noop
#else
#define NOP_FUNCTION (void)0
#endif
#endif
#ifndef DECLSPEC_ADDRSAFE
#if (_MSC_VER >= 1200) && (defined(_M_ALPHA) || defined(_M_AXP64))
#define DECLSPEC_ADDRSAFE __declspec(address_safe)
#else
#define DECLSPEC_ADDRSAFE
#endif
#endif
#ifndef DECLSPEC_SAFEBUFFERS
#if (_MSC_VER >= 1600)
#define DECLSPEC_SAFEBUFFERS __declspec(safebuffers)
#else
#define DECLSPEC_SAFEBUFFERS
#endif
#endif
#ifndef DECLSPEC_NOINLINE
#if (_MSC_VER >= 1300)
#define DECLSPEC_NOINLINE __declspec(noinline)
#else
#define DECLSPEC_NOINLINE
#endif
#endif
#ifndef DECLSPEC_SAFEBUFFERS
#if (_MSC_VER >= 1300)
#define DECLSPEC_SAFEBUFFERS __declspec(safebuffers)
#else
#define DECLSPEC_SAFEBUFFERS
#endif
#endif
#ifndef DECLSPEC_GUARDNOCF
#if (_MSC_FULL_VER >= 170065501) || defined(_D1VERSIONLKG171_)
#define DECLSPEC_GUARDNOCF __declspec(guard(nocf))
#else
#define DECLSPEC_GUARDNOCF
#endif
#endif
#ifndef DECLSPEC_GUARD_SUPPRESS
#if (_MSC_FULL_VER >= 181040116) || defined(_D1VERSIONLKG171_)
#define DECLSPEC_GUARD_SUPPRESS __declspec(guard(suppress))
#else
#define DECLSPEC_GUARD_SUPPRESS
#endif
#endif
// begin_ntoshvp
#ifndef FORCEINLINE
#if (_MSC_VER >= 1200)
#define FORCEINLINE __forceinline
#else
#define FORCEINLINE __inline
#endif
#endif
//
// CFORCEINLINE: __forceinline required for correctness.
//
#define CFORCEINLINE FORCEINLINE
//
// STKFORCEINLINE: __forceinline required for correctness due to counting stack
// frames for a stack trace being captured.
//
#define STKFORCEINLINE FORCEINLINE
//
// PFORCEINLINE: __forceinline required for performance.
//
#ifndef PFORCEINLINE
#define PFORCEINLINE FORCEINLINE
#endif
// end_ntoshvp
#ifndef DECLSPEC_DEPRECATED
#if (_MSC_VER >= 1300) && !defined(MIDL_PASS)
#define DECLSPEC_DEPRECATED __declspec(deprecated)
#define DEPRECATE_SUPPORTED
#else
#define DECLSPEC_DEPRECATED
#undef DEPRECATE_SUPPORTED
#endif
#endif
#ifdef DEPRECATE_DDK_FUNCTIONS
#ifdef _NTDDK_
#define DECLSPEC_DEPRECATED_DDK DECLSPEC_DEPRECATED
#ifdef DEPRECATE_SUPPORTED
#define PRAGMA_DEPRECATED_DDK 1
#endif
#else
#define DECLSPEC_DEPRECATED_DDK
#define PRAGMA_DEPRECATED_DDK 1
#endif
#else
#define DECLSPEC_DEPRECATED_DDK
#define PRAGMA_DEPRECATED_DDK 0
#endif
// begin_ntoshvp
//
// Void
//
typedef void *PVOID;
typedef void * POINTER_64 PVOID64;
#if (_MSC_VER >= 800) || defined(_STDCALL_SUPPORTED)
#define NTAPI __stdcall
#else
#define _cdecl
#define __cdecl
#define NTAPI
#endif
#if !defined(_M_CEE_PURE)
#define NTAPI_INLINE NTAPI
#else
#define NTAPI_INLINE
#endif
//
// Define API decoration for direct importing system DLL references.
//
#if !defined(_NTSYSTEM_)
#define NTSYSAPI DECLSPEC_IMPORT
#define NTSYSCALLAPI DECLSPEC_IMPORT
#else
#define NTSYSAPI
#if defined(_NTDLLBUILD_)
#define NTSYSCALLAPI
#else
#define NTSYSCALLAPI DECLSPEC_ADDRSAFE
#endif
#endif
//
// Basics
//
#ifndef VOID
#define VOID void
typedef char CHAR;
typedef short SHORT;
typedef long LONG;
#if !defined(MIDL_PASS)
typedef int INT;
#endif
#endif
//
// UNICODE (Wide Character) types
//
#ifndef _MAC
typedef wchar_t WCHAR; // wc, 16-bit UNICODE character
#else
// some Macintosh compilers don't define wchar_t in a convenient location, or define it as a char
typedef unsigned short WCHAR; // wc, 16-bit UNICODE character
#endif
typedef WCHAR *PWCHAR, *LPWCH, *PWCH;
typedef CONST WCHAR *LPCWCH, *PCWCH;
typedef _Null_terminated_ WCHAR *NWPSTR, *LPWSTR, *PWSTR;
typedef _Null_terminated_ PWSTR *PZPWSTR;
typedef _Null_terminated_ CONST PWSTR *PCZPWSTR;
typedef _Null_terminated_ WCHAR UNALIGNED *LPUWSTR, *PUWSTR;
typedef _Null_terminated_ CONST WCHAR *LPCWSTR, *PCWSTR;
typedef _Null_terminated_ PCWSTR *PZPCWSTR;
typedef _Null_terminated_ CONST PCWSTR *PCZPCWSTR;
typedef _Null_terminated_ CONST WCHAR UNALIGNED *LPCUWSTR, *PCUWSTR;
typedef _NullNull_terminated_ WCHAR *PZZWSTR;
typedef _NullNull_terminated_ CONST WCHAR *PCZZWSTR;
typedef _NullNull_terminated_ WCHAR UNALIGNED *PUZZWSTR;
typedef _NullNull_terminated_ CONST WCHAR UNALIGNED *PCUZZWSTR;
typedef WCHAR *PNZWCH;
typedef CONST WCHAR *PCNZWCH;
typedef WCHAR UNALIGNED *PUNZWCH;
typedef CONST WCHAR UNALIGNED *PCUNZWCH;
#if _WIN32_WINNT >= 0x0600 || (defined(__cplusplus) && defined(WINDOWS_ENABLE_CPLUSPLUS))
typedef CONST WCHAR *LPCWCHAR, *PCWCHAR;
typedef CONST WCHAR UNALIGNED *LPCUWCHAR, *PCUWCHAR;
//
// UCS (Universal Character Set) types
//
typedef unsigned long UCSCHAR;
//
// Even pre-Unicode agreement, UCS values are always in the
// range U+00000000 to U+7FFFFFFF, so we'll pick an obvious
// value.
#define UCSCHAR_INVALID_CHARACTER (0xffffffff)
#define MIN_UCSCHAR (0)
//
// We'll assume here that the ISO-10646 / Unicode agreement
// not to assign code points after U+0010FFFF holds so that
// we do not have to have separate "UCSCHAR" and "UNICODECHAR"
// types.
//
#define MAX_UCSCHAR (0x0010FFFF)
typedef UCSCHAR *PUCSCHAR;
typedef const UCSCHAR *PCUCSCHAR;
typedef UCSCHAR *PUCSSTR;
typedef UCSCHAR UNALIGNED *PUUCSSTR;
typedef const UCSCHAR *PCUCSSTR;
typedef const UCSCHAR UNALIGNED *PCUUCSSTR;
typedef UCSCHAR UNALIGNED *PUUCSCHAR;
typedef const UCSCHAR UNALIGNED *PCUUCSCHAR;
#endif // _WIN32_WINNT >= 0x0600
//
// ANSI (Multi-byte Character) types
//
typedef CHAR *PCHAR, *LPCH, *PCH;
typedef CONST CHAR *LPCCH, *PCCH;
typedef _Null_terminated_ CHAR *NPSTR, *LPSTR, *PSTR;
typedef _Null_terminated_ PSTR *PZPSTR;
typedef _Null_terminated_ CONST PSTR *PCZPSTR;
typedef _Null_terminated_ CONST CHAR *LPCSTR, *PCSTR;
typedef _Null_terminated_ PCSTR *PZPCSTR;
typedef _Null_terminated_ CONST PCSTR *PCZPCSTR;
typedef _NullNull_terminated_ CHAR *PZZSTR;
typedef _NullNull_terminated_ CONST CHAR *PCZZSTR;
typedef CHAR *PNZCH;
typedef CONST CHAR *PCNZCH;
//
// Neutral ANSI/UNICODE types and macros
//
#ifdef UNICODE // r_winnt
#ifndef _TCHAR_DEFINED
typedef WCHAR TCHAR, *PTCHAR;
typedef WCHAR TBYTE , *PTBYTE ;
#define _TCHAR_DEFINED
#endif /* !_TCHAR_DEFINED */
typedef LPWCH LPTCH, PTCH;
typedef LPCWCH LPCTCH, PCTCH;
typedef LPWSTR PTSTR, LPTSTR;
typedef LPCWSTR PCTSTR, LPCTSTR;
typedef LPUWSTR PUTSTR, LPUTSTR;
typedef LPCUWSTR PCUTSTR, LPCUTSTR;
typedef LPWSTR LP;
typedef PZZWSTR PZZTSTR;
typedef PCZZWSTR PCZZTSTR;
typedef PUZZWSTR PUZZTSTR;
typedef PCUZZWSTR PCUZZTSTR;
typedef PZPWSTR PZPTSTR;
typedef PNZWCH PNZTCH;
typedef PCNZWCH PCNZTCH;
typedef PUNZWCH PUNZTCH;
typedef PCUNZWCH PCUNZTCH;
#define __TEXT(quote) L##quote // r_winnt
#else /* UNICODE */ // r_winnt
#ifndef _TCHAR_DEFINED
typedef char TCHAR, *PTCHAR;
typedef unsigned char TBYTE , *PTBYTE ;
#define _TCHAR_DEFINED
#endif /* !_TCHAR_DEFINED */
typedef LPCH LPTCH, PTCH;
typedef LPCCH LPCTCH, PCTCH;
typedef LPSTR PTSTR, LPTSTR, PUTSTR, LPUTSTR;
typedef LPCSTR PCTSTR, LPCTSTR, PCUTSTR, LPCUTSTR;
typedef PZZSTR PZZTSTR, PUZZTSTR;
typedef PCZZSTR PCZZTSTR, PCUZZTSTR;
typedef PZPSTR PZPTSTR;
typedef PNZCH PNZTCH, PUNZTCH;
typedef PCNZCH PCNZTCH, PCUNZTCH;
#define __TEXT(quote) quote // r_winnt
#endif /* UNICODE */ // r_winnt
#define TEXT(quote) __TEXT(quote) // r_winnt
typedef SHORT *PSHORT;
typedef LONG *PLONG;
#define ALL_PROCESSOR_GROUPS 0xffff
//
// Structure to represent a system wide processor number. It contains a
// group number and relative processor number within the group.
//
typedef struct _PROCESSOR_NUMBER {
WORD Group;
BYTE Number;
BYTE Reserved;
} PROCESSOR_NUMBER, *PPROCESSOR_NUMBER;
//
// Structure to represent a group-specific affinity, such as that of a
// thread. Specifies the group number and the affinity within that group.
//
typedef struct _GROUP_AFFINITY {
KAFFINITY Mask;
WORD Group;
WORD Reserved[3];
} GROUP_AFFINITY, *PGROUP_AFFINITY;
#if defined(_WIN64)
#define MAXIMUM_PROC_PER_GROUP 64
#else
#define MAXIMUM_PROC_PER_GROUP 32
#endif
#define MAXIMUM_PROCESSORS MAXIMUM_PROC_PER_GROUP
// begin_ntoshvp
//
// Handle to an Object
//
#ifdef STRICT
typedef void *HANDLE;
#if 0 && (_MSC_VER > 1000)
#define DECLARE_HANDLE(name) struct name##__; typedef struct name##__ *name
#else
#define DECLARE_HANDLE(name) struct name##__{int unused;}; typedef struct name##__ *name
#endif
#else
typedef PVOID HANDLE;
#define DECLARE_HANDLE(name) typedef HANDLE name
#endif
typedef HANDLE *PHANDLE;
// end_ntoshvp
//
// Flag (bit) fields
//
typedef BYTE FCHAR;
typedef WORD FSHORT;
typedef DWORD FLONG;
// begin_ntoshvp
// Component Object Model defines, and macros
#ifndef _HRESULT_DEFINED
#define _HRESULT_DEFINED
#ifdef __midl
typedef LONG HRESULT;
#else
typedef _Return_type_success_(return >= 0) long HRESULT;
#endif // __midl
#endif // !_HRESULT_DEFINED
// end_ntoshvp
#ifdef __cplusplus
#define EXTERN_C extern "C"
#define EXTERN_C_START extern "C" {
#define EXTERN_C_END }
#else
#define EXTERN_C extern
#define EXTERN_C_START
#define EXTERN_C_END
#endif
#if defined(_WIN32) || defined(_MPPC_)
// Win32 doesn't support __export
#ifdef _68K_
#define STDMETHODCALLTYPE __cdecl
#else
#define STDMETHODCALLTYPE __stdcall
#endif
#define STDMETHODVCALLTYPE __cdecl
#define STDAPICALLTYPE __stdcall
#define STDAPIVCALLTYPE __cdecl
#else
#define STDMETHODCALLTYPE __export __stdcall
#define STDMETHODVCALLTYPE __export __cdecl
#define STDAPICALLTYPE __export __stdcall
#define STDAPIVCALLTYPE __export __cdecl
#endif
#define STDAPI EXTERN_C HRESULT STDAPICALLTYPE
#define STDAPI_(type) EXTERN_C type STDAPICALLTYPE
#define STDMETHODIMP HRESULT STDMETHODCALLTYPE
#define STDMETHODIMP_(type) type STDMETHODCALLTYPE
#define STDOVERRIDEMETHODIMP __override STDMETHODIMP
#define STDOVERRIDEMETHODIMP_(type) __override STDMETHODIMP_(type)
#define IFACEMETHODIMP __override STDMETHODIMP
#define IFACEMETHODIMP_(type) __override STDMETHODIMP_(type)
// The 'V' versions allow Variable Argument lists.
#define STDAPIV EXTERN_C HRESULT STDAPIVCALLTYPE
#define STDAPIV_(type) EXTERN_C type STDAPIVCALLTYPE
#define STDMETHODIMPV HRESULT STDMETHODVCALLTYPE
#define STDMETHODIMPV_(type) type STDMETHODVCALLTYPE
#define STDOVERRIDEMETHODIMPV __override STDMETHODIMPV
#define STDOVERRIDEMETHODIMPV_(type) __override STDMETHODIMPV_(type)
#define IFACEMETHODIMPV __override STDMETHODIMPV
#define IFACEMETHODIMPV_(type) __override STDMETHODIMPV_(type)
typedef char CCHAR;
typedef DWORD LCID;
typedef PDWORD PLCID;
typedef WORD LANGID;
#ifndef __COMPARTMENT_ID_DEFINED__
#define __COMPARTMENT_ID_DEFINED__
//
// Compartment identifier
//
typedef enum {
UNSPECIFIED_COMPARTMENT_ID = 0,
DEFAULT_COMPARTMENT_ID
} COMPARTMENT_ID, *PCOMPARTMENT_ID;
#endif // __COMPARTMENT_ID_DEFINED__
#define APPLICATION_ERROR_MASK 0x20000000
#define ERROR_SEVERITY_SUCCESS 0x00000000
#define ERROR_SEVERITY_INFORMATIONAL 0x40000000
#define ERROR_SEVERITY_WARNING 0x80000000
#define ERROR_SEVERITY_ERROR 0xC0000000
// begin_ntoshvp
//
// _M_IX86 included so that EM CONTEXT structure compiles with
// x86 programs. *** TBD should this be for all architectures?
//
//
// 16 byte aligned type for 128 bit floats
//
//
// For we define a 128 bit structure and use __declspec(align(16)) pragma to
// align to 128 bits.
//
#if defined(_M_IA64) && !defined(MIDL_PASS)
__declspec(align(16))
#endif
typedef struct _FLOAT128 {
__int64 LowPart;
__int64 HighPart;
} FLOAT128;
typedef FLOAT128 *PFLOAT128;
//
// __int64 is only supported by 2.0 and later midl.
// __midl is set by the 2.0 midl and not by 1.0 midl.
//
#define _ULONGLONG_
#if (!defined (_MAC) && (!defined(MIDL_PASS) || defined(__midl)) && (!defined(_M_IX86) || (defined(_INTEGRAL_MAX_BITS) && _INTEGRAL_MAX_BITS >= 64)))
typedef __int64 LONGLONG;
typedef unsigned __int64 ULONGLONG;
#define MAXLONGLONG (0x7fffffffffffffff)
#else
#if defined(_MAC) && defined(_MAC_INT_64)
typedef __int64 LONGLONG;
typedef unsigned __int64 ULONGLONG;
#define MAXLONGLONG (0x7fffffffffffffff)
#else
typedef double LONGLONG;
typedef double ULONGLONG;
#endif //_MAC and int64
#endif
typedef LONGLONG *PLONGLONG;
typedef ULONGLONG *PULONGLONG;
// Update Sequence Number
typedef LONGLONG USN;
#if defined(MIDL_PASS)
typedef struct _LARGE_INTEGER {
#else // MIDL_PASS
typedef union _LARGE_INTEGER {
struct {
DWORD LowPart;
LONG HighPart;
} DUMMYSTRUCTNAME;
struct {
DWORD LowPart;
LONG HighPart;
} u;
#endif //MIDL_PASS
LONGLONG QuadPart;
} LARGE_INTEGER;
typedef LARGE_INTEGER *PLARGE_INTEGER;
#if defined(MIDL_PASS)
typedef struct _ULARGE_INTEGER {
#else // MIDL_PASS
typedef union _ULARGE_INTEGER {
struct {
DWORD LowPart;
DWORD HighPart;
} DUMMYSTRUCTNAME;
struct {
DWORD LowPart;
DWORD HighPart;
} u;
#endif //MIDL_PASS
ULONGLONG QuadPart;
} ULARGE_INTEGER;
typedef ULARGE_INTEGER *PULARGE_INTEGER;
//
// Reference count.
//
typedef LONG_PTR RTL_REFERENCE_COUNT, *PRTL_REFERENCE_COUNT;
// end_ntminiport end_ntndis end_ntminitape
// end_ntoshvp
//
// Locally Unique Identifier
//
typedef struct _LUID {
DWORD LowPart;
LONG HighPart;
} LUID, *PLUID;
#define _DWORDLONG_
typedef ULONGLONG DWORDLONG;
typedef DWORDLONG *PDWORDLONG;
//
// Define operations to logically shift an int64 by 0..31 bits and to multiply
// 32-bits by 32-bits to form a 64-bit product.
//
#if defined(MIDL_PASS) || defined(RC_INVOKED) || defined(_M_CEE_PURE) \
|| defined(_68K_) || defined(_MPPC_) \
|| defined(_M_IA64) || defined(_M_AMD64) || defined(_M_ARM) || defined(_M_ARM64)
//
// Midl does not understand inline assembler. Therefore, the Rtl functions
// are used for shifts by 0..31 and multiplies of 32-bits times 32-bits to
// form a 64-bit product.
//
//
// IA64 and AMD64 have native 64-bit operations that are just as fast as their
// 32-bit counter parts. Therefore, the int64 data type is used directly to form
// shifts of 0..31 and multiplies of 32-bits times 32-bits to form a 64-bit
// product.
//
#define Int32x32To64(a, b) (((__int64)((long)(a))) * ((__int64)((long)(b))))
#define UInt32x32To64(a, b) (((unsigned __int64)((unsigned int)(a))) * ((unsigned __int64)((unsigned int)(b))))
#define Int64ShllMod32(a, b) (((unsigned __int64)(a)) << (b))
#define Int64ShraMod32(a, b) (((__int64)(a)) >> (b))
#define Int64ShrlMod32(a, b) (((unsigned __int64)(a)) >> (b))
#elif defined(_M_IX86)
//
// The x86 C compiler understands inline assembler. Therefore, inline functions
// that employ inline assembler are used for shifts of 0..31. The multiplies
// rely on the compiler recognizing the cast of the multiplicand to int64 to
// generate the optimal code inline.
//
#define Int32x32To64(a, b) ((__int64)(((__int64)((long)(a))) * ((long)(b))))
#define UInt32x32To64(a, b) ((unsigned __int64)(((unsigned __int64)((unsigned int)(a))) * ((unsigned int)(b))))
ULONGLONG
NTAPI
Int64ShllMod32 (
_In_ ULONGLONG Value,
_In_ DWORD ShiftCount
);
LONGLONG
NTAPI
Int64ShraMod32 (
_In_ LONGLONG Value,
_In_ DWORD ShiftCount
);
ULONGLONG
NTAPI
Int64ShrlMod32 (
_In_ ULONGLONG Value,
_In_ DWORD ShiftCount
);
#if _MSC_VER >= 1200
#pragma warning(push)
#endif
#pragma warning(disable:4035 4793) // re-enable below
__inline ULONGLONG
NTAPI
Int64ShllMod32 (
_In_ ULONGLONG Value,
_In_ DWORD ShiftCount
)
{
__asm {
mov ecx, ShiftCount
mov eax, dword ptr [Value]
mov edx, dword ptr [Value+4]
shld edx, eax, cl
shl eax, cl
}
}
__inline LONGLONG
NTAPI
Int64ShraMod32 (
_In_ LONGLONG Value,
_In_ DWORD ShiftCount
)
{
__asm {
mov ecx, ShiftCount
mov eax, dword ptr [Value]
mov edx, dword ptr [Value+4]
shrd eax, edx, cl
sar edx, cl
}
}
__inline ULONGLONG
NTAPI
Int64ShrlMod32 (
_In_ ULONGLONG Value,
_In_ DWORD ShiftCount
)
{
__asm {
mov ecx, ShiftCount
mov eax, dword ptr [Value]
mov edx, dword ptr [Value+4]
shrd eax, edx, cl
shr edx, cl
}
}
#if _MSC_VER >= 1200
#pragma warning(pop)
#else
#pragma warning(default:4035 4793)
#endif
#else
#error Must define a target architecture.
#endif
//
// Define rotate intrinsics.
//
#ifdef __cplusplus
extern "C" {
#endif
#if defined(_M_AMD64)
#define RotateLeft8 _rotl8
#define RotateLeft16 _rotl16
#define RotateRight8 _rotr8
#define RotateRight16 _rotr16
unsigned char
__cdecl
_rotl8 (
_In_ unsigned char Value,
_In_ unsigned char Shift
);
unsigned short
__cdecl
_rotl16 (
_In_ unsigned short Value,
_In_ unsigned char Shift
);
unsigned char
__cdecl
_rotr8 (
_In_ unsigned char Value,
_In_ unsigned char Shift
);
unsigned short
__cdecl
_rotr16 (
_In_ unsigned short Value,
_In_ unsigned char Shift
);
#pragma intrinsic(_rotl8)
#pragma intrinsic(_rotl16)
#pragma intrinsic(_rotr8)
#pragma intrinsic(_rotr16)
#endif /* _M_AMD64 */
#if _MSC_VER >= 1300
#define RotateLeft32 _rotl
#define RotateLeft64 _rotl64
#define RotateRight32 _rotr
#define RotateRight64 _rotr64
unsigned int
__cdecl
_rotl (
_In_ unsigned int Value,
_In_ int Shift
);
unsigned __int64
__cdecl
_rotl64 (
_In_ unsigned __int64 Value,
_In_ int Shift
);
unsigned int
__cdecl
_rotr (
_In_ unsigned int Value,
_In_ int Shift
);
unsigned __int64
__cdecl
_rotr64 (
_In_ unsigned __int64 Value,
_In_ int Shift
);
#pragma intrinsic(_rotl)
#pragma intrinsic(_rotl64)
#pragma intrinsic(_rotr)
#pragma intrinsic(_rotr64)
#endif /* _MSC_VER >= 1300 */
#ifdef __cplusplus
}
#endif
#define ANSI_NULL ((CHAR)0)
#define UNICODE_NULL ((WCHAR)0)
#define UNICODE_STRING_MAX_BYTES ((WORD ) 65534)
#define UNICODE_STRING_MAX_CHARS (32767)
typedef BYTE BOOLEAN;
typedef BOOLEAN *PBOOLEAN;
//
// Doubly linked list structure. Can be used as either a list head, or
// as link words.
//
typedef struct _LIST_ENTRY {
struct _LIST_ENTRY *Flink;
struct _LIST_ENTRY *Blink;
} LIST_ENTRY, *PLIST_ENTRY, *RESTRICTED_POINTER PRLIST_ENTRY;
//
// Singly linked list structure. Can be used as either a list head, or
// as link words.
//
typedef struct _SINGLE_LIST_ENTRY {
struct _SINGLE_LIST_ENTRY *Next;
} SINGLE_LIST_ENTRY, *PSINGLE_LIST_ENTRY;
// end_ntoshvp
// begin_ntoshvp
//
// These are needed for portable debugger support.
//
typedef struct LIST_ENTRY32 {
DWORD Flink;
DWORD Blink;
} LIST_ENTRY32;
typedef LIST_ENTRY32 *PLIST_ENTRY32;
typedef struct LIST_ENTRY64 {
ULONGLONG Flink;
ULONGLONG Blink;
} LIST_ENTRY64;
typedef LIST_ENTRY64 *PLIST_ENTRY64;
#include <guiddef.h>
#ifndef __OBJECTID_DEFINED
#define __OBJECTID_DEFINED
typedef struct _OBJECTID { // size is 20
GUID Lineage;
DWORD Uniquifier;
} OBJECTID;
#endif // !_OBJECTID_DEFINED
#define MINCHAR 0x80
#define MAXCHAR 0x7f
#define MINSHORT 0x8000
#define MAXSHORT 0x7fff
#define MINLONG 0x80000000
#define MAXLONG 0x7fffffff
#define MAXBYTE 0xff
#define MAXWORD 0xffff
#define MAXDWORD 0xffffffff
// begin_ntoshvp
//
// Calculate the byte offset of a field in a structure of type type.
//
#define FIELD_OFFSET(type, field) ((LONG)(LONG_PTR)&(((type *)0)->field))
#define UFIELD_OFFSET(type, field) ((DWORD)(LONG_PTR)&(((type *)0)->field))
//
// Calculate the size of a field in a structure of type type, without
// knowing or stating the type of the field.
//
#define RTL_FIELD_SIZE(type, field) (sizeof(((type *)0)->field))
//
// Calculate the size of a structure of type type up through and
// including a field.
//
#define RTL_SIZEOF_THROUGH_FIELD(type, field) \
(FIELD_OFFSET(type, field) + RTL_FIELD_SIZE(type, field))
// end_ntoshvp
//
// RTL_CONTAINS_FIELD usage:
//
// if (RTL_CONTAINS_FIELD(pBlock, pBlock->cbSize, dwMumble)) { // safe to use pBlock->dwMumble
//
#define RTL_CONTAINS_FIELD(Struct, Size, Field) \
( (((PCHAR)(&(Struct)->Field)) + sizeof((Struct)->Field)) <= (((PCHAR)(Struct))+(Size)) )
//
// Return the number of elements in a statically sized array.
// DWORD Buffer[100];
// RTL_NUMBER_OF(Buffer) == 100
// This is also popularly known as: NUMBER_OF, ARRSIZE, _countof, NELEM, etc.
//
#define RTL_NUMBER_OF_V1(A) (sizeof(A)/sizeof((A)[0]))
#if defined(__cplusplus) && \
!defined(MIDL_PASS) && \
!defined(RC_INVOKED) && \
!defined(_PREFAST_) && \
(_MSC_FULL_VER >= 13009466) && \
!defined(SORTPP_PASS)
//
// RtlpNumberOf is a function that takes a reference to an array of N Ts.
//
// typedef T array_of_T[N];
// typedef array_of_T &reference_to_array_of_T;
//
// RtlpNumberOf returns a pointer to an array of N chars.
// We could return a reference instead of a pointer but older compilers do not accept that.
//
// typedef char array_of_char[N];
// typedef array_of_char *pointer_to_array_of_char;
//
// sizeof(array_of_char) == N
// sizeof(*pointer_to_array_of_char) == N
//
// pointer_to_array_of_char RtlpNumberOf(reference_to_array_of_T);
//
// We never even call RtlpNumberOf, we just take the size of dereferencing its return type.
// We do not even implement RtlpNumberOf, we just decare it.
//
// Attempts to pass pointers instead of arrays to this macro result in compile time errors.
// That is the point.
//
// end_ntndis end_ntminiport
#pragma region Application Family or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM)
// begin_ntndis begin_ntminiport
extern "C++" // templates cannot be declared to have 'C' linkage
template <typename T, size_t N>
char (*RtlpNumberOf( UNALIGNED T (&)[N] ))[N];
// end_ntndis end_ntminiport
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
// begin_ntndis begin_ntminiport
#define RTL_NUMBER_OF_V2(A) (sizeof(*RtlpNumberOf(A)))
//
// This does not work with:
//
// void Foo()
// {
// struct { int x; } y[2];
// RTL_NUMBER_OF_V2(y); // illegal use of anonymous local type in template instantiation
// }
//
// You must instead do:
//
// struct Foo1 { int x; };
//
// void Foo()
// {
// Foo1 y[2];
// RTL_NUMBER_OF_V2(y); // ok
// }
//
// OR
//
// void Foo()
// {
// struct { int x; } y[2];
// RTL_NUMBER_OF_V1(y); // ok
// }
//
// OR
//
// void Foo()
// {
// struct { int x; } y[2];
// _ARRAYSIZE(y); // ok
// }
//
#else
#define RTL_NUMBER_OF_V2(A) RTL_NUMBER_OF_V1(A)
#endif
#ifdef ENABLE_RTL_NUMBER_OF_V2
#define RTL_NUMBER_OF(A) RTL_NUMBER_OF_V2(A)
#else
#define RTL_NUMBER_OF(A) RTL_NUMBER_OF_V1(A)
#endif
//
// ARRAYSIZE is more readable version of RTL_NUMBER_OF_V2, and uses
// it regardless of ENABLE_RTL_NUMBER_OF_V2
//
// _ARRAYSIZE is a version useful for anonymous types
//
#define ARRAYSIZE(A) RTL_NUMBER_OF_V2(A)
#define _ARRAYSIZE(A) RTL_NUMBER_OF_V1(A)
//
// An expression that yields the type of a field in a struct.
//
#define RTL_FIELD_TYPE(type, field) (((type*)0)->field)
// RTL_ to avoid collisions in the global namespace.
//
// Given typedef struct _FOO { BYTE Bar[123]; } FOO;
// RTL_NUMBER_OF_FIELD(FOO, Bar) == 123
//
#define RTL_NUMBER_OF_FIELD(type, field) (RTL_NUMBER_OF(RTL_FIELD_TYPE(type, field)))
//
// eg:
// typedef struct FOO {
// DWORD Integer;
// PVOID Pointer;
// } FOO;
//
// RTL_PADDING_BETWEEN_FIELDS(FOO, Integer, Pointer) == 0 for Win32, 4 for Win64
//
#define RTL_PADDING_BETWEEN_FIELDS(T, F1, F2) \
((FIELD_OFFSET(T, F2) > FIELD_OFFSET(T, F1)) \
? (FIELD_OFFSET(T, F2) - FIELD_OFFSET(T, F1) - RTL_FIELD_SIZE(T, F1)) \
: (FIELD_OFFSET(T, F1) - FIELD_OFFSET(T, F2) - RTL_FIELD_SIZE(T, F2)))
// RTL_ to avoid collisions in the global namespace.
#if defined(__cplusplus)
#define RTL_CONST_CAST(type) const_cast<type>
#else
#define RTL_CONST_CAST(type) (type)
#endif
// like sizeof
// usually this would be * CHAR_BIT, but we don't necessarily have #include <limits.h>
#define RTL_BITS_OF(sizeOfArg) (sizeof(sizeOfArg) * 8)
#define RTL_BITS_OF_FIELD(type, field) (RTL_BITS_OF(RTL_FIELD_TYPE(type, field)))
// begin_ntoshvp
//
// Calculate the address of the base of the structure given its type, and an
// address of a field within the structure.
//
#define CONTAINING_RECORD(address, type, field) ((type *)( \
(PCHAR)(address) - \
(ULONG_PTR)(&((type *)0)->field)))
// end_ntoshvp
// end_ntminiport end_ntndis
//
// Exception handler routine definition.
//
#include <excpt.h>
typedef
_IRQL_requires_same_
_Function_class_(EXCEPTION_ROUTINE)
EXCEPTION_DISPOSITION
NTAPI
EXCEPTION_ROUTINE (
_Inout_ struct _EXCEPTION_RECORD *ExceptionRecord,
_In_ PVOID EstablisherFrame,
_Inout_ struct _CONTEXT *ContextRecord,
_In_ PVOID DispatcherContext
);
typedef EXCEPTION_ROUTINE *PEXCEPTION_ROUTINE;
#define VER_SERVER_NT 0x80000000
#define VER_WORKSTATION_NT 0x40000000
#define VER_SUITE_SMALLBUSINESS 0x00000001
#define VER_SUITE_ENTERPRISE 0x00000002
#define VER_SUITE_BACKOFFICE 0x00000004
#define VER_SUITE_COMMUNICATIONS 0x00000008
#define VER_SUITE_TERMINAL 0x00000010
#define VER_SUITE_SMALLBUSINESS_RESTRICTED 0x00000020
#define VER_SUITE_EMBEDDEDNT 0x00000040
#define VER_SUITE_DATACENTER 0x00000080
#define VER_SUITE_SINGLEUSERTS 0x00000100
#define VER_SUITE_PERSONAL 0x00000200
#define VER_SUITE_BLADE 0x00000400
#define VER_SUITE_EMBEDDED_RESTRICTED 0x00000800
#define VER_SUITE_SECURITY_APPLIANCE 0x00001000
#define VER_SUITE_STORAGE_SERVER 0x00002000
#define VER_SUITE_COMPUTE_SERVER 0x00004000
#define VER_SUITE_WH_SERVER 0x00008000
//
// Product types
// This list grows with each OS release.
//
// There is no ordering of values to ensure callers
// do an equality test i.e. greater-than and less-than
// comparisons are not useful.
//
// NOTE: Values in this list should never be deleted.
// When a product-type 'X' gets dropped from a
// OS release onwards, the value of 'X' continues
// to be used in the mapping table of GetProductInfo.
//
#define PRODUCT_UNDEFINED 0x00000000
#define PRODUCT_ULTIMATE 0x00000001
#define PRODUCT_HOME_BASIC 0x00000002
#define PRODUCT_HOME_PREMIUM 0x00000003
#define PRODUCT_ENTERPRISE 0x00000004
#define PRODUCT_HOME_BASIC_N 0x00000005
#define PRODUCT_BUSINESS 0x00000006
#define PRODUCT_STANDARD_SERVER 0x00000007
#define PRODUCT_DATACENTER_SERVER 0x00000008
#define PRODUCT_SMALLBUSINESS_SERVER 0x00000009
#define PRODUCT_ENTERPRISE_SERVER 0x0000000A
#define PRODUCT_STARTER 0x0000000B
#define PRODUCT_DATACENTER_SERVER_CORE 0x0000000C
#define PRODUCT_STANDARD_SERVER_CORE 0x0000000D
#define PRODUCT_ENTERPRISE_SERVER_CORE 0x0000000E
#define PRODUCT_ENTERPRISE_SERVER_IA64 0x0000000F
#define PRODUCT_BUSINESS_N 0x00000010
#define PRODUCT_WEB_SERVER 0x00000011
#define PRODUCT_CLUSTER_SERVER 0x00000012
#define PRODUCT_HOME_SERVER 0x00000013
#define PRODUCT_STORAGE_EXPRESS_SERVER 0x00000014
#define PRODUCT_STORAGE_STANDARD_SERVER 0x00000015
#define PRODUCT_STORAGE_WORKGROUP_SERVER 0x00000016
#define PRODUCT_STORAGE_ENTERPRISE_SERVER 0x00000017
#define PRODUCT_SERVER_FOR_SMALLBUSINESS 0x00000018
#define PRODUCT_SMALLBUSINESS_SERVER_PREMIUM 0x00000019
#define PRODUCT_HOME_PREMIUM_N 0x0000001A
#define PRODUCT_ENTERPRISE_N 0x0000001B
#define PRODUCT_ULTIMATE_N 0x0000001C
#define PRODUCT_WEB_SERVER_CORE 0x0000001D
#define PRODUCT_MEDIUMBUSINESS_SERVER_MANAGEMENT 0x0000001E
#define PRODUCT_MEDIUMBUSINESS_SERVER_SECURITY 0x0000001F
#define PRODUCT_MEDIUMBUSINESS_SERVER_MESSAGING 0x00000020
#define PRODUCT_SERVER_FOUNDATION 0x00000021
#define PRODUCT_HOME_PREMIUM_SERVER 0x00000022
#define PRODUCT_SERVER_FOR_SMALLBUSINESS_V 0x00000023
#define PRODUCT_STANDARD_SERVER_V 0x00000024
#define PRODUCT_DATACENTER_SERVER_V 0x00000025
#define PRODUCT_ENTERPRISE_SERVER_V 0x00000026
#define PRODUCT_DATACENTER_SERVER_CORE_V 0x00000027
#define PRODUCT_STANDARD_SERVER_CORE_V 0x00000028
#define PRODUCT_ENTERPRISE_SERVER_CORE_V 0x00000029
#define PRODUCT_HYPERV 0x0000002A
#define PRODUCT_STORAGE_EXPRESS_SERVER_CORE 0x0000002B
#define PRODUCT_STORAGE_STANDARD_SERVER_CORE 0x0000002C
#define PRODUCT_STORAGE_WORKGROUP_SERVER_CORE 0x0000002D
#define PRODUCT_STORAGE_ENTERPRISE_SERVER_CORE 0x0000002E
#define PRODUCT_STARTER_N 0x0000002F
#define PRODUCT_PROFESSIONAL 0x00000030
#define PRODUCT_PROFESSIONAL_N 0x00000031
#define PRODUCT_SB_SOLUTION_SERVER 0x00000032
#define PRODUCT_SERVER_FOR_SB_SOLUTIONS 0x00000033
#define PRODUCT_STANDARD_SERVER_SOLUTIONS 0x00000034
#define PRODUCT_STANDARD_SERVER_SOLUTIONS_CORE 0x00000035
#define PRODUCT_SB_SOLUTION_SERVER_EM 0x00000036
#define PRODUCT_SERVER_FOR_SB_SOLUTIONS_EM 0x00000037
#define PRODUCT_SOLUTION_EMBEDDEDSERVER 0x00000038
#define PRODUCT_SOLUTION_EMBEDDEDSERVER_CORE 0x00000039
#define PRODUCT_PROFESSIONAL_EMBEDDED 0x0000003A
#define PRODUCT_ESSENTIALBUSINESS_SERVER_MGMT 0x0000003B
#define PRODUCT_ESSENTIALBUSINESS_SERVER_ADDL 0x0000003C
#define PRODUCT_ESSENTIALBUSINESS_SERVER_MGMTSVC 0x0000003D
#define PRODUCT_ESSENTIALBUSINESS_SERVER_ADDLSVC 0x0000003E
#define PRODUCT_SMALLBUSINESS_SERVER_PREMIUM_CORE 0x0000003F
#define PRODUCT_CLUSTER_SERVER_V 0x00000040
#define PRODUCT_EMBEDDED 0x00000041
#define PRODUCT_STARTER_E 0x00000042
#define PRODUCT_HOME_BASIC_E 0x00000043
#define PRODUCT_HOME_PREMIUM_E 0x00000044
#define PRODUCT_PROFESSIONAL_E 0x00000045
#define PRODUCT_ENTERPRISE_E 0x00000046
#define PRODUCT_ULTIMATE_E 0x00000047
#define PRODUCT_ENTERPRISE_EVALUATION 0x00000048
#define PRODUCT_MULTIPOINT_STANDARD_SERVER 0x0000004C
#define PRODUCT_MULTIPOINT_PREMIUM_SERVER 0x0000004D
#define PRODUCT_STANDARD_EVALUATION_SERVER 0x0000004F
#define PRODUCT_DATACENTER_EVALUATION_SERVER 0x00000050
#define PRODUCT_ENTERPRISE_N_EVALUATION 0x00000054
#define PRODUCT_EMBEDDED_AUTOMOTIVE 0x00000055
#define PRODUCT_EMBEDDED_INDUSTRY_A 0x00000056
#define PRODUCT_THINPC 0x00000057
#define PRODUCT_EMBEDDED_A 0x00000058
#define PRODUCT_EMBEDDED_INDUSTRY 0x00000059
#define PRODUCT_EMBEDDED_E 0x0000005A
#define PRODUCT_EMBEDDED_INDUSTRY_E 0x0000005B
#define PRODUCT_EMBEDDED_INDUSTRY_A_E 0x0000005C
#define PRODUCT_STORAGE_WORKGROUP_EVALUATION_SERVER 0x0000005F
#define PRODUCT_STORAGE_STANDARD_EVALUATION_SERVER 0x00000060
#define PRODUCT_CORE_ARM 0x00000061
#define PRODUCT_CORE_N 0x00000062
#define PRODUCT_CORE_COUNTRYSPECIFIC 0x00000063
#define PRODUCT_CORE_SINGLELANGUAGE 0x00000064
#define PRODUCT_CORE 0x00000065
#define PRODUCT_PROFESSIONAL_WMC 0x00000067
#define PRODUCT_MOBILE_CORE 0x00000068
#define PRODUCT_EMBEDDED_INDUSTRY_EVAL 0x00000069
#define PRODUCT_EMBEDDED_INDUSTRY_E_EVAL 0x0000006A
#define PRODUCT_EMBEDDED_EVAL 0x0000006B
#define PRODUCT_EMBEDDED_E_EVAL 0x0000006C
#define PRODUCT_NANO_SERVER 0x0000006D
#define PRODUCT_CLOUD_STORAGE_SERVER 0x0000006E
#define PRODUCT_CORE_CONNECTED 0x0000006F
#define PRODUCT_PROFESSIONAL_STUDENT 0x00000070
#define PRODUCT_CORE_CONNECTED_N 0x00000071
#define PRODUCT_PROFESSIONAL_STUDENT_N 0x00000072
#define PRODUCT_CORE_CONNECTED_SINGLELANGUAGE 0x00000073
#define PRODUCT_CORE_CONNECTED_COUNTRYSPECIFIC 0x00000074
#define PRODUCT_CONNECTED_CAR 0x00000075
#define PRODUCT_INDUSTRY_HANDHELD 0x00000076
#define PRODUCT_PPI_PRO 0x00000077
#define PRODUCT_ARM64_SERVER 0x00000078
#define PRODUCT_EDUCATION 0x00000079
#define PRODUCT_EDUCATION_N 0x0000007A
#define PRODUCT_IOTUAP 0x0000007B
#define PRODUCT_CLOUD_HOST_INFRASTRUCTURE_SERVER 0x0000007C
#define PRODUCT_ENTERPRISE_S 0x0000007D
#define PRODUCT_ENTERPRISE_S_N 0x0000007E
#define PRODUCT_PROFESSIONAL_S 0x0000007F
#define PRODUCT_PROFESSIONAL_S_N 0x00000080
#define PRODUCT_ENTERPRISE_S_EVALUATION 0x00000081
#define PRODUCT_ENTERPRISE_S_N_EVALUATION 0x00000082
#define PRODUCT_HOLOGRAPHIC 0x00000087
#define PRODUCT_PRO_SINGLE_LANGUAGE 0x0000008A
#define PRODUCT_PRO_CHINA 0x0000008B
#define PRODUCT_ENTERPRISE_SUBSCRIPTION 0x0000008C
#define PRODUCT_ENTERPRISE_SUBSCRIPTION_N 0x0000008D
#define PRODUCT_DATACENTER_NANO_SERVER 0x0000008F
#define PRODUCT_STANDARD_NANO_SERVER 0x00000090
#define PRODUCT_DATACENTER_A_SERVER_CORE 0x00000091
#define PRODUCT_STANDARD_A_SERVER_CORE 0x00000092
#define PRODUCT_DATACENTER_WS_SERVER_CORE 0x00000093
#define PRODUCT_STANDARD_WS_SERVER_CORE 0x00000094
#define PRODUCT_UTILITY_VM 0x00000095
#define PRODUCT_DATACENTER_EVALUATION_SERVER_CORE 0x0000009F
#define PRODUCT_STANDARD_EVALUATION_SERVER_CORE 0x000000A0
#define PRODUCT_PRO_WORKSTATION 0x000000A1
#define PRODUCT_PRO_WORKSTATION_N 0x000000A2
#define PRODUCT_PRO_FOR_EDUCATION 0x000000A4
#define PRODUCT_PRO_FOR_EDUCATION_N 0x000000A5
#define PRODUCT_AZURE_SERVER_CORE 0x000000A8
#define PRODUCT_AZURE_NANO_SERVER 0x000000A9
#define PRODUCT_UNLICENSED 0xABCDABCD
#include <sdkddkver.h>
//
// Language IDs.
//
// Note that the named locale APIs (eg GetLocaleInfoEx) are preferred.
//
// Not all locales have unique Language IDs
//
// The following two combinations of primary language ID and
// sublanguage ID have special semantics:
//
// Primary Language ID Sublanguage ID Result
// ------------------- --------------- ------------------------
// LANG_NEUTRAL SUBLANG_NEUTRAL Language neutral
// LANG_NEUTRAL SUBLANG_DEFAULT User default language
// LANG_NEUTRAL SUBLANG_SYS_DEFAULT System default language
// LANG_INVARIANT SUBLANG_NEUTRAL Invariant locale
//
// It is recommended that applications test for locale names instead of
// Language IDs / LCIDs.
//
// Primary language IDs.
//
// WARNING: These aren't always unique. Bosnian, Serbian & Croation for example.
//
// It is recommended that applications test for locale names or actual LCIDs.
//
// Note that the LANG, SUBLANG construction is not always consistent.
// The named locale APIs (eg GetLocaleInfoEx) are recommended.
//
#define LANG_NEUTRAL 0x00
#define LANG_INVARIANT 0x7f
#define LANG_AFRIKAANS 0x36
#define LANG_ALBANIAN 0x1c
#define LANG_ALSATIAN 0x84
#define LANG_AMHARIC 0x5e
#define LANG_ARABIC 0x01
#define LANG_ARMENIAN 0x2b
#define LANG_ASSAMESE 0x4d
#define LANG_AZERI 0x2c // for Azerbaijani, LANG_AZERBAIJANI is preferred
#define LANG_AZERBAIJANI 0x2c
#define LANG_BANGLA 0x45
#define LANG_BASHKIR 0x6d
#define LANG_BASQUE 0x2d
#define LANG_BELARUSIAN 0x23
#define LANG_BENGALI 0x45 // Some prefer to use LANG_BANGLA
#define LANG_BRETON 0x7e
#define LANG_BOSNIAN 0x1a // Use with SUBLANG_BOSNIAN_* Sublanguage IDs
#define LANG_BOSNIAN_NEUTRAL 0x781a // Use with the ConvertDefaultLocale function
#define LANG_BULGARIAN 0x02
#define LANG_CATALAN 0x03
#define LANG_CENTRAL_KURDISH 0x92
#define LANG_CHEROKEE 0x5c
#define LANG_CHINESE 0x04 // Use with SUBLANG_CHINESE_* Sublanguage IDs
#define LANG_CHINESE_SIMPLIFIED 0x04 // Use with the ConvertDefaultLocale function
#define LANG_CHINESE_TRADITIONAL 0x7c04 // Use with the ConvertDefaultLocale function
#define LANG_CORSICAN 0x83
#define LANG_CROATIAN 0x1a
#define LANG_CZECH 0x05
#define LANG_DANISH 0x06
#define LANG_DARI 0x8c
#define LANG_DIVEHI 0x65
#define LANG_DUTCH 0x13
#define LANG_ENGLISH 0x09
#define LANG_ESTONIAN 0x25
#define LANG_FAEROESE 0x38
#define LANG_FARSI 0x29 // Deprecated: use LANG_PERSIAN instead
#define LANG_FILIPINO 0x64
#define LANG_FINNISH 0x0b
#define LANG_FRENCH 0x0c
#define LANG_FRISIAN 0x62
#define LANG_FULAH 0x67
#define LANG_GALICIAN 0x56
#define LANG_GEORGIAN 0x37
#define LANG_GERMAN 0x07
#define LANG_GREEK 0x08
#define LANG_GREENLANDIC 0x6f
#define LANG_GUJARATI 0x47
#define LANG_HAUSA 0x68
#define LANG_HAWAIIAN 0x75
#define LANG_HEBREW 0x0d
#define LANG_HINDI 0x39
#define LANG_HUNGARIAN 0x0e
#define LANG_ICELANDIC 0x0f
#define LANG_IGBO 0x70
#define LANG_INDONESIAN 0x21
#define LANG_INUKTITUT 0x5d
#define LANG_IRISH 0x3c // Use with the SUBLANG_IRISH_IRELAND Sublanguage ID
#define LANG_ITALIAN 0x10
#define LANG_JAPANESE 0x11
#define LANG_KANNADA 0x4b
#define LANG_KASHMIRI 0x60
#define LANG_KAZAK 0x3f
#define LANG_KHMER 0x53
#define LANG_KICHE 0x86
#define LANG_KINYARWANDA 0x87
#define LANG_KONKANI 0x57
#define LANG_KOREAN 0x12
#define LANG_KYRGYZ 0x40
#define LANG_LAO 0x54
#define LANG_LATVIAN 0x26
#define LANG_LITHUANIAN 0x27
#define LANG_LOWER_SORBIAN 0x2e
#define LANG_LUXEMBOURGISH 0x6e
#define LANG_MACEDONIAN 0x2f // the Former Yugoslav Republic of Macedonia
#define LANG_MALAY 0x3e
#define LANG_MALAYALAM 0x4c
#define LANG_MALTESE 0x3a
#define LANG_MANIPURI 0x58
#define LANG_MAORI 0x81
#define LANG_MAPUDUNGUN 0x7a
#define LANG_MARATHI 0x4e
#define LANG_MOHAWK 0x7c
#define LANG_MONGOLIAN 0x50
#define LANG_NEPALI 0x61
#define LANG_NORWEGIAN 0x14
#define LANG_OCCITAN 0x82
#define LANG_ODIA 0x48
#define LANG_ORIYA 0x48 // Deprecated: use LANG_ODIA, instead.
#define LANG_PASHTO 0x63
#define LANG_PERSIAN 0x29
#define LANG_POLISH 0x15
#define LANG_PORTUGUESE 0x16
#define LANG_PULAR 0x67 // Deprecated: use LANG_FULAH instead
#define LANG_PUNJABI 0x46
#define LANG_QUECHUA 0x6b
#define LANG_ROMANIAN 0x18
#define LANG_ROMANSH 0x17
#define LANG_RUSSIAN 0x19
#define LANG_SAKHA 0x85
#define LANG_SAMI 0x3b
#define LANG_SANSKRIT 0x4f
#define LANG_SCOTTISH_GAELIC 0x91
#define LANG_SERBIAN 0x1a // Use with the SUBLANG_SERBIAN_* Sublanguage IDs
#define LANG_SERBIAN_NEUTRAL 0x7c1a // Use with the ConvertDefaultLocale function
#define LANG_SINDHI 0x59
#define LANG_SINHALESE 0x5b
#define LANG_SLOVAK 0x1b
#define LANG_SLOVENIAN 0x24
#define LANG_SOTHO 0x6c
#define LANG_SPANISH 0x0a
#define LANG_SWAHILI 0x41
#define LANG_SWEDISH 0x1d
#define LANG_SYRIAC 0x5a
#define LANG_TAJIK 0x28
#define LANG_TAMAZIGHT 0x5f
#define LANG_TAMIL 0x49
#define LANG_TATAR 0x44
#define LANG_TELUGU 0x4a
#define LANG_THAI 0x1e
#define LANG_TIBETAN 0x51
#define LANG_TIGRIGNA 0x73
#define LANG_TIGRINYA 0x73 // Preferred spelling in locale
#define LANG_TSWANA 0x32
#define LANG_TURKISH 0x1f
#define LANG_TURKMEN 0x42
#define LANG_UIGHUR 0x80
#define LANG_UKRAINIAN 0x22
#define LANG_UPPER_SORBIAN 0x2e
#define LANG_URDU 0x20
#define LANG_UZBEK 0x43
#define LANG_VALENCIAN 0x03
#define LANG_VIETNAMESE 0x2a
#define LANG_WELSH 0x52
#define LANG_WOLOF 0x88
#define LANG_XHOSA 0x34
#define LANG_YAKUT 0x85 // Deprecated: use LANG_SAKHA,instead
#define LANG_YI 0x78
#define LANG_YORUBA 0x6a
#define LANG_ZULU 0x35
//
// Sublanguage IDs.
//
// The name immediately following SUBLANG_ dictates which primary
// language ID that sublanguage ID can be combined with to form a
// valid language ID.
//
// Note that the LANG, SUBLANG construction is not always consistent.
// The named locale APIs (eg GetLocaleInfoEx) are recommended.
//
#define SUBLANG_NEUTRAL 0x00 // language neutral
#define SUBLANG_DEFAULT 0x01 // user default
#define SUBLANG_SYS_DEFAULT 0x02 // system default
#define SUBLANG_CUSTOM_DEFAULT 0x03 // default custom language/locale
#define SUBLANG_CUSTOM_UNSPECIFIED 0x04 // custom language/locale
#define SUBLANG_UI_CUSTOM_DEFAULT 0x05 // Default custom MUI language/locale
#define SUBLANG_AFRIKAANS_SOUTH_AFRICA 0x01 // Afrikaans (South Africa) 0x0436 af-ZA
#define SUBLANG_ALBANIAN_ALBANIA 0x01 // Albanian (Albania) 0x041c sq-AL
#define SUBLANG_ALSATIAN_FRANCE 0x01 // Alsatian (France) 0x0484
#define SUBLANG_AMHARIC_ETHIOPIA 0x01 // Amharic (Ethiopia) 0x045e
#define SUBLANG_ARABIC_SAUDI_ARABIA 0x01 // Arabic (Saudi Arabia)
#define SUBLANG_ARABIC_IRAQ 0x02 // Arabic (Iraq)
#define SUBLANG_ARABIC_EGYPT 0x03 // Arabic (Egypt)
#define SUBLANG_ARABIC_LIBYA 0x04 // Arabic (Libya)
#define SUBLANG_ARABIC_ALGERIA 0x05 // Arabic (Algeria)
#define SUBLANG_ARABIC_MOROCCO 0x06 // Arabic (Morocco)
#define SUBLANG_ARABIC_TUNISIA 0x07 // Arabic (Tunisia)
#define SUBLANG_ARABIC_OMAN 0x08 // Arabic (Oman)
#define SUBLANG_ARABIC_YEMEN 0x09 // Arabic (Yemen)
#define SUBLANG_ARABIC_SYRIA 0x0a // Arabic (Syria)
#define SUBLANG_ARABIC_JORDAN 0x0b // Arabic (Jordan)
#define SUBLANG_ARABIC_LEBANON 0x0c // Arabic (Lebanon)
#define SUBLANG_ARABIC_KUWAIT 0x0d // Arabic (Kuwait)
#define SUBLANG_ARABIC_UAE 0x0e // Arabic (U.A.E)
#define SUBLANG_ARABIC_BAHRAIN 0x0f // Arabic (Bahrain)
#define SUBLANG_ARABIC_QATAR 0x10 // Arabic (Qatar)
#define SUBLANG_ARMENIAN_ARMENIA 0x01 // Armenian (Armenia) 0x042b hy-AM
#define SUBLANG_ASSAMESE_INDIA 0x01 // Assamese (India) 0x044d
#define SUBLANG_AZERI_LATIN 0x01 // Azeri (Latin) - for Azerbaijani, SUBLANG_AZERBAIJANI_AZERBAIJAN_LATIN preferred
#define SUBLANG_AZERI_CYRILLIC 0x02 // Azeri (Cyrillic) - for Azerbaijani, SUBLANG_AZERBAIJANI_AZERBAIJAN_CYRILLIC preferred
#define SUBLANG_AZERBAIJANI_AZERBAIJAN_LATIN 0x01 // Azerbaijani (Azerbaijan, Latin)
#define SUBLANG_AZERBAIJANI_AZERBAIJAN_CYRILLIC 0x02 // Azerbaijani (Azerbaijan, Cyrillic)
#define SUBLANG_BANGLA_INDIA 0x01 // Bangla (India)
#define SUBLANG_BANGLA_BANGLADESH 0x02 // Bangla (Bangladesh)
#define SUBLANG_BASHKIR_RUSSIA 0x01 // Bashkir (Russia) 0x046d ba-RU
#define SUBLANG_BASQUE_BASQUE 0x01 // Basque (Basque) 0x042d eu-ES
#define SUBLANG_BELARUSIAN_BELARUS 0x01 // Belarusian (Belarus) 0x0423 be-BY
#define SUBLANG_BENGALI_INDIA 0x01 // Bengali (India) - Note some prefer SUBLANG_BANGLA_INDIA
#define SUBLANG_BENGALI_BANGLADESH 0x02 // Bengali (Bangladesh) - Note some prefer SUBLANG_BANGLA_BANGLADESH
#define SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN 0x05 // Bosnian (Bosnia and Herzegovina - Latin) 0x141a bs-BA-Latn
#define SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC 0x08 // Bosnian (Bosnia and Herzegovina - Cyrillic) 0x201a bs-BA-Cyrl
#define SUBLANG_BRETON_FRANCE 0x01 // Breton (France) 0x047e
#define SUBLANG_BULGARIAN_BULGARIA 0x01 // Bulgarian (Bulgaria) 0x0402
#define SUBLANG_CATALAN_CATALAN 0x01 // Catalan (Catalan) 0x0403
#define SUBLANG_CENTRAL_KURDISH_IRAQ 0x01 // Central Kurdish (Iraq) 0x0492 ku-Arab-IQ
#define SUBLANG_CHEROKEE_CHEROKEE 0x01 // Cherokee (Cherokee) 0x045c chr-Cher-US
#define SUBLANG_CHINESE_TRADITIONAL 0x01 // Chinese (Taiwan) 0x0404 zh-TW
#define SUBLANG_CHINESE_SIMPLIFIED 0x02 // Chinese (PR China) 0x0804 zh-CN
#define SUBLANG_CHINESE_HONGKONG 0x03 // Chinese (Hong Kong S.A.R., P.R.C.) 0x0c04 zh-HK
#define SUBLANG_CHINESE_SINGAPORE 0x04 // Chinese (Singapore) 0x1004 zh-SG
#define SUBLANG_CHINESE_MACAU 0x05 // Chinese (Macau S.A.R.) 0x1404 zh-MO
#define SUBLANG_CORSICAN_FRANCE 0x01 // Corsican (France) 0x0483
#define SUBLANG_CZECH_CZECH_REPUBLIC 0x01 // Czech (Czech Republic) 0x0405
#define SUBLANG_CROATIAN_CROATIA 0x01 // Croatian (Croatia)
#define SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN 0x04 // Croatian (Bosnia and Herzegovina - Latin) 0x101a hr-BA
#define SUBLANG_DANISH_DENMARK 0x01 // Danish (Denmark) 0x0406
#define SUBLANG_DARI_AFGHANISTAN 0x01 // Dari (Afghanistan)
#define SUBLANG_DIVEHI_MALDIVES 0x01 // Divehi (Maldives) 0x0465 div-MV
#define SUBLANG_DUTCH 0x01 // Dutch
#define SUBLANG_DUTCH_BELGIAN 0x02 // Dutch (Belgian)
#define SUBLANG_ENGLISH_US 0x01 // English (USA)
#define SUBLANG_ENGLISH_UK 0x02 // English (UK)
#define SUBLANG_ENGLISH_AUS 0x03 // English (Australian)
#define SUBLANG_ENGLISH_CAN 0x04 // English (Canadian)
#define SUBLANG_ENGLISH_NZ 0x05 // English (New Zealand)
#define SUBLANG_ENGLISH_EIRE 0x06 // English (Irish)
#define SUBLANG_ENGLISH_SOUTH_AFRICA 0x07 // English (South Africa)
#define SUBLANG_ENGLISH_JAMAICA 0x08 // English (Jamaica)
#define SUBLANG_ENGLISH_CARIBBEAN 0x09 // English (Caribbean)
#define SUBLANG_ENGLISH_BELIZE 0x0a // English (Belize)
#define SUBLANG_ENGLISH_TRINIDAD 0x0b // English (Trinidad)
#define SUBLANG_ENGLISH_ZIMBABWE 0x0c // English (Zimbabwe)
#define SUBLANG_ENGLISH_PHILIPPINES 0x0d // English (Philippines)
#define SUBLANG_ENGLISH_INDIA 0x10 // English (India)
#define SUBLANG_ENGLISH_MALAYSIA 0x11 // English (Malaysia)
#define SUBLANG_ENGLISH_SINGAPORE 0x12 // English (Singapore)
#define SUBLANG_ESTONIAN_ESTONIA 0x01 // Estonian (Estonia) 0x0425 et-EE
#define SUBLANG_FAEROESE_FAROE_ISLANDS 0x01 // Faroese (Faroe Islands) 0x0438 fo-FO
#define SUBLANG_FILIPINO_PHILIPPINES 0x01 // Filipino (Philippines) 0x0464 fil-PH
#define SUBLANG_FINNISH_FINLAND 0x01 // Finnish (Finland) 0x040b
#define SUBLANG_FRENCH 0x01 // French
#define SUBLANG_FRENCH_BELGIAN 0x02 // French (Belgian)
#define SUBLANG_FRENCH_CANADIAN 0x03 // French (Canadian)
#define SUBLANG_FRENCH_SWISS 0x04 // French (Swiss)
#define SUBLANG_FRENCH_LUXEMBOURG 0x05 // French (Luxembourg)
#define SUBLANG_FRENCH_MONACO 0x06 // French (Monaco)
#define SUBLANG_FRISIAN_NETHERLANDS 0x01 // Frisian (Netherlands) 0x0462 fy-NL
#define SUBLANG_FULAH_SENEGAL 0x02 // Fulah (Senegal) 0x0867 ff-SN
#define SUBLANG_GALICIAN_GALICIAN 0x01 // Galician (Galician) 0x0456 gl-ES
#define SUBLANG_GEORGIAN_GEORGIA 0x01 // Georgian (Georgia) 0x0437 ka-GE
#define SUBLANG_GERMAN 0x01 // German
#define SUBLANG_GERMAN_SWISS 0x02 // German (Swiss)
#define SUBLANG_GERMAN_AUSTRIAN 0x03 // German (Austrian)
#define SUBLANG_GERMAN_LUXEMBOURG 0x04 // German (Luxembourg)
#define SUBLANG_GERMAN_LIECHTENSTEIN 0x05 // German (Liechtenstein)
#define SUBLANG_GREEK_GREECE 0x01 // Greek (Greece)
#define SUBLANG_GREENLANDIC_GREENLAND 0x01 // Greenlandic (Greenland) 0x046f kl-GL
#define SUBLANG_GUJARATI_INDIA 0x01 // Gujarati (India (Gujarati Script)) 0x0447 gu-IN
#define SUBLANG_HAUSA_NIGERIA_LATIN 0x01 // Hausa (Latin, Nigeria) 0x0468 ha-NG-Latn
#define SUBLANG_HAWAIIAN_US 0x01 // Hawiian (US) 0x0475 haw-US
#define SUBLANG_HEBREW_ISRAEL 0x01 // Hebrew (Israel) 0x040d
#define SUBLANG_HINDI_INDIA 0x01 // Hindi (India) 0x0439 hi-IN
#define SUBLANG_HUNGARIAN_HUNGARY 0x01 // Hungarian (Hungary) 0x040e
#define SUBLANG_ICELANDIC_ICELAND 0x01 // Icelandic (Iceland) 0x040f
#define SUBLANG_IGBO_NIGERIA 0x01 // Igbo (Nigeria) 0x0470 ig-NG
#define SUBLANG_INDONESIAN_INDONESIA 0x01 // Indonesian (Indonesia) 0x0421 id-ID
#define SUBLANG_INUKTITUT_CANADA 0x01 // Inuktitut (Syllabics) (Canada) 0x045d iu-CA-Cans
#define SUBLANG_INUKTITUT_CANADA_LATIN 0x02 // Inuktitut (Canada - Latin)
#define SUBLANG_IRISH_IRELAND 0x02 // Irish (Ireland)
#define SUBLANG_ITALIAN 0x01 // Italian
#define SUBLANG_ITALIAN_SWISS 0x02 // Italian (Swiss)
#define SUBLANG_JAPANESE_JAPAN 0x01 // Japanese (Japan) 0x0411
#define SUBLANG_KANNADA_INDIA 0x01 // Kannada (India (Kannada Script)) 0x044b kn-IN
#define SUBLANG_KASHMIRI_SASIA 0x02 // Kashmiri (South Asia)
#define SUBLANG_KASHMIRI_INDIA 0x02 // For app compatibility only
#define SUBLANG_KAZAK_KAZAKHSTAN 0x01 // Kazakh (Kazakhstan) 0x043f kk-KZ
#define SUBLANG_KHMER_CAMBODIA 0x01 // Khmer (Cambodia) 0x0453 kh-KH
#define SUBLANG_KICHE_GUATEMALA 0x01 // K'iche (Guatemala)
#define SUBLANG_KINYARWANDA_RWANDA 0x01 // Kinyarwanda (Rwanda) 0x0487 rw-RW
#define SUBLANG_KONKANI_INDIA 0x01 // Konkani (India) 0x0457 kok-IN
#define SUBLANG_KOREAN 0x01 // Korean (Extended Wansung)
#define SUBLANG_KYRGYZ_KYRGYZSTAN 0x01 // Kyrgyz (Kyrgyzstan) 0x0440 ky-KG
#define SUBLANG_LAO_LAO 0x01 // Lao (Lao PDR) 0x0454 lo-LA
#define SUBLANG_LATVIAN_LATVIA 0x01 // Latvian (Latvia) 0x0426 lv-LV
#define SUBLANG_LITHUANIAN 0x01 // Lithuanian
#define SUBLANG_LOWER_SORBIAN_GERMANY 0x02 // Lower Sorbian (Germany) 0x082e wee-DE
#define SUBLANG_LUXEMBOURGISH_LUXEMBOURG 0x01 // Luxembourgish (Luxembourg) 0x046e lb-LU
#define SUBLANG_MACEDONIAN_MACEDONIA 0x01 // Macedonian (Macedonia (FYROM)) 0x042f mk-MK
#define SUBLANG_MALAY_MALAYSIA 0x01 // Malay (Malaysia)
#define SUBLANG_MALAY_BRUNEI_DARUSSALAM 0x02 // Malay (Brunei Darussalam)
#define SUBLANG_MALAYALAM_INDIA 0x01 // Malayalam (India (Malayalam Script) ) 0x044c ml-IN
#define SUBLANG_MALTESE_MALTA 0x01 // Maltese (Malta) 0x043a mt-MT
#define SUBLANG_MAORI_NEW_ZEALAND 0x01 // Maori (New Zealand) 0x0481 mi-NZ
#define SUBLANG_MAPUDUNGUN_CHILE 0x01 // Mapudungun (Chile) 0x047a arn-CL
#define SUBLANG_MARATHI_INDIA 0x01 // Marathi (India) 0x044e mr-IN
#define SUBLANG_MOHAWK_MOHAWK 0x01 // Mohawk (Mohawk) 0x047c moh-CA
#define SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA 0x01 // Mongolian (Cyrillic, Mongolia)
#define SUBLANG_MONGOLIAN_PRC 0x02 // Mongolian (PRC)
#define SUBLANG_NEPALI_INDIA 0x02 // Nepali (India)
#define SUBLANG_NEPALI_NEPAL 0x01 // Nepali (Nepal) 0x0461 ne-NP
#define SUBLANG_NORWEGIAN_BOKMAL 0x01 // Norwegian (Bokmal)
#define SUBLANG_NORWEGIAN_NYNORSK 0x02 // Norwegian (Nynorsk)
#define SUBLANG_OCCITAN_FRANCE 0x01 // Occitan (France) 0x0482 oc-FR
#define SUBLANG_ODIA_INDIA 0x01 // Odia (India (Odia Script)) 0x0448 or-IN
#define SUBLANG_ORIYA_INDIA 0x01 // Deprecated: use SUBLANG_ODIA_INDIA instead
#define SUBLANG_PASHTO_AFGHANISTAN 0x01 // Pashto (Afghanistan)
#define SUBLANG_PERSIAN_IRAN 0x01 // Persian (Iran) 0x0429 fa-IR
#define SUBLANG_POLISH_POLAND 0x01 // Polish (Poland) 0x0415
#define SUBLANG_PORTUGUESE 0x02 // Portuguese
#define SUBLANG_PORTUGUESE_BRAZILIAN 0x01 // Portuguese (Brazil)
#define SUBLANG_PULAR_SENEGAL 0x02 // Deprecated: Use SUBLANG_FULAH_SENEGAL instead
#define SUBLANG_PUNJABI_INDIA 0x01 // Punjabi (India (Gurmukhi Script)) 0x0446 pa-IN
#define SUBLANG_PUNJABI_PAKISTAN 0x02 // Punjabi (Pakistan (Arabic Script)) 0x0846 pa-Arab-PK
#define SUBLANG_QUECHUA_BOLIVIA 0x01 // Quechua (Bolivia)
#define SUBLANG_QUECHUA_ECUADOR 0x02 // Quechua (Ecuador)
#define SUBLANG_QUECHUA_PERU 0x03 // Quechua (Peru)
#define SUBLANG_ROMANIAN_ROMANIA 0x01 // Romanian (Romania) 0x0418
#define SUBLANG_ROMANSH_SWITZERLAND 0x01 // Romansh (Switzerland) 0x0417 rm-CH
#define SUBLANG_RUSSIAN_RUSSIA 0x01 // Russian (Russia) 0x0419
#define SUBLANG_SAKHA_RUSSIA 0x01 // Sakha (Russia) 0x0485 sah-RU
#define SUBLANG_SAMI_NORTHERN_NORWAY 0x01 // Northern Sami (Norway)
#define SUBLANG_SAMI_NORTHERN_SWEDEN 0x02 // Northern Sami (Sweden)
#define SUBLANG_SAMI_NORTHERN_FINLAND 0x03 // Northern Sami (Finland)
#define SUBLANG_SAMI_LULE_NORWAY 0x04 // Lule Sami (Norway)
#define SUBLANG_SAMI_LULE_SWEDEN 0x05 // Lule Sami (Sweden)
#define SUBLANG_SAMI_SOUTHERN_NORWAY 0x06 // Southern Sami (Norway)
#define SUBLANG_SAMI_SOUTHERN_SWEDEN 0x07 // Southern Sami (Sweden)
#define SUBLANG_SAMI_SKOLT_FINLAND 0x08 // Skolt Sami (Finland)
#define SUBLANG_SAMI_INARI_FINLAND 0x09 // Inari Sami (Finland)
#define SUBLANG_SANSKRIT_INDIA 0x01 // Sanskrit (India) 0x044f sa-IN
#define SUBLANG_SCOTTISH_GAELIC 0x01 // Scottish Gaelic (United Kingdom) 0x0491 gd-GB
#define SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_LATIN 0x06 // Serbian (Bosnia and Herzegovina - Latin)
#define SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_CYRILLIC 0x07 // Serbian (Bosnia and Herzegovina - Cyrillic)
#define SUBLANG_SERBIAN_MONTENEGRO_LATIN 0x0b // Serbian (Montenegro - Latn)
#define SUBLANG_SERBIAN_MONTENEGRO_CYRILLIC 0x0c // Serbian (Montenegro - Cyrillic)
#define SUBLANG_SERBIAN_SERBIA_LATIN 0x09 // Serbian (Serbia - Latin)
#define SUBLANG_SERBIAN_SERBIA_CYRILLIC 0x0a // Serbian (Serbia - Cyrillic)
#define SUBLANG_SERBIAN_CROATIA 0x01 // Croatian (Croatia) 0x041a hr-HR
#define SUBLANG_SERBIAN_LATIN 0x02 // Serbian (Latin)
#define SUBLANG_SERBIAN_CYRILLIC 0x03 // Serbian (Cyrillic)
#define SUBLANG_SINDHI_INDIA 0x01 // Sindhi (India) reserved 0x0459
#define SUBLANG_SINDHI_PAKISTAN 0x02 // Sindhi (Pakistan) 0x0859 sd-Arab-PK
#define SUBLANG_SINDHI_AFGHANISTAN 0x02 // For app compatibility only
#define SUBLANG_SINHALESE_SRI_LANKA 0x01 // Sinhalese (Sri Lanka)
#define SUBLANG_SOTHO_NORTHERN_SOUTH_AFRICA 0x01 // Northern Sotho (South Africa)
#define SUBLANG_SLOVAK_SLOVAKIA 0x01 // Slovak (Slovakia) 0x041b sk-SK
#define SUBLANG_SLOVENIAN_SLOVENIA 0x01 // Slovenian (Slovenia) 0x0424 sl-SI
#define SUBLANG_SPANISH 0x01 // Spanish (Castilian)
#define SUBLANG_SPANISH_MEXICAN 0x02 // Spanish (Mexico)
#define SUBLANG_SPANISH_MODERN 0x03 // Spanish (Modern)
#define SUBLANG_SPANISH_GUATEMALA 0x04 // Spanish (Guatemala)
#define SUBLANG_SPANISH_COSTA_RICA 0x05 // Spanish (Costa Rica)
#define SUBLANG_SPANISH_PANAMA 0x06 // Spanish (Panama)
#define SUBLANG_SPANISH_DOMINICAN_REPUBLIC 0x07 // Spanish (Dominican Republic)
#define SUBLANG_SPANISH_VENEZUELA 0x08 // Spanish (Venezuela)
#define SUBLANG_SPANISH_COLOMBIA 0x09 // Spanish (Colombia)
#define SUBLANG_SPANISH_PERU 0x0a // Spanish (Peru)
#define SUBLANG_SPANISH_ARGENTINA 0x0b // Spanish (Argentina)
#define SUBLANG_SPANISH_ECUADOR 0x0c // Spanish (Ecuador)
#define SUBLANG_SPANISH_CHILE 0x0d // Spanish (Chile)
#define SUBLANG_SPANISH_URUGUAY 0x0e // Spanish (Uruguay)
#define SUBLANG_SPANISH_PARAGUAY 0x0f // Spanish (Paraguay)
#define SUBLANG_SPANISH_BOLIVIA 0x10 // Spanish (Bolivia)
#define SUBLANG_SPANISH_EL_SALVADOR 0x11 // Spanish (El Salvador)
#define SUBLANG_SPANISH_HONDURAS 0x12 // Spanish (Honduras)
#define SUBLANG_SPANISH_NICARAGUA 0x13 // Spanish (Nicaragua)
#define SUBLANG_SPANISH_PUERTO_RICO 0x14 // Spanish (Puerto Rico)
#define SUBLANG_SPANISH_US 0x15 // Spanish (United States)
#define SUBLANG_SWAHILI_KENYA 0x01 // Swahili (Kenya) 0x0441 sw-KE
#define SUBLANG_SWEDISH 0x01 // Swedish
#define SUBLANG_SWEDISH_FINLAND 0x02 // Swedish (Finland)
#define SUBLANG_SYRIAC_SYRIA 0x01 // Syriac (Syria) 0x045a syr-SY
#define SUBLANG_TAJIK_TAJIKISTAN 0x01 // Tajik (Tajikistan) 0x0428 tg-TJ-Cyrl
#define SUBLANG_TAMAZIGHT_ALGERIA_LATIN 0x02 // Tamazight (Latin, Algeria) 0x085f tzm-Latn-DZ
#define SUBLANG_TAMAZIGHT_MOROCCO_TIFINAGH 0x04 // Tamazight (Tifinagh) 0x105f tzm-Tfng-MA
#define SUBLANG_TAMIL_INDIA 0x01 // Tamil (India)
#define SUBLANG_TAMIL_SRI_LANKA 0x02 // Tamil (Sri Lanka) 0x0849 ta-LK
#define SUBLANG_TATAR_RUSSIA 0x01 // Tatar (Russia) 0x0444 tt-RU
#define SUBLANG_TELUGU_INDIA 0x01 // Telugu (India (Telugu Script)) 0x044a te-IN
#define SUBLANG_THAI_THAILAND 0x01 // Thai (Thailand) 0x041e th-TH
#define SUBLANG_TIBETAN_PRC 0x01 // Tibetan (PRC)
#define SUBLANG_TIGRIGNA_ERITREA 0x02 // Tigrigna (Eritrea)
#define SUBLANG_TIGRINYA_ERITREA 0x02 // Tigrinya (Eritrea) 0x0873 ti-ER (preferred spelling)
#define SUBLANG_TIGRINYA_ETHIOPIA 0x01 // Tigrinya (Ethiopia) 0x0473 ti-ET
#define SUBLANG_TSWANA_BOTSWANA 0x02 // Setswana / Tswana (Botswana) 0x0832 tn-BW
#define SUBLANG_TSWANA_SOUTH_AFRICA 0x01 // Setswana / Tswana (South Africa) 0x0432 tn-ZA
#define SUBLANG_TURKISH_TURKEY 0x01 // Turkish (Turkey) 0x041f tr-TR
#define SUBLANG_TURKMEN_TURKMENISTAN 0x01 // Turkmen (Turkmenistan) 0x0442 tk-TM
#define SUBLANG_UIGHUR_PRC 0x01 // Uighur (PRC) 0x0480 ug-CN
#define SUBLANG_UKRAINIAN_UKRAINE 0x01 // Ukrainian (Ukraine) 0x0422 uk-UA
#define SUBLANG_UPPER_SORBIAN_GERMANY 0x01 // Upper Sorbian (Germany) 0x042e wen-DE
#define SUBLANG_URDU_PAKISTAN 0x01 // Urdu (Pakistan)
#define SUBLANG_URDU_INDIA 0x02 // Urdu (India)
#define SUBLANG_UZBEK_LATIN 0x01 // Uzbek (Latin)
#define SUBLANG_UZBEK_CYRILLIC 0x02 // Uzbek (Cyrillic)
#define SUBLANG_VALENCIAN_VALENCIA 0x02 // Valencian (Valencia) 0x0803 ca-ES-Valencia
#define SUBLANG_VIETNAMESE_VIETNAM 0x01 // Vietnamese (Vietnam) 0x042a vi-VN
#define SUBLANG_WELSH_UNITED_KINGDOM 0x01 // Welsh (United Kingdom) 0x0452 cy-GB
#define SUBLANG_WOLOF_SENEGAL 0x01 // Wolof (Senegal)
#define SUBLANG_XHOSA_SOUTH_AFRICA 0x01 // isiXhosa / Xhosa (South Africa) 0x0434 xh-ZA
#define SUBLANG_YAKUT_RUSSIA 0x01 // Deprecated: use SUBLANG_SAKHA_RUSSIA instead
#define SUBLANG_YI_PRC 0x01 // Yi (PRC)) 0x0478
#define SUBLANG_YORUBA_NIGERIA 0x01 // Yoruba (Nigeria) 046a yo-NG
#define SUBLANG_ZULU_SOUTH_AFRICA 0x01 // isiZulu / Zulu (South Africa) 0x0435 zu-ZA
//
// Sorting IDs.
//
// Note that the named locale APIs (eg CompareStringExEx) are recommended.
//
#define SORT_DEFAULT 0x0 // sorting default
#define SORT_INVARIANT_MATH 0x1 // Invariant (Mathematical Symbols)
#define SORT_JAPANESE_XJIS 0x0 // Japanese XJIS order
#define SORT_JAPANESE_UNICODE 0x1 // Japanese Unicode order (no longer supported)
#define SORT_JAPANESE_RADICALSTROKE 0x4 // Japanese radical/stroke order
#define SORT_CHINESE_BIG5 0x0 // Chinese BIG5 order
#define SORT_CHINESE_PRCP 0x0 // PRC Chinese Phonetic order
#define SORT_CHINESE_UNICODE 0x1 // Chinese Unicode order (no longer supported)
#define SORT_CHINESE_PRC 0x2 // PRC Chinese Stroke Count order
#define SORT_CHINESE_BOPOMOFO 0x3 // Traditional Chinese Bopomofo order
#define SORT_CHINESE_RADICALSTROKE 0x4 // Traditional Chinese radical/stroke order.
#define SORT_KOREAN_KSC 0x0 // Korean KSC order
#define SORT_KOREAN_UNICODE 0x1 // Korean Unicode order (no longer supported)
#define SORT_GERMAN_PHONE_BOOK 0x1 // German Phone Book order
#define SORT_HUNGARIAN_DEFAULT 0x0 // Hungarian Default order
#define SORT_HUNGARIAN_TECHNICAL 0x1 // Hungarian Technical order
#define SORT_GEORGIAN_TRADITIONAL 0x0 // Georgian Traditional order
#define SORT_GEORGIAN_MODERN 0x1 // Georgian Modern order
// end_r_winnt
//
// A language ID is a 16 bit value which is the combination of a
// primary language ID and a secondary language ID. The bits are
// allocated as follows:
//
// +-----------------------+-------------------------+
// | Sublanguage ID | Primary Language ID |
// +-----------------------+-------------------------+
// 15 10 9 0 bit
//
// WARNING: This pattern isn't always follows, Serbina, Bosnian & Croation
// for example.
//
// It is recommended that applications test for locale names or actual LCIDs.
//
// Language ID creation/extraction macros:
//
// MAKELANGID - construct language id from a primary language id and
// a sublanguage id.
// PRIMARYLANGID - extract primary language id from a language id.
// SUBLANGID - extract sublanguage id from a language id.
//
// Note that the LANG, SUBLANG construction is not always consistent.
// The named locale APIs (eg GetLocaleInfoEx) are recommended.
//
// Language IDs do not exist for all locales
//
#define MAKELANGID(p, s) ((((WORD )(s)) << 10) | (WORD )(p))
#define PRIMARYLANGID(lgid) ((WORD )(lgid) & 0x3ff)
#define SUBLANGID(lgid) ((WORD )(lgid) >> 10)
//
// A locale ID is a 32 bit value which is the combination of a
// language ID, a sort ID, and a reserved area. The bits are
// allocated as follows:
//
// +-------------+---------+-------------------------+
// | Reserved | Sort ID | Language ID |
// +-------------+---------+-------------------------+
// 31 20 19 16 15 0 bit
//
// WARNING: This pattern isn't always followed (es-ES_tradnl vs es-ES for example)
//
// It is recommended that applications test for locale names or actual LCIDs.
//
// Locale ID creation/extraction macros:
//
// MAKELCID - construct the locale id from a language id and a sort id.
// MAKESORTLCID - construct the locale id from a language id, sort id, and sort version.
// LANGIDFROMLCID - extract the language id from a locale id.
// SORTIDFROMLCID - extract the sort id from a locale id.
// SORTVERSIONFROMLCID - extract the sort version from a locale id.
//
// Note that the LANG, SUBLANG construction is not always consistent.
// The named locale APIs (eg GetLocaleInfoEx) are recommended.
//
// LCIDs do not exist for all locales.
//
#define NLS_VALID_LOCALE_MASK 0x000fffff
#define MAKELCID(lgid, srtid) ((DWORD)((((DWORD)((WORD )(srtid))) << 16) | \
((DWORD)((WORD )(lgid)))))
#define MAKESORTLCID(lgid, srtid, ver) \
((DWORD)((MAKELCID(lgid, srtid)) | \
(((DWORD)((WORD )(ver))) << 20)))
#define LANGIDFROMLCID(lcid) ((WORD )(lcid))
#define SORTIDFROMLCID(lcid) ((WORD )((((DWORD)(lcid)) >> 16) & 0xf))
#define SORTVERSIONFROMLCID(lcid) ((WORD )((((DWORD)(lcid)) >> 20) & 0xf))
// 8 characters for language
// 8 characters for region
// 64 characters for suffix (script)
// 2 characters for '-' separators
// 2 characters for prefix like "i-" or "x-"
// 1 null termination
#define LOCALE_NAME_MAX_LENGTH 85
//
// Default System and User IDs for language and locale.
// Locale names such as LOCALE_NAME_SYSTEM_DEFAULT, LOCALE_NAME_USER_DEFAULT,
// and LOCALE_NAME_INVARIANT are preferred.
//
#define LANG_SYSTEM_DEFAULT (MAKELANGID(LANG_NEUTRAL, SUBLANG_SYS_DEFAULT))
#define LANG_USER_DEFAULT (MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT))
#define LOCALE_SYSTEM_DEFAULT (MAKELCID(LANG_SYSTEM_DEFAULT, SORT_DEFAULT))
#define LOCALE_USER_DEFAULT (MAKELCID(LANG_USER_DEFAULT, SORT_DEFAULT))
//
// Other special IDs for language and locale.
//
#define LOCALE_CUSTOM_DEFAULT \
(MAKELCID(MAKELANGID(LANG_NEUTRAL, SUBLANG_CUSTOM_DEFAULT), SORT_DEFAULT))
#define LOCALE_CUSTOM_UNSPECIFIED \
(MAKELCID(MAKELANGID(LANG_NEUTRAL, SUBLANG_CUSTOM_UNSPECIFIED), SORT_DEFAULT))
#define LOCALE_CUSTOM_UI_DEFAULT \
(MAKELCID(MAKELANGID(LANG_NEUTRAL, SUBLANG_UI_CUSTOM_DEFAULT), SORT_DEFAULT))
#define LOCALE_NEUTRAL \
(MAKELCID(MAKELANGID(LANG_NEUTRAL, SUBLANG_NEUTRAL), SORT_DEFAULT))
#define LOCALE_INVARIANT \
(MAKELCID(MAKELANGID(LANG_INVARIANT, SUBLANG_NEUTRAL), SORT_DEFAULT))
//
// Transient keyboard Locale IDs (LCIDs)
// Should only be used for keyboard layout identification
//
#define LOCALE_TRANSIENT_KEYBOARD1 0x2000
#define LOCALE_TRANSIENT_KEYBOARD2 0x2400
#define LOCALE_TRANSIENT_KEYBOARD3 0x2800
#define LOCALE_TRANSIENT_KEYBOARD4 0x2c00
//
// Locale with an unassigned LCID
// These locales cannot be queried by LCID
// Currently same as LOCALE_CUSTOM_UNSPECIFIED
//
#define LOCALE_UNASSIGNED_LCID LOCALE_CUSTOM_UNSPECIFIED
// begin_ntminiport begin_ntndis begin_ntminitape
//
// Macros used to eliminate compiler warning generated when formal
// parameters or local variables are not declared.
//
// Use DBG_UNREFERENCED_PARAMETER() when a parameter is not yet
// referenced but will be once the module is completely developed.
//
// Use DBG_UNREFERENCED_LOCAL_VARIABLE() when a local variable is not yet
// referenced but will be once the module is completely developed.
//
// Use UNREFERENCED_PARAMETER() if a parameter will never be referenced.
//
// DBG_UNREFERENCED_PARAMETER and DBG_UNREFERENCED_LOCAL_VARIABLE will
// eventually be made into a null macro to help determine whether there
// is unfinished work.
//
// begin_ntoshvp
#if ! defined(lint)
#ifdef _PREFAST_
void _Prefast_unreferenced_parameter_impl_(const char*, ...);
#define UNREFERENCED_PARAMETER(P) _Prefast_unreferenced_parameter_impl_("PREfast", (P))
#define DBG_UNREFERENCED_PARAMETER(P) _Prefast_unreferenced_parameter_impl_("PREfast", (P))
#define DBG_UNREFERENCED_LOCAL_VARIABLE(V) _Prefast_unreferenced_parameter_impl_("PREfast", (V))
#else // _PREFAST_
#define UNREFERENCED_PARAMETER(P) (P)
#define DBG_UNREFERENCED_PARAMETER(P) (P)
#define DBG_UNREFERENCED_LOCAL_VARIABLE(V) (V)
#endif // _PREFAST_
#else // lint
// Note: lint -e530 says don't complain about uninitialized variables for
// this varible. Error 527 has to do with unreachable code.
// -restore restores checking to the -save state
#define UNREFERENCED_PARAMETER(P) \
/*lint -save -e527 -e530 */ \
{ \
(P) = (P); \
} \
/*lint -restore */
#define DBG_UNREFERENCED_PARAMETER(P) \
/*lint -save -e527 -e530 */ \
{ \
(P) = (P); \
} \
/*lint -restore */
#define DBG_UNREFERENCED_LOCAL_VARIABLE(V) \
/*lint -save -e527 -e530 */ \
{ \
(V) = (V); \
} \
/*lint -restore */
#endif // lint
// end_ntoshvp
//
// Macro used to eliminate compiler warning 4715 within a switch statement
// when all possible cases have already been accounted for.
//
// switch (a & 3) {
// case 0: return 1;
// case 1: return Foo();
// case 2: return Bar();
// case 3: return 1;
// DEFAULT_UNREACHABLE;
//
#if (_MSC_VER > 1200)
#define DEFAULT_UNREACHABLE default: __assume(0)
#else
//
// Older compilers do not support __assume(), and there is no other free
// method of eliminating the warning.
//
#define DEFAULT_UNREACHABLE
#endif
#ifdef __cplusplus
// Define operator overloads to enable bit operations on enum values that are
// used to define flags. Use DEFINE_ENUM_FLAG_OPERATORS(YOUR_TYPE) to enable these
// operators on YOUR_TYPE.
// Moved here from objbase.w.
// Templates are defined here in order to avoid a dependency on C++ <type_traits> header file,
// or on compiler-specific contructs.
extern "C++" {
template <size_t S>
struct _ENUM_FLAG_INTEGER_FOR_SIZE;
template <>
struct _ENUM_FLAG_INTEGER_FOR_SIZE<1>
{
typedef INT8 type;
};
template <>
struct _ENUM_FLAG_INTEGER_FOR_SIZE<2>
{
typedef INT16 type;
};
template <>
struct _ENUM_FLAG_INTEGER_FOR_SIZE<4>
{
typedef INT32 type;
};
template <>
struct _ENUM_FLAG_INTEGER_FOR_SIZE<8>
{
typedef INT64 type;
};
// used as an approximation of std::underlying_type<T>
template <class T>
struct _ENUM_FLAG_SIZED_INTEGER
{
typedef typename _ENUM_FLAG_INTEGER_FOR_SIZE<sizeof(T)>::type type;
};
}
#if _MSC_VER >= 1900
#define _ENUM_FLAG_CONSTEXPR constexpr
#else
#define _ENUM_FLAG_CONSTEXPR
#endif
#define DEFINE_ENUM_FLAG_OPERATORS(ENUMTYPE) \
extern "C++" { \
inline _ENUM_FLAG_CONSTEXPR ENUMTYPE operator | (ENUMTYPE a, ENUMTYPE b) throw() { return ENUMTYPE(((_ENUM_FLAG_SIZED_INTEGER<ENUMTYPE>::type)a) | ((_ENUM_FLAG_SIZED_INTEGER<ENUMTYPE>::type)b)); } \
inline ENUMTYPE &operator |= (ENUMTYPE &a, ENUMTYPE b) throw() { return (ENUMTYPE &)(((_ENUM_FLAG_SIZED_INTEGER<ENUMTYPE>::type &)a) |= ((_ENUM_FLAG_SIZED_INTEGER<ENUMTYPE>::type)b)); } \
inline _ENUM_FLAG_CONSTEXPR ENUMTYPE operator & (ENUMTYPE a, ENUMTYPE b) throw() { return ENUMTYPE(((_ENUM_FLAG_SIZED_INTEGER<ENUMTYPE>::type)a) & ((_ENUM_FLAG_SIZED_INTEGER<ENUMTYPE>::type)b)); } \
inline ENUMTYPE &operator &= (ENUMTYPE &a, ENUMTYPE b) throw() { return (ENUMTYPE &)(((_ENUM_FLAG_SIZED_INTEGER<ENUMTYPE>::type &)a) &= ((_ENUM_FLAG_SIZED_INTEGER<ENUMTYPE>::type)b)); } \
inline _ENUM_FLAG_CONSTEXPR ENUMTYPE operator ~ (ENUMTYPE a) throw() { return ENUMTYPE(~((_ENUM_FLAG_SIZED_INTEGER<ENUMTYPE>::type)a)); } \
inline _ENUM_FLAG_CONSTEXPR ENUMTYPE operator ^ (ENUMTYPE a, ENUMTYPE b) throw() { return ENUMTYPE(((_ENUM_FLAG_SIZED_INTEGER<ENUMTYPE>::type)a) ^ ((_ENUM_FLAG_SIZED_INTEGER<ENUMTYPE>::type)b)); } \
inline ENUMTYPE &operator ^= (ENUMTYPE &a, ENUMTYPE b) throw() { return (ENUMTYPE &)(((_ENUM_FLAG_SIZED_INTEGER<ENUMTYPE>::type &)a) ^= ((_ENUM_FLAG_SIZED_INTEGER<ENUMTYPE>::type)b)); } \
}
#else
#define DEFINE_ENUM_FLAG_OPERATORS(ENUMTYPE) // NOP, C allows these operators.
#endif
// Compile-time macros for initializing flag values in const data.
//
// When using DEFINE_ENUM_FLAG_OPERATORS for enum values you should use the macros below
// when you need to initialize global const data. Without these macros the inline operators
// from DEFINE_ENUM_FLAG_OPERATORS force a runtime initialization rather than a
// compile time initialization. This applies even if you have declared the data as const.
//
// This is no longer necessary for compilers that support constexpr.
#define COMPILETIME_OR_2FLAGS(a,b) ((UINT)(a)|(UINT)(b))
#define COMPILETIME_OR_3FLAGS(a,b,c) ((UINT)(a)|(UINT)(b)|(UINT)(c))
#define COMPILETIME_OR_4FLAGS(a,b,c,d) ((UINT)(a)|(UINT)(b)|(UINT)(c)|(UINT)(d))
#define COMPILETIME_OR_5FLAGS(a,b,c,d,e) ((UINT)(a)|(UINT)(b)|(UINT)(c)|(UINT)(d)|(UINT)(e))
#define COMPILETIME_OR_6FLAGS(a,b,c,d,e,f) ((UINT)(a)|(UINT)(b)|(UINT)(c)|(UINT)(d)|(UINT)(e)|(UINT)(f))
#ifndef UMDF_USING_NTSTATUS
#ifndef WIN32_NO_STATUS
/*lint -save -e767 */
#define STATUS_WAIT_0 ((DWORD )0x00000000L)
#define STATUS_ABANDONED_WAIT_0 ((DWORD )0x00000080L)
#define STATUS_USER_APC ((DWORD )0x000000C0L)
#define STATUS_TIMEOUT ((DWORD )0x00000102L)
#define STATUS_PENDING ((DWORD )0x00000103L)
#define DBG_EXCEPTION_HANDLED ((DWORD )0x00010001L)
#define DBG_CONTINUE ((DWORD )0x00010002L)
#define STATUS_SEGMENT_NOTIFICATION ((DWORD )0x40000005L)
#define STATUS_FATAL_APP_EXIT ((DWORD )0x40000015L)
#define DBG_REPLY_LATER ((DWORD )0x40010001L)
#define DBG_TERMINATE_THREAD ((DWORD )0x40010003L)
#define DBG_TERMINATE_PROCESS ((DWORD )0x40010004L)
#define DBG_CONTROL_C ((DWORD )0x40010005L)
#define DBG_PRINTEXCEPTION_C ((DWORD )0x40010006L)
#define DBG_RIPEXCEPTION ((DWORD )0x40010007L)
#define DBG_CONTROL_BREAK ((DWORD )0x40010008L)
#define DBG_COMMAND_EXCEPTION ((DWORD )0x40010009L)
#define DBG_PRINTEXCEPTION_WIDE_C ((DWORD )0x4001000AL)
#define STATUS_GUARD_PAGE_VIOLATION ((DWORD )0x80000001L)
#define STATUS_DATATYPE_MISALIGNMENT ((DWORD )0x80000002L)
#define STATUS_BREAKPOINT ((DWORD )0x80000003L)
#define STATUS_SINGLE_STEP ((DWORD )0x80000004L)
#define STATUS_LONGJUMP ((DWORD )0x80000026L)
#define STATUS_UNWIND_CONSOLIDATE ((DWORD )0x80000029L)
#define DBG_EXCEPTION_NOT_HANDLED ((DWORD )0x80010001L)
#define STATUS_ACCESS_VIOLATION ((DWORD )0xC0000005L)
#define STATUS_IN_PAGE_ERROR ((DWORD )0xC0000006L)
#define STATUS_INVALID_HANDLE ((DWORD )0xC0000008L)
#define STATUS_INVALID_PARAMETER ((DWORD )0xC000000DL)
#define STATUS_NO_MEMORY ((DWORD )0xC0000017L)
#define STATUS_ILLEGAL_INSTRUCTION ((DWORD )0xC000001DL)
#define STATUS_NONCONTINUABLE_EXCEPTION ((DWORD )0xC0000025L)
#define STATUS_INVALID_DISPOSITION ((DWORD )0xC0000026L)
#define STATUS_ARRAY_BOUNDS_EXCEEDED ((DWORD )0xC000008CL)
#define STATUS_FLOAT_DENORMAL_OPERAND ((DWORD )0xC000008DL)
#define STATUS_FLOAT_DIVIDE_BY_ZERO ((DWORD )0xC000008EL)
#define STATUS_FLOAT_INEXACT_RESULT ((DWORD )0xC000008FL)
#define STATUS_FLOAT_INVALID_OPERATION ((DWORD )0xC0000090L)
#define STATUS_FLOAT_OVERFLOW ((DWORD )0xC0000091L)
#define STATUS_FLOAT_STACK_CHECK ((DWORD )0xC0000092L)
#define STATUS_FLOAT_UNDERFLOW ((DWORD )0xC0000093L)
#define STATUS_INTEGER_DIVIDE_BY_ZERO ((DWORD )0xC0000094L)
#define STATUS_INTEGER_OVERFLOW ((DWORD )0xC0000095L)
#define STATUS_PRIVILEGED_INSTRUCTION ((DWORD )0xC0000096L)
#define STATUS_STACK_OVERFLOW ((DWORD )0xC00000FDL)
#define STATUS_DLL_NOT_FOUND ((DWORD )0xC0000135L)
#define STATUS_ORDINAL_NOT_FOUND ((DWORD )0xC0000138L)
#define STATUS_ENTRYPOINT_NOT_FOUND ((DWORD )0xC0000139L)
#define STATUS_CONTROL_C_EXIT ((DWORD )0xC000013AL)
#define STATUS_DLL_INIT_FAILED ((DWORD )0xC0000142L)
#define STATUS_FLOAT_MULTIPLE_FAULTS ((DWORD )0xC00002B4L)
#define STATUS_FLOAT_MULTIPLE_TRAPS ((DWORD )0xC00002B5L)
#define STATUS_REG_NAT_CONSUMPTION ((DWORD )0xC00002C9L)
#define STATUS_HEAP_CORRUPTION ((DWORD )0xC0000374L)
#define STATUS_STACK_BUFFER_OVERRUN ((DWORD )0xC0000409L)
#define STATUS_INVALID_CRUNTIME_PARAMETER ((DWORD )0xC0000417L)
#define STATUS_ASSERTION_FAILURE ((DWORD )0xC0000420L)
#if defined(STATUS_SUCCESS) || (_WIN32_WINNT > 0x0500) || (_WIN32_FUSION >= 0x0100)
#define STATUS_SXS_EARLY_DEACTIVATION ((DWORD )0xC015000FL)
#define STATUS_SXS_INVALID_DEACTIVATION ((DWORD )0xC0150010L)
#endif
/*lint -restore */
#endif
#endif /* UMDF_USING_NTSTATUS */
#define MAXIMUM_WAIT_OBJECTS 64 // Maximum number of wait objects
#define MAXIMUM_SUSPEND_COUNT MAXCHAR // Maximum times thread can be suspended
typedef ULONG_PTR KSPIN_LOCK;
typedef KSPIN_LOCK *PKSPIN_LOCK;
// begin_ntoshvp
//
// Define 128-bit 16-byte aligned xmm register type.
//
typedef struct DECLSPEC_ALIGN(16) _M128A {
ULONGLONG Low;
LONGLONG High;
} M128A, *PM128A;
//
// Format of data for (F)XSAVE/(F)XRSTOR instruction
//
typedef struct DECLSPEC_ALIGN(16) _XSAVE_FORMAT {
WORD ControlWord;
WORD StatusWord;
BYTE TagWord;
BYTE Reserved1;
WORD ErrorOpcode;
DWORD ErrorOffset;
WORD ErrorSelector;
WORD Reserved2;
DWORD DataOffset;
WORD DataSelector;
WORD Reserved3;
DWORD MxCsr;
DWORD MxCsr_Mask;
M128A FloatRegisters[8];
#if defined(_WIN64)
M128A XmmRegisters[16];
BYTE Reserved4[96];
#else
M128A XmmRegisters[8];
BYTE Reserved4[224];
#endif
} XSAVE_FORMAT, *PXSAVE_FORMAT;
// end_ntoshvp
typedef struct DECLSPEC_ALIGN(8) _XSAVE_AREA_HEADER {
DWORD64 Mask;
DWORD64 CompactionMask;
DWORD64 Reserved2[6];
} XSAVE_AREA_HEADER, *PXSAVE_AREA_HEADER;
typedef struct DECLSPEC_ALIGN(16) _XSAVE_AREA {
XSAVE_FORMAT LegacyState;
XSAVE_AREA_HEADER Header;
} XSAVE_AREA, *PXSAVE_AREA;
typedef struct _XSTATE_CONTEXT {
DWORD64 Mask;
DWORD Length;
DWORD Reserved1;
_Field_size_bytes_opt_(Length) PXSAVE_AREA Area;
#if defined(_X86_)
DWORD Reserved2;
#endif
PVOID Buffer;
#if defined(_X86_)
DWORD Reserved3;
#endif
} XSTATE_CONTEXT, *PXSTATE_CONTEXT;
//
// Scope table structure definition.
//
typedef struct _SCOPE_TABLE_AMD64 {
DWORD Count;
struct {
DWORD BeginAddress;
DWORD EndAddress;
DWORD HandlerAddress;
DWORD JumpTarget;
} ScopeRecord[1];
} SCOPE_TABLE_AMD64, *PSCOPE_TABLE_AMD64;
// begin_ntoshvp
#ifdef _AMD64_
#if defined(_M_AMD64) && !defined(RC_INVOKED) && !defined(MIDL_PASS)
//
// Define bit test intrinsics.
//
#ifdef __cplusplus
extern "C" {
#endif
#define BitTest _bittest
#define BitTestAndComplement _bittestandcomplement
#define BitTestAndSet _bittestandset
#define BitTestAndReset _bittestandreset
#define InterlockedBitTestAndSet _interlockedbittestandset
#define InterlockedBitTestAndSetAcquire _interlockedbittestandset
#define InterlockedBitTestAndSetRelease _interlockedbittestandset
#define InterlockedBitTestAndSetNoFence _interlockedbittestandset
#define InterlockedBitTestAndReset _interlockedbittestandreset
#define InterlockedBitTestAndResetAcquire _interlockedbittestandreset
#define InterlockedBitTestAndResetRelease _interlockedbittestandreset
#define InterlockedBitTestAndResetNoFence _interlockedbittestandreset
#define BitTest64 _bittest64
#define BitTestAndComplement64 _bittestandcomplement64
#define BitTestAndSet64 _bittestandset64
#define BitTestAndReset64 _bittestandreset64
#define InterlockedBitTestAndSet64 _interlockedbittestandset64
#define InterlockedBitTestAndSet64Acquire _interlockedbittestandset64
#define InterlockedBitTestAndSet64Release _interlockedbittestandset64
#define InterlockedBitTestAndSet64NoFence _interlockedbittestandset64
#define InterlockedBitTestAndReset64 _interlockedbittestandreset64
#define InterlockedBitTestAndReset64Acquire _interlockedbittestandreset64
#define InterlockedBitTestAndReset64Release _interlockedbittestandreset64
#define InterlockedBitTestAndReset64NoFence _interlockedbittestandreset64
_Must_inspect_result_
BOOLEAN
_bittest (
_In_reads_bytes_((Offset/8)+1) LONG const *Base,
_In_range_(>=,0) LONG Offset
);
BOOLEAN
_bittestandcomplement (
_Inout_updates_bytes_((Offset/8)+1) LONG *Base,
_In_range_(>=,0) LONG Offset
);
BOOLEAN
_bittestandset (
_Inout_updates_bytes_((Offset/8)+1) LONG *Base,
_In_range_(>=,0) LONG Offset
);
BOOLEAN
_bittestandreset (
_Inout_updates_bytes_((Offset/8)+1) LONG *Base,
_In_range_(>=,0) LONG Offset
);
BOOLEAN
_interlockedbittestandset (
_Inout_updates_bytes_((Offset/8)+1) _Interlocked_operand_ LONG volatile *Base,
_In_range_(>=,0) LONG Offset
);
BOOLEAN
_interlockedbittestandreset (
_Inout_updates_bytes_((Offset/8)+1) _Interlocked_operand_ LONG volatile *Base,
_In_range_(>=,0) LONG Offset
);
BOOLEAN
_bittest64 (
_In_reads_bytes_((Offset/8)+1) LONG64 const *Base,
_In_range_(>=,0) LONG64 Offset
);
BOOLEAN
_bittestandcomplement64 (
_Inout_updates_bytes_((Offset/8)+1) LONG64 *Base,
_In_range_(>=,0) LONG64 Offset
);
BOOLEAN
_bittestandset64 (
_Inout_updates_bytes_((Offset/8)+1) LONG64 *Base,
_In_range_(>=,0) LONG64 Offset
);
BOOLEAN
_bittestandreset64 (
_Inout_updates_bytes_((Offset/8)+1) LONG64 *Base,
_In_range_(>=,0) LONG64 Offset
);
BOOLEAN
_interlockedbittestandset64 (
_Inout_updates_bytes_((Offset/8)+1) _Interlocked_operand_ LONG64 volatile *Base,
_In_range_(>=,0) LONG64 Offset
);
BOOLEAN
_interlockedbittestandreset64 (
_Inout_updates_bytes_((Offset/8)+1) _Interlocked_operand_ LONG64 volatile *Base,
_In_range_(>=,0) LONG64 Offset
);
#pragma intrinsic(_bittest)
#pragma intrinsic(_bittestandcomplement)
#pragma intrinsic(_bittestandset)
#pragma intrinsic(_bittestandreset)
#pragma intrinsic(_interlockedbittestandset)
#pragma intrinsic(_interlockedbittestandreset)
#pragma intrinsic(_bittest64)
#pragma intrinsic(_bittestandcomplement64)
#pragma intrinsic(_bittestandset64)
#pragma intrinsic(_bittestandreset64)
#pragma intrinsic(_interlockedbittestandset64)
#pragma intrinsic(_interlockedbittestandreset64)
//
// Define bit scan intrinsics.
//
#define BitScanForward _BitScanForward
#define BitScanReverse _BitScanReverse
#define BitScanForward64 _BitScanForward64
#define BitScanReverse64 _BitScanReverse64
_Success_(return!=0)
BOOLEAN
_BitScanForward (
_Out_ DWORD *Index,
_In_ DWORD Mask
);
_Success_(return!=0)
BOOLEAN
_BitScanReverse (
_Out_ DWORD *Index,
_In_ DWORD Mask
);
_Success_(return!=0)
BOOLEAN
_BitScanForward64 (
_Out_ DWORD *Index,
_In_ DWORD64 Mask
);
_Success_(return!=0)
BOOLEAN
_BitScanReverse64 (
_Out_ DWORD *Index,
_In_ DWORD64 Mask
);
#pragma intrinsic(_BitScanForward)
#pragma intrinsic(_BitScanReverse)
#pragma intrinsic(_BitScanForward64)
#pragma intrinsic(_BitScanReverse64)
//
// Interlocked intrinsic functions.
//
#define InterlockedIncrement16 _InterlockedIncrement16
#define InterlockedIncrementAcquire16 _InterlockedIncrement16
#define InterlockedIncrementRelease16 _InterlockedIncrement16
#define InterlockedIncrementNoFence16 _InterlockedIncrement16
#define InterlockedDecrement16 _InterlockedDecrement16
#define InterlockedDecrementAcquire16 _InterlockedDecrement16
#define InterlockedDecrementRelease16 _InterlockedDecrement16
#define InterlockedDecrementNoFence16 _InterlockedDecrement16
#define InterlockedCompareExchange16 _InterlockedCompareExchange16
#define InterlockedCompareExchangeAcquire16 _InterlockedCompareExchange16
#define InterlockedCompareExchangeRelease16 _InterlockedCompareExchange16
#define InterlockedCompareExchangeNoFence16 _InterlockedCompareExchange16
#define InterlockedAnd _InterlockedAnd
#define InterlockedAndAcquire _InterlockedAnd
#define InterlockedAndRelease _InterlockedAnd
#define InterlockedAndNoFence _InterlockedAnd
#define InterlockedOr _InterlockedOr
#define InterlockedOrAcquire _InterlockedOr
#define InterlockedOrRelease _InterlockedOr
#define InterlockedOrNoFence _InterlockedOr
#define InterlockedXor _InterlockedXor
#define InterlockedXorAcquire _InterlockedXor
#define InterlockedXorRelease _InterlockedXor
#define InterlockedXorNoFence _InterlockedXor
#define InterlockedIncrement _InterlockedIncrement
#define InterlockedIncrementAcquire _InterlockedIncrement
#define InterlockedIncrementRelease _InterlockedIncrement
#define InterlockedIncrementNoFence _InterlockedIncrement
#define InterlockedDecrement _InterlockedDecrement
#define InterlockedDecrementAcquire _InterlockedDecrement
#define InterlockedDecrementRelease _InterlockedDecrement
#define InterlockedDecrementNoFence _InterlockedDecrement
#define InterlockedAdd _InlineInterlockedAdd
#define InterlockedAddAcquire _InlineInterlockedAdd
#define InterlockedAddRelease _InlineInterlockedAdd
#define InterlockedAddNoFence _InlineInterlockedAdd
#define InterlockedExchange _InterlockedExchange
#define InterlockedExchangeAcquire _InterlockedExchange
#define InterlockedExchangeNoFence _InterlockedExchange
#define InterlockedExchangeAdd _InterlockedExchangeAdd
#define InterlockedExchangeAddAcquire _InterlockedExchangeAdd
#define InterlockedExchangeAddRelease _InterlockedExchangeAdd
#define InterlockedExchangeAddNoFence _InterlockedExchangeAdd
#define InterlockedCompareExchange _InterlockedCompareExchange
#define InterlockedCompareExchangeAcquire _InterlockedCompareExchange
#define InterlockedCompareExchangeRelease _InterlockedCompareExchange
#define InterlockedCompareExchangeNoFence _InterlockedCompareExchange
#define InterlockedAnd64 _InterlockedAnd64
#define InterlockedAnd64Acquire _InterlockedAnd64
#define InterlockedAnd64Release _InterlockedAnd64
#define InterlockedAnd64NoFence _InterlockedAnd64
#define InterlockedAndAffinity InterlockedAnd64
#define InterlockedOr64 _InterlockedOr64
#define InterlockedOr64Acquire _InterlockedOr64
#define InterlockedOr64Release _InterlockedOr64
#define InterlockedOr64NoFence _InterlockedOr64
#define InterlockedOrAffinity InterlockedOr64
#define InterlockedXor64 _InterlockedXor64
#define InterlockedXor64Acquire _InterlockedXor64
#define InterlockedXor64Release _InterlockedXor64
#define InterlockedXor64NoFence _InterlockedXor64
#define InterlockedIncrement64 _InterlockedIncrement64
#define InterlockedIncrementAcquire64 _InterlockedIncrement64
#define InterlockedIncrementRelease64 _InterlockedIncrement64
#define InterlockedIncrementNoFence64 _InterlockedIncrement64
#define InterlockedDecrement64 _InterlockedDecrement64
#define InterlockedDecrementAcquire64 _InterlockedDecrement64
#define InterlockedDecrementRelease64 _InterlockedDecrement64
#define InterlockedDecrementNoFence64 _InterlockedDecrement64
#define InterlockedAdd64 _InlineInterlockedAdd64
#define InterlockedAddAcquire64 _InlineInterlockedAdd64
#define InterlockedAddRelease64 _InlineInterlockedAdd64
#define InterlockedAddNoFence64 _InlineInterlockedAdd64
#define InterlockedExchange64 _InterlockedExchange64
#define InterlockedExchangeAcquire64 InterlockedExchange64
#define InterlockedExchangeNoFence64 InterlockedExchange64
#define InterlockedExchangeAdd64 _InterlockedExchangeAdd64
#define InterlockedExchangeAddAcquire64 _InterlockedExchangeAdd64
#define InterlockedExchangeAddRelease64 _InterlockedExchangeAdd64
#define InterlockedExchangeAddNoFence64 _InterlockedExchangeAdd64
#define InterlockedCompareExchange64 _InterlockedCompareExchange64
#define InterlockedCompareExchangeAcquire64 InterlockedCompareExchange64
#define InterlockedCompareExchangeRelease64 InterlockedCompareExchange64
#define InterlockedCompareExchangeNoFence64 InterlockedCompareExchange64
#define InterlockedCompareExchange128 _InterlockedCompareExchange128
#define InterlockedExchangePointer _InterlockedExchangePointer
#define InterlockedExchangePointerNoFence _InterlockedExchangePointer
#define InterlockedExchangePointerAcquire _InterlockedExchangePointer
#define InterlockedCompareExchangePointer _InterlockedCompareExchangePointer
#define InterlockedCompareExchangePointerAcquire _InterlockedCompareExchangePointer
#define InterlockedCompareExchangePointerRelease _InterlockedCompareExchangePointer
#define InterlockedCompareExchangePointerNoFence _InterlockedCompareExchangePointer
#define InterlockedExchangeAddSizeT(a, b) InterlockedExchangeAdd64((LONG64 *)a, b)
#define InterlockedExchangeAddSizeTAcquire(a, b) InterlockedExchangeAdd64((LONG64 *)a, b)
#define InterlockedExchangeAddSizeTNoFence(a, b) InterlockedExchangeAdd64((LONG64 *)a, b)
#define InterlockedIncrementSizeT(a) InterlockedIncrement64((LONG64 *)a)
#define InterlockedIncrementSizeTNoFence(a) InterlockedIncrement64((LONG64 *)a)
#define InterlockedDecrementSizeT(a) InterlockedDecrement64((LONG64 *)a)
#define InterlockedDecrementSizeTNoFence(a) InterlockedDecrement64((LONG64 *)a)
SHORT
InterlockedIncrement16 (
_Inout_ _Interlocked_operand_ SHORT volatile *Addend
);
SHORT
InterlockedDecrement16 (
_Inout_ _Interlocked_operand_ SHORT volatile *Addend
);
SHORT
InterlockedCompareExchange16 (
_Inout_ _Interlocked_operand_ SHORT volatile *Destination,
_In_ SHORT ExChange,
_In_ SHORT Comperand
);
LONG
InterlockedAnd (
_Inout_ _Interlocked_operand_ LONG volatile *Destination,
_In_ LONG Value
);
LONG
InterlockedOr (
_Inout_ _Interlocked_operand_ LONG volatile *Destination,
_In_ LONG Value
);
LONG
InterlockedXor (
_Inout_ _Interlocked_operand_ LONG volatile *Destination,
_In_ LONG Value
);
LONG64
InterlockedAnd64 (
_Inout_ _Interlocked_operand_ LONG64 volatile *Destination,
_In_ LONG64 Value
);
LONG64
InterlockedOr64 (
_Inout_ _Interlocked_operand_ LONG64 volatile *Destination,
_In_ LONG64 Value
);
LONG64
InterlockedXor64 (
_Inout_ _Interlocked_operand_ LONG64 volatile *Destination,
_In_ LONG64 Value
);
LONG
InterlockedIncrement (
_Inout_ _Interlocked_operand_ LONG volatile *Addend
);
LONG
InterlockedDecrement (
_Inout_ _Interlocked_operand_ LONG volatile *Addend
);
LONG
InterlockedExchange (
_Inout_ _Interlocked_operand_ LONG volatile *Target,
_In_ LONG Value
);
LONG
InterlockedExchangeAdd (
_Inout_ _Interlocked_operand_ LONG volatile *Addend,
_In_ LONG Value
);
#if !defined(_X86AMD64_)
__forceinline
LONG
InterlockedAdd (
_Inout_ _Interlocked_operand_ LONG volatile *Addend,
_In_ LONG Value
)
{
return InterlockedExchangeAdd(Addend, Value) + Value;
}
#endif
LONG
InterlockedCompareExchange (
_Inout_ _Interlocked_operand_ LONG volatile *Destination,
_In_ LONG ExChange,
_In_ LONG Comperand
);
LONG64
InterlockedIncrement64 (
_Inout_ _Interlocked_operand_ LONG64 volatile *Addend
);
LONG64
InterlockedDecrement64 (
_Inout_ _Interlocked_operand_ LONG64 volatile *Addend
);
LONG64
InterlockedExchange64 (
_Inout_ _Interlocked_operand_ LONG64 volatile *Target,
_In_ LONG64 Value
);
LONG64
InterlockedExchangeAdd64 (
_Inout_ _Interlocked_operand_ LONG64 volatile *Addend,
_In_ LONG64 Value
);
#if !defined(_X86AMD64_)
__forceinline
LONG64
_InlineInterlockedAdd64 (
_Inout_ _Interlocked_operand_ LONG64 volatile *Addend,
_In_ LONG64 Value
)
{
return InterlockedExchangeAdd64(Addend, Value) + Value;
}
#endif
LONG64
InterlockedCompareExchange64 (
_Inout_ _Interlocked_operand_ LONG64 volatile *Destination,
_In_ LONG64 ExChange,
_In_ LONG64 Comperand
);
BOOLEAN
InterlockedCompareExchange128 (
_Inout_ _Interlocked_operand_ LONG64 volatile *Destination,
_In_ LONG64 ExchangeHigh,
_In_ LONG64 ExchangeLow,
_Inout_ LONG64 *ComparandResult
);
_Ret_writes_(_Inexpressible_(Unknown)) PVOID
InterlockedCompareExchangePointer (
_Inout_ _At_(*Destination,
_Pre_writable_byte_size_(_Inexpressible_(Unknown))
_Post_writable_byte_size_(_Inexpressible_(Unknown)))
_Interlocked_operand_ PVOID volatile *Destination,
_In_opt_ PVOID Exchange,
_In_opt_ PVOID Comperand
);
_Ret_writes_(_Inexpressible_(Unknown)) PVOID
InterlockedExchangePointer(
_Inout_ _At_(*Target,
_Pre_writable_byte_size_(_Inexpressible_(Unknown))
_Post_writable_byte_size_(_Inexpressible_(Unknown)))
_Interlocked_operand_ PVOID volatile *Target,
_In_opt_ PVOID Value
);
#pragma intrinsic(_InterlockedIncrement16)
#pragma intrinsic(_InterlockedDecrement16)
#pragma intrinsic(_InterlockedCompareExchange16)
#pragma intrinsic(_InterlockedAnd)
#pragma intrinsic(_InterlockedOr)
#pragma intrinsic(_InterlockedXor)
#pragma intrinsic(_InterlockedIncrement)
#pragma intrinsic(_InterlockedDecrement)
#pragma intrinsic(_InterlockedExchange)
#pragma intrinsic(_InterlockedExchangeAdd)
#pragma intrinsic(_InterlockedCompareExchange)
#pragma intrinsic(_InterlockedAnd64)
#pragma intrinsic(_InterlockedOr64)
#pragma intrinsic(_InterlockedXor64)
#pragma intrinsic(_InterlockedIncrement64)
#pragma intrinsic(_InterlockedDecrement64)
#pragma intrinsic(_InterlockedExchange64)
#pragma intrinsic(_InterlockedExchangeAdd64)
#pragma intrinsic(_InterlockedCompareExchange64)
#if _MSC_VER >= 1500
#pragma intrinsic(_InterlockedCompareExchange128)
#endif
#pragma intrinsic(_InterlockedExchangePointer)
#pragma intrinsic(_InterlockedCompareExchangePointer)
#if (_MSC_VER >= 1600)
#define InterlockedExchange8 _InterlockedExchange8
#define InterlockedExchange16 _InterlockedExchange16
CHAR
InterlockedExchange8 (
_Inout_ _Interlocked_operand_ CHAR volatile *Target,
_In_ CHAR Value
);
SHORT
InterlockedExchange16 (
_Inout_ _Interlocked_operand_ SHORT volatile *Destination,
_In_ SHORT ExChange
);
#pragma intrinsic(_InterlockedExchange8)
#pragma intrinsic(_InterlockedExchange16)
#endif /* _MSC_VER >= 1600 */
#if _MSC_FULL_VER >= 140041204
#define InterlockedExchangeAdd8 _InterlockedExchangeAdd8
#define InterlockedAnd8 _InterlockedAnd8
#define InterlockedOr8 _InterlockedOr8
#define InterlockedXor8 _InterlockedXor8
#define InterlockedAnd16 _InterlockedAnd16
#define InterlockedOr16 _InterlockedOr16
#define InterlockedXor16 _InterlockedXor16
char
InterlockedExchangeAdd8 (
_Inout_ _Interlocked_operand_ char volatile * _Addend,
_In_ char _Value
);
char
InterlockedAnd8 (
_Inout_ _Interlocked_operand_ char volatile *Destination,
_In_ char Value
);
char
InterlockedOr8 (
_Inout_ _Interlocked_operand_ char volatile *Destination,
_In_ char Value
);
char
InterlockedXor8 (
_Inout_ _Interlocked_operand_ char volatile *Destination,
_In_ char Value
);
SHORT
InterlockedAnd16(
_Inout_ _Interlocked_operand_ SHORT volatile *Destination,
_In_ SHORT Value
);
SHORT
InterlockedOr16(
_Inout_ _Interlocked_operand_ SHORT volatile *Destination,
_In_ SHORT Value
);
SHORT
InterlockedXor16(
_Inout_ _Interlocked_operand_ SHORT volatile *Destination,
_In_ SHORT Value
);
#pragma intrinsic (_InterlockedExchangeAdd8)
#pragma intrinsic (_InterlockedAnd8)
#pragma intrinsic (_InterlockedOr8)
#pragma intrinsic (_InterlockedXor8)
#pragma intrinsic (_InterlockedAnd16)
#pragma intrinsic (_InterlockedOr16)
#pragma intrinsic (_InterlockedXor16)
#endif
// end_ntoshvp
//
// Define extended CPUID intrinsic.
//
#define CpuIdEx __cpuidex
VOID
__cpuidex (
int CPUInfo[4],
int Function,
int SubLeaf
);
#pragma intrinsic(__cpuidex)
// begin_ntoshvp
//
// Define function to flush a cache line.
//
#define CacheLineFlush(Address) _mm_clflush(Address)
VOID
_mm_clflush (
_In_ VOID const *Address
);
#pragma intrinsic(_mm_clflush)
// begin_wudfpwdm
VOID
_ReadWriteBarrier (
VOID
);
#pragma intrinsic(_ReadWriteBarrier)
//
// Define memory fence intrinsics
//
#define FastFence __faststorefence
// end_wudfpwdm
#define LoadFence _mm_lfence
#define MemoryFence _mm_mfence
#define StoreFence _mm_sfence
// begin_wudfpwdm
VOID
__faststorefence (
VOID
);
// end_wudfpwdm
VOID
_mm_lfence (
VOID
);
VOID
_mm_mfence (
VOID
);
VOID
_mm_sfence (
VOID
);
VOID
_mm_pause (
VOID
);
VOID
_mm_prefetch (
_In_ CHAR CONST *a,
_In_ int sel
);
VOID
_m_prefetchw (
_In_ volatile CONST VOID *Source
);
//
// Define constants for use with _mm_prefetch.
//
#define _MM_HINT_T0 1
#define _MM_HINT_T1 2
#define _MM_HINT_T2 3
#define _MM_HINT_NTA 0
// begin_wudfpwdm
#pragma intrinsic(__faststorefence)
// end_wudfpwdm
#pragma intrinsic(_mm_pause)
#pragma intrinsic(_mm_prefetch)
#pragma intrinsic(_mm_lfence)
#pragma intrinsic(_mm_mfence)
#pragma intrinsic(_mm_sfence)
#pragma intrinsic(_m_prefetchw)
#define YieldProcessor _mm_pause
#define MemoryBarrier __faststorefence
#define PreFetchCacheLine(l, a) _mm_prefetch((CHAR CONST *) a, l)
#define PrefetchForWrite(p) _m_prefetchw(p)
#define ReadForWriteAccess(p) (_m_prefetchw(p), *(p))
//
// PreFetchCacheLine level defines.
//
#define PF_TEMPORAL_LEVEL_1 _MM_HINT_T0
#define PF_TEMPORAL_LEVEL_2 _MM_HINT_T1
#define PF_TEMPORAL_LEVEL_3 _MM_HINT_T2
#define PF_NON_TEMPORAL_LEVEL_ALL _MM_HINT_NTA
//
// Define get/set MXCSR intrinsics.
//
#define ReadMxCsr _mm_getcsr
#define WriteMxCsr _mm_setcsr
unsigned int
_mm_getcsr (
VOID
);
VOID
_mm_setcsr (
_In_ unsigned int MxCsr
);
#pragma intrinsic(_mm_getcsr)
#pragma intrinsic(_mm_setcsr)
//
// Define function to get the caller's EFLAGs value.
//
#define GetCallersEflags() __getcallerseflags()
unsigned __int32
__getcallerseflags (
VOID
);
#pragma intrinsic(__getcallerseflags)
//
// Define function to get segment limit.
//
#define GetSegmentLimit __segmentlimit
DWORD
__segmentlimit (
_In_ DWORD Selector
);
#pragma intrinsic(__segmentlimit)
//
// Define function to read the value of a performance counter.
//
#define ReadPMC __readpmc
DWORD64
__readpmc (
_In_ DWORD Counter
);
#pragma intrinsic(__readpmc)
//
// Define function to read the value of the time stamp counter
//
#define ReadTimeStampCounter() __rdtsc()
DWORD64
__rdtsc (
VOID
);
#pragma intrinsic(__rdtsc)
//
// Define functions to move strings as bytes, words, dwords, and qwords.
//
VOID
__movsb (
_Out_writes_all_(Count) PBYTE Destination,
_In_reads_(Count) BYTE const *Source,
_In_ SIZE_T Count
);
VOID
__movsw (
_Out_writes_all_(Count) PWORD Destination,
_In_reads_(Count) WORD const *Source,
_In_ SIZE_T Count
);
VOID
__movsd (
_Out_writes_all_(Count) PDWORD Destination,
_In_reads_(Count) DWORD const *Source,
_In_ SIZE_T Count
);
VOID
__movsq (
_Out_writes_all_(Count) PDWORD64 Destination,
_In_reads_(Count) DWORD64 const *Source,
_In_ SIZE_T Count
);
#pragma intrinsic(__movsb)
#pragma intrinsic(__movsw)
#pragma intrinsic(__movsd)
#pragma intrinsic(__movsq)
//
// Define functions to store strings as bytes, words, dwords, and qwords.
//
VOID
__stosb (
_Out_writes_all_(Count) PBYTE Destination,
_In_ BYTE Value,
_In_ SIZE_T Count
);
VOID
__stosw (
_Out_writes_all_(Count) PWORD Destination,
_In_ WORD Value,
_In_ SIZE_T Count
);
VOID
__stosd (
_Out_writes_all_(Count) PDWORD Destination,
_In_ DWORD Value,
_In_ SIZE_T Count
);
VOID
__stosq (
_Out_writes_all_(Count) PDWORD64 Destination,
_In_ DWORD64 Value,
_In_ SIZE_T Count
);
#pragma intrinsic(__stosb)
#pragma intrinsic(__stosw)
#pragma intrinsic(__stosd)
#pragma intrinsic(__stosq)
//
// Define functions to capture the high 64-bits of a 128-bit multiply.
//
#define MultiplyHigh __mulh
#define UnsignedMultiplyHigh __umulh
LONGLONG
MultiplyHigh (
_In_ LONG64 Multiplier,
_In_ LONG64 Multiplicand
);
ULONGLONG
UnsignedMultiplyHigh (
_In_ DWORD64 Multiplier,
_In_ DWORD64 Multiplicand
);
#pragma intrinsic(__mulh)
#pragma intrinsic(__umulh)
//
// Define population count intrinsic.
//
#define PopulationCount64 __popcnt64
DWORD64
PopulationCount64 (
_In_ DWORD64 operand
);
#if _MSC_VER >= 1500
#pragma intrinsic(__popcnt64)
#endif
//
// Define functions to perform 128-bit shifts
//
#define ShiftLeft128 __shiftleft128
#define ShiftRight128 __shiftright128
DWORD64
ShiftLeft128 (
_In_ DWORD64 LowPart,
_In_ DWORD64 HighPart,
_In_ BYTE Shift
);
DWORD64
ShiftRight128 (
_In_ DWORD64 LowPart,
_In_ DWORD64 HighPart,
_In_ BYTE Shift
);
#pragma intrinsic(__shiftleft128)
#pragma intrinsic(__shiftright128)
//
// Define functions to perform 128-bit multiplies.
//
#define Multiply128 _mul128
LONG64
Multiply128 (
_In_ LONG64 Multiplier,
_In_ LONG64 Multiplicand,
_Out_ LONG64 *HighProduct
);
#pragma intrinsic(_mul128)
#ifndef UnsignedMultiply128
#define UnsignedMultiply128 _umul128
DWORD64
UnsignedMultiply128 (
_In_ DWORD64 Multiplier,
_In_ DWORD64 Multiplicand,
_Out_ DWORD64 *HighProduct
);
#pragma intrinsic(_umul128)
#endif
__forceinline
LONG64
MultiplyExtract128 (
_In_ LONG64 Multiplier,
_In_ LONG64 Multiplicand,
_In_ BYTE Shift
)
{
LONG64 extractedProduct;
LONG64 highProduct;
LONG64 lowProduct;
BOOLEAN negate;
DWORD64 uhighProduct;
DWORD64 ulowProduct;
lowProduct = Multiply128(Multiplier, Multiplicand, &highProduct);
negate = FALSE;
uhighProduct = (DWORD64)highProduct;
ulowProduct = (DWORD64)lowProduct;
if (highProduct < 0) {
negate = TRUE;
uhighProduct = (DWORD64)(-highProduct);
ulowProduct = (DWORD64)(-lowProduct);
if (ulowProduct != 0) {
uhighProduct -= 1;
}
}
extractedProduct = (LONG64)ShiftRight128(ulowProduct, uhighProduct, Shift);
if (negate != FALSE) {
extractedProduct = -extractedProduct;
}
return extractedProduct;
}
__forceinline
DWORD64
UnsignedMultiplyExtract128 (
_In_ DWORD64 Multiplier,
_In_ DWORD64 Multiplicand,
_In_ BYTE Shift
)
{
DWORD64 extractedProduct;
DWORD64 highProduct;
DWORD64 lowProduct;
lowProduct = UnsignedMultiply128(Multiplier, Multiplicand, &highProduct);
extractedProduct = ShiftRight128(lowProduct, highProduct, Shift);
return extractedProduct;
}
//
// Define functions to read and write the uer TEB and the system PCR/PRCB.
//
BYTE
__readgsbyte (
_In_ DWORD Offset
);
WORD
__readgsword (
_In_ DWORD Offset
);
DWORD
__readgsdword (
_In_ DWORD Offset
);
DWORD64
__readgsqword (
_In_ DWORD Offset
);
VOID
__writegsbyte (
_In_ DWORD Offset,
_In_ BYTE Data
);
VOID
__writegsword (
_In_ DWORD Offset,
_In_ WORD Data
);
VOID
__writegsdword (
_In_ DWORD Offset,
_In_ DWORD Data
);
VOID
__writegsqword (
_In_ DWORD Offset,
_In_ DWORD64 Data
);
#pragma intrinsic(__readgsbyte)
#pragma intrinsic(__readgsword)
#pragma intrinsic(__readgsdword)
#pragma intrinsic(__readgsqword)
#pragma intrinsic(__writegsbyte)
#pragma intrinsic(__writegsword)
#pragma intrinsic(__writegsdword)
#pragma intrinsic(__writegsqword)
#if !defined(_MANAGED)
VOID
__incgsbyte (
_In_ DWORD Offset
);
VOID
__addgsbyte (
_In_ DWORD Offset,
_In_ BYTE Value
);
VOID
__incgsword (
_In_ DWORD Offset
);
VOID
__addgsword (
_In_ DWORD Offset,
_In_ WORD Value
);
VOID
__incgsdword (
_In_ DWORD Offset
);
VOID
__addgsdword (
_In_ DWORD Offset,
_In_ DWORD Value
);
VOID
__incgsqword (
_In_ DWORD Offset
);
VOID
__addgsqword (
_In_ DWORD Offset,
_In_ DWORD64 Value
);
#if 0
#pragma intrinsic(__incgsbyte)
#pragma intrinsic(__addgsbyte)
#pragma intrinsic(__incgsword)
#pragma intrinsic(__addgsword)
#pragma intrinsic(__incgsdword)
#pragma intrinsic(__addgsdword)
#pragma intrinsic(__incgsqword)
#pragma intrinsic(__addgsqword)
#endif
#endif // !defined(_MANAGED)
#ifdef __cplusplus
}
#endif
#endif // defined(_M_AMD64) && !defined(RC_INVOKED) && !defined(MIDL_PASS)
// end_ntoshvp
//
// The following values specify the type of access in the first parameter
// of the exception record whan the exception code specifies an access
// violation.
//
#define EXCEPTION_READ_FAULT 0 // exception caused by a read
#define EXCEPTION_WRITE_FAULT 1 // exception caused by a write
#define EXCEPTION_EXECUTE_FAULT 8 // exception caused by an instruction fetch
// begin_wx86
//
// The following flags control the contents of the CONTEXT structure.
//
#if !defined(RC_INVOKED)
#define CONTEXT_AMD64 0x00100000L
// end_wx86
#define CONTEXT_CONTROL (CONTEXT_AMD64 | 0x00000001L)
#define CONTEXT_INTEGER (CONTEXT_AMD64 | 0x00000002L)
#define CONTEXT_SEGMENTS (CONTEXT_AMD64 | 0x00000004L)
#define CONTEXT_FLOATING_POINT (CONTEXT_AMD64 | 0x00000008L)
#define CONTEXT_DEBUG_REGISTERS (CONTEXT_AMD64 | 0x00000010L)
#define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_INTEGER | \
CONTEXT_FLOATING_POINT)
#define CONTEXT_ALL (CONTEXT_CONTROL | CONTEXT_INTEGER | \
CONTEXT_SEGMENTS | CONTEXT_FLOATING_POINT | \
CONTEXT_DEBUG_REGISTERS)
#define CONTEXT_XSTATE (CONTEXT_AMD64 | 0x00000040L)
#if defined(XBOX_SYSTEMOS)
#define CONTEXT_KERNEL_DEBUGGER 0x04000000L
#endif
#define CONTEXT_EXCEPTION_ACTIVE 0x08000000L
#define CONTEXT_SERVICE_ACTIVE 0x10000000L
#define CONTEXT_EXCEPTION_REQUEST 0x40000000L
#define CONTEXT_EXCEPTION_REPORTING 0x80000000L
// begin_wx86
#endif // !defined(RC_INVOKED)
//
// Define initial MxCsr and FpCsr control.
//
#define INITIAL_MXCSR 0x1f80 // initial MXCSR value
#define INITIAL_FPCSR 0x027f // initial FPCSR value
// end_ntddk
// begin_wdm begin_ntosp
// begin_ntoshvp
typedef XSAVE_FORMAT XMM_SAVE_AREA32, *PXMM_SAVE_AREA32;
// end_wdm end_ntosp
// begin_ntddk
//
// Context Frame
//
// This frame has a several purposes: 1) it is used as an argument to
// NtContinue, 2) it is used to constuct a call frame for APC delivery,
// and 3) it is used in the user level thread creation routines.
//
//
// The flags field within this record controls the contents of a CONTEXT
// record.
//
// If the context record is used as an input parameter, then for each
// portion of the context record controlled by a flag whose value is
// set, it is assumed that that portion of the context record contains
// valid context. If the context record is being used to modify a threads
// context, then only that portion of the threads context is modified.
//
// If the context record is used as an output parameter to capture the
// context of a thread, then only those portions of the thread's context
// corresponding to set flags will be returned.
//
// CONTEXT_CONTROL specifies SegSs, Rsp, SegCs, Rip, and EFlags.
//
// CONTEXT_INTEGER specifies Rax, Rcx, Rdx, Rbx, Rbp, Rsi, Rdi, and R8-R15.
//
// CONTEXT_SEGMENTS specifies SegDs, SegEs, SegFs, and SegGs.
//
// CONTEXT_FLOATING_POINT specifies Xmm0-Xmm15.
//
// CONTEXT_DEBUG_REGISTERS specifies Dr0-Dr3 and Dr6-Dr7.
//
typedef struct DECLSPEC_ALIGN(16) _CONTEXT {
//
// Register parameter home addresses.
//
// N.B. These fields are for convience - they could be used to extend the
// context record in the future.
//
DWORD64 P1Home;
DWORD64 P2Home;
DWORD64 P3Home;
DWORD64 P4Home;
DWORD64 P5Home;
DWORD64 P6Home;
//
// Control flags.
//
DWORD ContextFlags;
DWORD MxCsr;
//
// Segment Registers and processor flags.
//
WORD SegCs;
WORD SegDs;
WORD SegEs;
WORD SegFs;
WORD SegGs;
WORD SegSs;
DWORD EFlags;
//
// Debug registers
//
DWORD64 Dr0;
DWORD64 Dr1;
DWORD64 Dr2;
DWORD64 Dr3;
DWORD64 Dr6;
DWORD64 Dr7;
//
// Integer registers.
//
DWORD64 Rax;
DWORD64 Rcx;
DWORD64 Rdx;
DWORD64 Rbx;
DWORD64 Rsp;
DWORD64 Rbp;
DWORD64 Rsi;
DWORD64 Rdi;
DWORD64 R8;
DWORD64 R9;
DWORD64 R10;
DWORD64 R11;
DWORD64 R12;
DWORD64 R13;
DWORD64 R14;
DWORD64 R15;
//
// Program counter.
//
DWORD64 Rip;
//
// Floating point state.
//
union {
XMM_SAVE_AREA32 FltSave;
struct {
M128A Header[2];
M128A Legacy[8];
M128A Xmm0;
M128A Xmm1;
M128A Xmm2;
M128A Xmm3;
M128A Xmm4;
M128A Xmm5;
M128A Xmm6;
M128A Xmm7;
M128A Xmm8;
M128A Xmm9;
M128A Xmm10;
M128A Xmm11;
M128A Xmm12;
M128A Xmm13;
M128A Xmm14;
M128A Xmm15;
} DUMMYSTRUCTNAME;
} DUMMYUNIONNAME;
//
// Vector registers.
//
M128A VectorRegister[26];
DWORD64 VectorControl;
//
// Special debug control registers.
//
DWORD64 DebugControl;
DWORD64 LastBranchToRip;
DWORD64 LastBranchFromRip;
DWORD64 LastExceptionToRip;
DWORD64 LastExceptionFromRip;
} CONTEXT, *PCONTEXT;
// end_ntoshvp
//
// Select platform-specific definitions
//
typedef struct _IMAGE_RUNTIME_FUNCTION_ENTRY RUNTIME_FUNCTION, *PRUNTIME_FUNCTION;
typedef SCOPE_TABLE_AMD64 SCOPE_TABLE, *PSCOPE_TABLE;
#define RUNTIME_FUNCTION_INDIRECT 0x1
//
// Define unwind information flags.
//
#define UNW_FLAG_NHANDLER 0x0
#define UNW_FLAG_EHANDLER 0x1
#define UNW_FLAG_UHANDLER 0x2
#define UNW_FLAG_CHAININFO 0x4
#define UNW_FLAG_NO_EPILOGUE 0x80000000UL // Software only flag
//
// Define unwind history table structure.
//
#define UNWIND_HISTORY_TABLE_SIZE 12
typedef struct _UNWIND_HISTORY_TABLE_ENTRY {
DWORD64 ImageBase;
PRUNTIME_FUNCTION FunctionEntry;
} UNWIND_HISTORY_TABLE_ENTRY, *PUNWIND_HISTORY_TABLE_ENTRY;
typedef struct _UNWIND_HISTORY_TABLE {
DWORD Count;
BYTE LocalHint;
BYTE GlobalHint;
BYTE Search;
BYTE Once;
DWORD64 LowAddress;
DWORD64 HighAddress;
UNWIND_HISTORY_TABLE_ENTRY Entry[UNWIND_HISTORY_TABLE_SIZE];
} UNWIND_HISTORY_TABLE, *PUNWIND_HISTORY_TABLE;
//
// Define dynamic function table entry.
//
typedef
_Function_class_(GET_RUNTIME_FUNCTION_CALLBACK)
PRUNTIME_FUNCTION
GET_RUNTIME_FUNCTION_CALLBACK (
_In_ DWORD64 ControlPc,
_In_opt_ PVOID Context
);
typedef GET_RUNTIME_FUNCTION_CALLBACK *PGET_RUNTIME_FUNCTION_CALLBACK;
typedef
_Function_class_(OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK)
DWORD
OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK (
_In_ HANDLE Process,
_In_ PVOID TableAddress,
_Out_ PDWORD Entries,
_Out_ PRUNTIME_FUNCTION* Functions
);
typedef OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK *POUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK;
#define OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK_EXPORT_NAME \
"OutOfProcessFunctionTableCallback"
//
// Define exception dispatch context structure.
//
typedef struct _DISPATCHER_CONTEXT {
DWORD64 ControlPc;
DWORD64 ImageBase;
PRUNTIME_FUNCTION FunctionEntry;
DWORD64 EstablisherFrame;
DWORD64 TargetIp;
PCONTEXT ContextRecord;
PEXCEPTION_ROUTINE LanguageHandler;
PVOID HandlerData;
PUNWIND_HISTORY_TABLE HistoryTable;
DWORD ScopeIndex;
DWORD Fill0;
} DISPATCHER_CONTEXT, *PDISPATCHER_CONTEXT;
//
// Define exception filter and termination handler function types.
//
struct _EXCEPTION_POINTERS;
typedef
LONG
(*PEXCEPTION_FILTER) (
struct _EXCEPTION_POINTERS *ExceptionPointers,
PVOID EstablisherFrame
);
typedef
VOID
(*PTERMINATION_HANDLER) (
BOOLEAN AbnormalTermination,
PVOID EstablisherFrame
);
//
// Nonvolatile context pointer record.
//
typedef struct _KNONVOLATILE_CONTEXT_POINTERS {
union {
PM128A FloatingContext[16];
struct {
PM128A Xmm0;
PM128A Xmm1;
PM128A Xmm2;
PM128A Xmm3;
PM128A Xmm4;
PM128A Xmm5;
PM128A Xmm6;
PM128A Xmm7;
PM128A Xmm8;
PM128A Xmm9;
PM128A Xmm10;
PM128A Xmm11;
PM128A Xmm12;
PM128A Xmm13;
PM128A Xmm14;
PM128A Xmm15;
} DUMMYSTRUCTNAME;
} DUMMYUNIONNAME;
union {
PDWORD64 IntegerContext[16];
struct {
PDWORD64 Rax;
PDWORD64 Rcx;
PDWORD64 Rdx;
PDWORD64 Rbx;
PDWORD64 Rsp;
PDWORD64 Rbp;
PDWORD64 Rsi;
PDWORD64 Rdi;
PDWORD64 R8;
PDWORD64 R9;
PDWORD64 R10;
PDWORD64 R11;
PDWORD64 R12;
PDWORD64 R13;
PDWORD64 R14;
PDWORD64 R15;
} DUMMYSTRUCTNAME;
} DUMMYUNIONNAME2;
} KNONVOLATILE_CONTEXT_POINTERS, *PKNONVOLATILE_CONTEXT_POINTERS;
#endif // _AMD64_
//
// Scope table structure definition.
//
typedef struct _SCOPE_TABLE_ARM {
DWORD Count;
struct
{
DWORD BeginAddress;
DWORD EndAddress;
DWORD HandlerAddress;
DWORD JumpTarget;
} ScopeRecord[1];
} SCOPE_TABLE_ARM, *PSCOPE_TABLE_ARM;
#ifdef _ARM_
#if defined(_M_ARM) && !defined(RC_INVOKED) && !defined(MIDL_PASS)
#include <intrin.h>
#if !defined(_M_CEE_PURE)
#ifdef __cplusplus
extern "C" {
#endif
//
// Memory barriers and prefetch intrinsics.
//
#pragma intrinsic(__yield)
#pragma intrinsic(__prefetch)
#if (_MSC_FULL_VER >= 170040825)
#pragma intrinsic(__dmb)
#pragma intrinsic(__dsb)
#pragma intrinsic(__isb)
#else
#define __dmb(x) { __emit(0xF3BF); __emit(0x8F5F); }
#define __dsb(x) { __emit(0xF3BF); __emit(0x8F4F); }
#define __isb(x) { __emit(0xF3BF); __emit(0x8F6F); }
#endif
#pragma intrinsic(_ReadWriteBarrier)
#pragma intrinsic(_WriteBarrier)
FORCEINLINE
VOID
YieldProcessor (
VOID
)
{
__dmb(_ARM_BARRIER_ISHST);
__yield();
}
#define MemoryBarrier() __dmb(_ARM_BARRIER_SY)
#define PreFetchCacheLine(l,a) __prefetch((const void *) (a))
#define PrefetchForWrite(p) __prefetch((const void *) (p))
#define ReadForWriteAccess(p) (*(p))
#define _DataSynchronizationBarrier() __dsb(_ARM_BARRIER_SY)
#define _InstructionSynchronizationBarrier() __isb(_ARM_BARRIER_SY)
//
// Define bit test intrinsics.
//
#define BitTest _bittest
#define BitTestAndComplement _bittestandcomplement
#define BitTestAndSet _bittestandset
#define BitTestAndReset _bittestandreset
#define InterlockedBitTestAndSet _interlockedbittestandset
#define InterlockedBitTestAndSetAcquire _interlockedbittestandset_acq
#define InterlockedBitTestAndSetRelease _interlockedbittestandset_rel
#define InterlockedBitTestAndSetNoFence _interlockedbittestandset_nf
#define InterlockedBitTestAndReset _interlockedbittestandreset
#define InterlockedBitTestAndResetAcquire _interlockedbittestandreset_acq
#define InterlockedBitTestAndResetRelease _interlockedbittestandreset_rel
#define InterlockedBitTestAndResetNoFence _interlockedbittestandreset_nf
#pragma intrinsic(_bittest)
#pragma intrinsic(_bittestandcomplement)
#pragma intrinsic(_bittestandset)
#pragma intrinsic(_bittestandreset)
#pragma intrinsic(_interlockedbittestandset)
#pragma intrinsic(_interlockedbittestandset_acq)
#pragma intrinsic(_interlockedbittestandset_rel)
#pragma intrinsic(_interlockedbittestandset_nf)
#pragma intrinsic(_interlockedbittestandreset)
#pragma intrinsic(_interlockedbittestandreset_acq)
#pragma intrinsic(_interlockedbittestandreset_rel)
#pragma intrinsic(_interlockedbittestandreset_nf)
//
// Define bit scan functions
//
#define BitScanForward _BitScanForward
#define BitScanReverse _BitScanReverse
#pragma intrinsic(_BitScanForward)
#pragma intrinsic(_BitScanReverse)
//
// Interlocked intrinsic functions.
//
#pragma intrinsic(_InterlockedAnd8)
#pragma intrinsic(_InterlockedOr8)
#pragma intrinsic(_InterlockedXor8)
#pragma intrinsic(_InterlockedExchangeAdd8)
#pragma intrinsic(_InterlockedAnd16)
#pragma intrinsic(_InterlockedOr16)
#pragma intrinsic(_InterlockedXor16)
#pragma intrinsic(_InterlockedIncrement16)
#pragma intrinsic(_InterlockedDecrement16)
#pragma intrinsic(_InterlockedCompareExchange16)
#pragma intrinsic(_InterlockedAnd)
#pragma intrinsic(_InterlockedOr)
#pragma intrinsic(_InterlockedXor)
#pragma intrinsic(_InterlockedIncrement)
#pragma intrinsic(_InterlockedDecrement)
#pragma intrinsic(_InterlockedExchange)
#pragma intrinsic(_InterlockedExchangeAdd)
#pragma intrinsic(_InterlockedCompareExchange)
#pragma intrinsic(_InterlockedAnd64)
#pragma intrinsic(_InterlockedOr64)
#pragma intrinsic(_InterlockedXor64)
#pragma intrinsic(_InterlockedIncrement64)
#pragma intrinsic(_InterlockedDecrement64)
#pragma intrinsic(_InterlockedExchange64)
#pragma intrinsic(_InterlockedCompareExchange64)
#pragma intrinsic(_InterlockedExchangePointer)
#pragma intrinsic(_InterlockedCompareExchangePointer)
#define InterlockedAnd8 _InterlockedAnd8
#define InterlockedOr8 _InterlockedOr8
#define InterlockedXor8 _InterlockedXor8
#define InterlockedExchangeAdd8 _InterlockedExchangeAdd8
#define InterlockedAnd16 _InterlockedAnd16
#define InterlockedOr16 _InterlockedOr16
#define InterlockedXor16 _InterlockedXor16
#define InterlockedIncrement16 _InterlockedIncrement16
#define InterlockedDecrement16 _InterlockedDecrement16
#define InterlockedCompareExchange16 _InterlockedCompareExchange16
#define InterlockedAnd _InterlockedAnd
#define InterlockedOr _InterlockedOr
#define InterlockedXor _InterlockedXor
#define InterlockedIncrement _InterlockedIncrement
#define InterlockedDecrement _InterlockedDecrement
#define InterlockedAdd _InterlockedAdd
#define InterlockedExchange _InterlockedExchange
#define InterlockedExchangeAdd _InterlockedExchangeAdd
#define InterlockedCompareExchange _InterlockedCompareExchange
#define InterlockedAnd64 _InterlockedAnd64
#define InterlockedAndAffinity InterlockedAnd64
#define InterlockedOr64 _InterlockedOr64
#define InterlockedOrAffinity InterlockedOr64
#define InterlockedXor64 _InterlockedXor64
#define InterlockedIncrement64 _InterlockedIncrement64
#define InterlockedDecrement64 _InterlockedDecrement64
#define InterlockedAdd64 _InterlockedAdd64
#define InterlockedExchange64 _InterlockedExchange64
#define InterlockedExchangeAdd64 _InterlockedExchangeAdd64
#define InterlockedCompareExchange64 _InterlockedCompareExchange64
#define InterlockedExchangePointer _InterlockedExchangePointer
#define InterlockedCompareExchangePointer _InterlockedCompareExchangePointer
#pragma intrinsic(_InterlockedExchange16)
#define InterlockedExchange16 _InterlockedExchange16
#pragma intrinsic(_InterlockedAnd8_acq)
#pragma intrinsic(_InterlockedAnd8_rel)
#pragma intrinsic(_InterlockedAnd8_nf)
#pragma intrinsic(_InterlockedOr8_acq)
#pragma intrinsic(_InterlockedOr8_rel)
#pragma intrinsic(_InterlockedOr8_nf)
#pragma intrinsic(_InterlockedXor8_acq)
#pragma intrinsic(_InterlockedXor8_rel)
#pragma intrinsic(_InterlockedXor8_nf)
#pragma intrinsic(_InterlockedAnd16_acq)
#pragma intrinsic(_InterlockedAnd16_rel)
#pragma intrinsic(_InterlockedAnd16_nf)
#pragma intrinsic(_InterlockedOr16_acq)
#pragma intrinsic(_InterlockedOr16_rel)
#pragma intrinsic(_InterlockedOr16_nf)
#pragma intrinsic(_InterlockedXor16_acq)
#pragma intrinsic(_InterlockedXor16_rel)
#pragma intrinsic(_InterlockedXor16_nf)
#pragma intrinsic(_InterlockedIncrement16_acq)
#pragma intrinsic(_InterlockedIncrement16_rel)
#pragma intrinsic(_InterlockedIncrement16_nf)
#pragma intrinsic(_InterlockedDecrement16_acq)
#pragma intrinsic(_InterlockedDecrement16_rel)
#pragma intrinsic(_InterlockedDecrement16_nf)
#pragma intrinsic(_InterlockedExchange16_acq)
#pragma intrinsic(_InterlockedExchange16_nf)
#pragma intrinsic(_InterlockedCompareExchange16_acq)
#pragma intrinsic(_InterlockedCompareExchange16_rel)
#pragma intrinsic(_InterlockedCompareExchange16_nf)
#pragma intrinsic(_InterlockedAnd_acq)
#pragma intrinsic(_InterlockedAnd_rel)
#pragma intrinsic(_InterlockedAnd_nf)
#pragma intrinsic(_InterlockedOr_acq)
#pragma intrinsic(_InterlockedOr_rel)
#pragma intrinsic(_InterlockedOr_nf)
#pragma intrinsic(_InterlockedXor_acq)
#pragma intrinsic(_InterlockedXor_rel)
#pragma intrinsic(_InterlockedXor_nf)
#pragma intrinsic(_InterlockedIncrement_acq)
#pragma intrinsic(_InterlockedIncrement_rel)
#pragma intrinsic(_InterlockedIncrement_nf)
#pragma intrinsic(_InterlockedDecrement_acq)
#pragma intrinsic(_InterlockedDecrement_rel)
#pragma intrinsic(_InterlockedDecrement_nf)
#pragma intrinsic(_InterlockedExchange_acq)
#pragma intrinsic(_InterlockedExchange_nf)
#pragma intrinsic(_InterlockedExchangeAdd_acq)
#pragma intrinsic(_InterlockedExchangeAdd_rel)
#pragma intrinsic(_InterlockedExchangeAdd_nf)
#pragma intrinsic(_InterlockedCompareExchange_acq)
#pragma intrinsic(_InterlockedCompareExchange_rel)
#pragma intrinsic(_InterlockedCompareExchange_nf)
#pragma intrinsic(_InterlockedAnd64_acq)
#pragma intrinsic(_InterlockedAnd64_rel)
#pragma intrinsic(_InterlockedAnd64_nf)
#pragma intrinsic(_InterlockedOr64_acq)
#pragma intrinsic(_InterlockedOr64_rel)
#pragma intrinsic(_InterlockedOr64_nf)
#pragma intrinsic(_InterlockedXor64_acq)
#pragma intrinsic(_InterlockedXor64_rel)
#pragma intrinsic(_InterlockedXor64_nf)
#pragma intrinsic(_InterlockedIncrement64_acq)
#pragma intrinsic(_InterlockedIncrement64_rel)
#pragma intrinsic(_InterlockedIncrement64_nf)
#pragma intrinsic(_InterlockedDecrement64_acq)
#pragma intrinsic(_InterlockedDecrement64_rel)
#pragma intrinsic(_InterlockedDecrement64_nf)
#pragma intrinsic(_InterlockedExchange64_acq)
#pragma intrinsic(_InterlockedExchange64_nf)
#pragma intrinsic(_InterlockedCompareExchange64_acq)
#pragma intrinsic(_InterlockedCompareExchange64_rel)
#pragma intrinsic(_InterlockedCompareExchange64_nf)
#pragma intrinsic(_InterlockedExchangePointer_acq)
#pragma intrinsic(_InterlockedExchangePointer_nf)
#pragma intrinsic(_InterlockedCompareExchangePointer_acq)
#pragma intrinsic(_InterlockedCompareExchangePointer_rel)
#pragma intrinsic(_InterlockedCompareExchangePointer_nf)
#define InterlockedAndAcquire8 _InterlockedAnd8_acq
#define InterlockedAndRelease8 _InterlockedAnd8_rel
#define InterlockedAndNoFence8 _InterlockedAnd8_nf
#define InterlockedOrAcquire8 _InterlockedOr8_acq
#define InterlockedOrRelease8 _InterlockedOr8_rel
#define InterlockedOrNoFence8 _InterlockedOr8_nf
#define InterlockedXorAcquire8 _InterlockedXor8_acq
#define InterlockedXorRelease8 _InterlockedXor8_rel
#define InterlockedXorNoFence8 _InterlockedXor8_nf
#define InterlockedAndAcquire16 _InterlockedAnd16_acq
#define InterlockedAndRelease16 _InterlockedAnd16_rel
#define InterlockedAndNoFence16 _InterlockedAnd16_nf
#define InterlockedOrAcquire16 _InterlockedOr16_acq
#define InterlockedOrRelease16 _InterlockedOr16_rel
#define InterlockedOrNoFence16 _InterlockedOr16_nf
#define InterlockedXorAcquire16 _InterlockedXor16_acq
#define InterlockedXorRelease16 _InterlockedXor16_rel
#define InterlockedXorNoFence16 _InterlockedXor16_nf
#define InterlockedIncrementAcquire16 _InterlockedIncrement16_acq
#define InterlockedIncrementRelease16 _InterlockedIncrement16_rel
#define InterlockedIncrementNoFence16 _InterlockedIncrement16_nf
#define InterlockedDecrementAcquire16 _InterlockedDecrement16_acq
#define InterlockedDecrementRelease16 _InterlockedDecrement16_rel
#define InterlockedDecrementNoFence16 _InterlockedDecrement16_nf
#define InterlockedExchangeAcquire16 _InterlockedExchange16_acq
#define InterlockedExchangeNoFence16 _InterlockedExchange16_nf
#define InterlockedCompareExchangeAcquire16 _InterlockedCompareExchange16_acq
#define InterlockedCompareExchangeRelease16 _InterlockedCompareExchange16_rel
#define InterlockedCompareExchangeNoFence16 _InterlockedCompareExchange16_nf
#define InterlockedAndAcquire _InterlockedAnd_acq
#define InterlockedAndRelease _InterlockedAnd_rel
#define InterlockedAndNoFence _InterlockedAnd_nf
#define InterlockedOrAcquire _InterlockedOr_acq
#define InterlockedOrRelease _InterlockedOr_rel
#define InterlockedOrNoFence _InterlockedOr_nf
#define InterlockedXorAcquire _InterlockedXor_acq
#define InterlockedXorRelease _InterlockedXor_rel
#define InterlockedXorNoFence _InterlockedXor_nf
#define InterlockedIncrementAcquire _InterlockedIncrement_acq
#define InterlockedIncrementRelease _InterlockedIncrement_rel
#define InterlockedIncrementNoFence _InterlockedIncrement_nf
#define InterlockedDecrementAcquire _InterlockedDecrement_acq
#define InterlockedDecrementRelease _InterlockedDecrement_rel
#define InterlockedDecrementNoFence _InterlockedDecrement_nf
#define InterlockedAddAcquire _InterlockedAdd_acq
#define InterlockedAddRelease _InterlockedAdd_rel
#define InterlockedAddNoFence _InterlockedAdd_nf
#define InterlockedExchangeAcquire _InterlockedExchange_acq
#define InterlockedExchangeNoFence _InterlockedExchange_nf
#define InterlockedExchangeAddAcquire _InterlockedExchangeAdd_acq
#define InterlockedExchangeAddRelease _InterlockedExchangeAdd_rel
#define InterlockedExchangeAddNoFence _InterlockedExchangeAdd_nf
#define InterlockedCompareExchangeAcquire _InterlockedCompareExchange_acq
#define InterlockedCompareExchangeRelease _InterlockedCompareExchange_rel
#define InterlockedCompareExchangeNoFence _InterlockedCompareExchange_nf
#define InterlockedAndAcquire64 _InterlockedAnd64_acq
#define InterlockedAndRelease64 _InterlockedAnd64_rel
#define InterlockedAndNoFence64 _InterlockedAnd64_nf
#define InterlockedOrAcquire64 _InterlockedOr64_acq
#define InterlockedOrRelease64 _InterlockedOr64_rel
#define InterlockedOrNoFence64 _InterlockedOr64_nf
#define InterlockedXorAcquire64 _InterlockedXor64_acq
#define InterlockedXorRelease64 _InterlockedXor64_rel
#define InterlockedXorNoFence64 _InterlockedXor64_nf
#define InterlockedIncrementAcquire64 _InterlockedIncrement64_acq
#define InterlockedIncrementRelease64 _InterlockedIncrement64_rel
#define InterlockedIncrementNoFence64 _InterlockedIncrement64_nf
#define InterlockedDecrementAcquire64 _InterlockedDecrement64_acq
#define InterlockedDecrementRelease64 _InterlockedDecrement64_rel
#define InterlockedDecrementNoFence64 _InterlockedDecrement64_nf
#define InterlockedAddAcquire64 _InterlockedAdd64_acq
#define InterlockedAddRelease64 _InterlockedAdd64_rel
#define InterlockedAddNoFence64 _InterlockedAdd64_nf
#define InterlockedExchangeAcquire64 _InterlockedExchange64_acq
#define InterlockedExchangeNoFence64 _InterlockedExchange64_nf
#define InterlockedExchangeAddAcquire64 _InterlockedExchangeAdd64_acq
#define InterlockedExchangeAddRelease64 _InterlockedExchangeAdd64_rel
#define InterlockedExchangeAddNoFence64 _InterlockedExchangeAdd64_nf
#define InterlockedCompareExchangeAcquire64 _InterlockedCompareExchange64_acq
#define InterlockedCompareExchangeRelease64 _InterlockedCompareExchange64_rel
#define InterlockedCompareExchangeNoFence64 _InterlockedCompareExchange64_nf
#define InterlockedExchangePointerAcquire _InterlockedExchangePointer_acq
#define InterlockedExchangePointerNoFence _InterlockedExchangePointer_nf
#define InterlockedCompareExchangePointerAcquire _InterlockedCompareExchangePointer_acq
#define InterlockedCompareExchangePointerRelease _InterlockedCompareExchangePointer_rel
#define InterlockedCompareExchangePointerNoFence _InterlockedCompareExchangePointer_nf
#define InterlockedExchangeAddSizeT(a, b) InterlockedExchangeAdd((LONG *)a, b)
#define InterlockedExchangeAddSizeTAcquire(a, b) InterlockedExchangeAddAcquire((LONG *)a, b)
#define InterlockedExchangeAddSizeTNoFence(a, b) InterlockedExchangeAddNoFence((LONG *)a, b)
#define InterlockedIncrementSizeT(a) InterlockedIncrement((LONG *)a)
#define InterlockedIncrementSizeTNoFence(a) InterlockedIncrementNoFence((LONG *)a)
#define InterlockedDecrementSizeT(a) InterlockedDecrement((LONG *)a)
#define InterlockedDecrementSizeTNoFence(a) InterlockedDecrementNoFence((LONG *)a)
//
// Define accessors for volatile loads and stores.
//
#pragma intrinsic(__iso_volatile_load8)
#pragma intrinsic(__iso_volatile_load16)
#pragma intrinsic(__iso_volatile_load32)
#pragma intrinsic(__iso_volatile_load64)
#pragma intrinsic(__iso_volatile_store8)
#pragma intrinsic(__iso_volatile_store16)
#pragma intrinsic(__iso_volatile_store32)
#pragma intrinsic(__iso_volatile_store64)
// end_wdm end_ntndis end_ntosp end_ntminiport
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
// begin_wdm begin_ntndis begin_ntosp begin_ntminiport
FORCEINLINE
CHAR
ReadAcquire8 (
_In_ _Interlocked_operand_ CHAR const volatile *Source
)
{
CHAR Value;
Value = __iso_volatile_load8(Source);
__dmb(_ARM_BARRIER_ISH);
return Value;
}
FORCEINLINE
CHAR
ReadNoFence8 (
_In_ _Interlocked_operand_ CHAR const volatile *Source
)
{
CHAR Value;
Value = __iso_volatile_load8(Source);
return Value;
}
FORCEINLINE
VOID
WriteRelease8 (
_Out_ _Interlocked_operand_ CHAR volatile *Destination,
_In_ CHAR Value
)
{
__dmb(_ARM_BARRIER_ISH);
__iso_volatile_store8(Destination, Value);
return;
}
FORCEINLINE
VOID
WriteNoFence8 (
_Out_ _Interlocked_operand_ CHAR volatile *Destination,
_In_ CHAR Value
)
{
__iso_volatile_store8(Destination, Value);
return;
}
FORCEINLINE
SHORT
ReadAcquire16 (
_In_ _Interlocked_operand_ SHORT const volatile *Source
)
{
SHORT Value;
Value = __iso_volatile_load16(Source);
__dmb(_ARM_BARRIER_ISH);
return Value;
}
FORCEINLINE
SHORT
ReadNoFence16 (
_In_ _Interlocked_operand_ SHORT const volatile *Source
)
{
SHORT Value;
Value = __iso_volatile_load16(Source);
return Value;
}
FORCEINLINE
VOID
WriteRelease16 (
_Out_ _Interlocked_operand_ SHORT volatile *Destination,
_In_ SHORT Value
)
{
__dmb(_ARM_BARRIER_ISH);
__iso_volatile_store16(Destination, Value);
return;
}
FORCEINLINE
VOID
WriteNoFence16 (
_Out_ _Interlocked_operand_ SHORT volatile *Destination,
_In_ SHORT Value
)
{
__iso_volatile_store16(Destination, Value);
return;
}
FORCEINLINE
LONG
ReadAcquire (
_In_ _Interlocked_operand_ LONG const volatile *Source
)
{
LONG Value;
Value = __iso_volatile_load32((int *)Source);
__dmb(_ARM_BARRIER_ISH);
return Value;
}
FORCEINLINE
LONG
ReadNoFence (
_In_ _Interlocked_operand_ LONG const volatile *Source
)
{
LONG Value;
Value = __iso_volatile_load32((int *)Source);
return Value;
}
CFORCEINLINE
VOID
WriteRelease (
_Out_ _Interlocked_operand_ LONG volatile *Destination,
_In_ LONG Value
)
{
__dmb(_ARM_BARRIER_ISH);
__iso_volatile_store32((int *)Destination, Value);
return;
}
FORCEINLINE
VOID
WriteNoFence (
_Out_ _Interlocked_operand_ LONG volatile *Destination,
_In_ LONG Value
)
{
__iso_volatile_store32((int *)Destination, Value);
return;
}
FORCEINLINE
LONG64
ReadAcquire64 (
_In_ _Interlocked_operand_ LONG64 const volatile *Source
)
{
LONG64 Value;
Value = __iso_volatile_load64(Source);
__dmb(_ARM_BARRIER_ISH);
return Value;
}
FORCEINLINE
LONG64
ReadNoFence64 (
_In_ _Interlocked_operand_ LONG64 const volatile *Source
)
{
LONG64 Value;
Value = __iso_volatile_load64(Source);
return Value;
}
CFORCEINLINE
VOID
WriteRelease64 (
_Out_ _Interlocked_operand_ LONG64 volatile *Destination,
_In_ LONG64 Value
)
{
__dmb(_ARM_BARRIER_ISH);
__iso_volatile_store64(Destination, Value);
return;
}
FORCEINLINE
VOID
WriteNoFence64 (
_Out_ _Interlocked_operand_ LONG64 volatile *Destination,
_In_ LONG64 Value
)
{
__iso_volatile_store64(Destination, Value);
return;
}
// end_wdm end_ntndis end_ntosp end_ntminiport
#endif // WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
// begin_wdm begin_ntndis begin_ntosp begin_ntminiport
//
// Define coprocessor access intrinsics. Coprocessor 15 contains
// registers for the MMU, cache, TLB, feature bits, core
// identification and performance counters.
//
#define CP15_PMSELR 15, 0, 9, 12, 5 // Event Counter Selection Register
#define CP15_PMXEVCNTR 15, 0, 9, 13, 2 // Event Count Register
#define CP15_TPIDRURW 15, 0, 13, 0, 2 // Software Thread ID Register, User Read/Write
#define CP15_TPIDRURO 15, 0, 13, 0, 3 // Software Thread ID Register, User Read Only
#define CP15_TPIDRPRW 15, 0, 13, 0, 4 // Software Thread ID Register, Privileged Only
#pragma intrinsic(_MoveToCoprocessor)
#pragma intrinsic(_MoveFromCoprocessor)
//
// Coprocessor registers for synchronization
//
#define _InvalidateBTAC() _MoveToCoprocessor(0, CP15_BPIALL)
//
// PreFetchCacheLine level defines.
//
#define PF_TEMPORAL_LEVEL_1 0
#define PF_TEMPORAL_LEVEL_2 1
#define PF_TEMPORAL_LEVEL_3 2
#define PF_NON_TEMPORAL_LEVEL_ALL 3
//
// Define function to read the value of the time stamp counter which
// ARM doesn't have.
//
DWORD64
ReadTimeStampCounter(
VOID
);
FORCEINLINE
DWORD64
ReadPMC (
_In_ DWORD Counter
)
{
_MoveToCoprocessor(Counter, CP15_PMSELR);
return (DWORD64)_MoveFromCoprocessor(CP15_PMXEVCNTR);
}
#ifdef __cplusplus
}
#endif
#endif // !defined(_M_CEE_PURE)
#endif // defined(_M_ARM) && !defined(RC_INVOKED) && !defined(MIDL_PASS) && !defined(_M_CEE_PURE)
#if defined(_M_CEE_PURE)
FORCEINLINE
VOID
YieldProcessor (
VOID
)
{
}
#endif
//
// The following values specify the type of access in the first parameter
// of the exception record whan the exception code specifies an access
// violation.
//
#define EXCEPTION_READ_FAULT 0 // exception caused by a read
#define EXCEPTION_WRITE_FAULT 1 // exception caused by a write
#define EXCEPTION_EXECUTE_FAULT 8 // exception caused by an instruction fetch
// begin_wx86
//
// The following flags control the contents of the CONTEXT structure.
//
#if !defined(RC_INVOKED)
#define CONTEXT_ARM 0x00200000L
// end_wx86
#define CONTEXT_CONTROL (CONTEXT_ARM | 0x1L)
#define CONTEXT_INTEGER (CONTEXT_ARM | 0x2L)
#define CONTEXT_FLOATING_POINT (CONTEXT_ARM | 0x4L)
#define CONTEXT_DEBUG_REGISTERS (CONTEXT_ARM | 0x8L)
#define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_INTEGER | CONTEXT_FLOATING_POINT)
#define CONTEXT_ALL (CONTEXT_CONTROL | CONTEXT_INTEGER | CONTEXT_FLOATING_POINT | CONTEXT_DEBUG_REGISTERS)
#define CONTEXT_EXCEPTION_ACTIVE 0x8000000L
#define CONTEXT_SERVICE_ACTIVE 0x10000000L
#define CONTEXT_EXCEPTION_REQUEST 0x40000000L
#define CONTEXT_EXCEPTION_REPORTING 0x80000000L
//
// This flag is set by the unwinder if it has unwound to a call
// site, and cleared whenever it unwinds through a trap frame.
// It is used by language-specific exception handlers to help
// differentiate exception scopes during dispatching.
//
#define CONTEXT_UNWOUND_TO_CALL 0x20000000
// begin_wx86
#endif // !defined(RC_INVOKED)
//
// Define initial Cpsr/Fpscr value
//
#define INITIAL_CPSR 0x10
#define INITIAL_FPSCR 0
//
// Specify the number of breakpoints and watchpoints that the OS
// will track. Architecturally, ARM supports up to 16. In practice,
// however, almost no one implements more than 4 of each.
//
#define ARM_MAX_BREAKPOINTS 8
#define ARM_MAX_WATCHPOINTS 1
//
// Context Frame
//
// This frame has a several purposes: 1) it is used as an argument to
// NtContinue, 2) it is used to constuct a call frame for APC delivery,
// and 3) it is used in the user level thread creation routines.
//
//
// The flags field within this record controls the contents of a CONTEXT
// record.
//
// If the context record is used as an input parameter, then for each
// portion of the context record controlled by a flag whose value is
// set, it is assumed that that portion of the context record contains
// valid context. If the context record is being used to modify a threads
// context, then only that portion of the threads context is modified.
//
// If the context record is used as an output parameter to capture the
// context of a thread, then only those portions of the thread's context
// corresponding to set flags will be returned.
//
// CONTEXT_CONTROL specifies Sp, Lr, Pc, and Cpsr
//
// CONTEXT_INTEGER specifies R0-R12
//
// CONTEXT_FLOATING_POINT specifies Q0-Q15 / D0-D31 / S0-S31
//
// CONTEXT_DEBUG_REGISTERS specifies up to 16 of DBGBVR, DBGBCR, DBGWVR,
// DBGWCR.
//
typedef struct _NEON128 {
ULONGLONG Low;
LONGLONG High;
} NEON128, *PNEON128;
typedef struct DECLSPEC_ALIGN(8) _CONTEXT {
//
// Control flags.
//
DWORD ContextFlags;
//
// Integer registers
//
DWORD R0;
DWORD R1;
DWORD R2;
DWORD R3;
DWORD R4;
DWORD R5;
DWORD R6;
DWORD R7;
DWORD R8;
DWORD R9;
DWORD R10;
DWORD R11;
DWORD R12;
//
// Control Registers
//
DWORD Sp;
DWORD Lr;
DWORD Pc;
DWORD Cpsr;
//
// Floating Point/NEON Registers
//
DWORD Fpscr;
DWORD Padding;
union {
NEON128 Q[16];
ULONGLONG D[32];
DWORD S[32];
} DUMMYUNIONNAME;
//
// Debug registers
//
DWORD Bvr[ARM_MAX_BREAKPOINTS];
DWORD Bcr[ARM_MAX_BREAKPOINTS];
DWORD Wvr[ARM_MAX_WATCHPOINTS];
DWORD Wcr[ARM_MAX_WATCHPOINTS];
DWORD Padding2[2];
} CONTEXT, *PCONTEXT;
//
// Select platform-specific definitions
//
typedef struct _IMAGE_ARM_RUNTIME_FUNCTION_ENTRY RUNTIME_FUNCTION, *PRUNTIME_FUNCTION;
typedef SCOPE_TABLE_ARM SCOPE_TABLE, *PSCOPE_TABLE;
//
// Define unwind information flags.
//
#define UNW_FLAG_NHANDLER 0x0 /* any handler */
#define UNW_FLAG_EHANDLER 0x1 /* filter handler */
#define UNW_FLAG_UHANDLER 0x2 /* unwind handler */
//
// Define unwind history table structure.
//
#define UNWIND_HISTORY_TABLE_SIZE 12
typedef struct _UNWIND_HISTORY_TABLE_ENTRY {
DWORD ImageBase;
PRUNTIME_FUNCTION FunctionEntry;
} UNWIND_HISTORY_TABLE_ENTRY, *PUNWIND_HISTORY_TABLE_ENTRY;
typedef struct _UNWIND_HISTORY_TABLE {
DWORD Count;
BYTE LocalHint;
BYTE GlobalHint;
BYTE Search;
BYTE Once;
DWORD LowAddress;
DWORD HighAddress;
UNWIND_HISTORY_TABLE_ENTRY Entry[UNWIND_HISTORY_TABLE_SIZE];
} UNWIND_HISTORY_TABLE, *PUNWIND_HISTORY_TABLE;
//
// Define exception dispatch context structure.
//
typedef struct _DISPATCHER_CONTEXT {
DWORD ControlPc;
DWORD ImageBase;
PRUNTIME_FUNCTION FunctionEntry;
DWORD EstablisherFrame;
DWORD TargetPc;
PCONTEXT ContextRecord;
PEXCEPTION_ROUTINE LanguageHandler;
PVOID HandlerData;
PUNWIND_HISTORY_TABLE HistoryTable;
DWORD ScopeIndex;
BOOLEAN ControlPcIsUnwound;
PBYTE NonVolatileRegisters;
DWORD Reserved;
} DISPATCHER_CONTEXT, *PDISPATCHER_CONTEXT;
//
// Define exception filter and termination handler function types.
// N.B. These functions use a custom calling convention.
//
struct _EXCEPTION_POINTERS;
typedef
LONG
(*PEXCEPTION_FILTER) (
struct _EXCEPTION_POINTERS *ExceptionPointers,
DWORD EstablisherFrame
);
typedef
VOID
(*PTERMINATION_HANDLER) (
BOOLEAN AbnormalTermination,
DWORD EstablisherFrame
);
//
// Define dynamic function table entry.
//
typedef
_Function_class_(GET_RUNTIME_FUNCTION_CALLBACK)
PRUNTIME_FUNCTION
GET_RUNTIME_FUNCTION_CALLBACK (
_In_ DWORD ControlPc,
_In_opt_ PVOID Context
);
typedef GET_RUNTIME_FUNCTION_CALLBACK *PGET_RUNTIME_FUNCTION_CALLBACK;
typedef
_Function_class_(OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK)
DWORD
OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK (
_In_ HANDLE Process,
_In_ PVOID TableAddress,
_Out_ PDWORD Entries,
_Out_ PRUNTIME_FUNCTION* Functions
);
typedef OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK *POUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK;
#define OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK_EXPORT_NAME \
"OutOfProcessFunctionTableCallback"
//
// Nonvolatile context pointer record.
//
typedef struct _KNONVOLATILE_CONTEXT_POINTERS {
PDWORD R4;
PDWORD R5;
PDWORD R6;
PDWORD R7;
PDWORD R8;
PDWORD R9;
PDWORD R10;
PDWORD R11;
PDWORD Lr;
PULONGLONG D8;
PULONGLONG D9;
PULONGLONG D10;
PULONGLONG D11;
PULONGLONG D12;
PULONGLONG D13;
PULONGLONG D14;
PULONGLONG D15;
} KNONVOLATILE_CONTEXT_POINTERS, *PKNONVOLATILE_CONTEXT_POINTERS;
#endif // _ARM_
//
// Scope table structure definition.
//
typedef struct _SCOPE_TABLE_ARM64 {
DWORD Count;
struct
{
DWORD BeginAddress;
DWORD EndAddress;
DWORD HandlerAddress;
DWORD JumpTarget;
} ScopeRecord[1];
} SCOPE_TABLE_ARM64, *PSCOPE_TABLE_ARM64;
// begin_ntoshvp
#ifdef _ARM64_
#if defined(_M_ARM64) && !defined(RC_INVOKED) && !defined(MIDL_PASS)
#include <intrin.h>
#if !defined(_M_CEE_PURE)
#pragma intrinsic(__getReg)
#pragma intrinsic(__getCallerReg)
#pragma intrinsic(__getRegFp)
#pragma intrinsic(__getCallerRegFp)
#pragma intrinsic(__setReg)
#pragma intrinsic(__setCallerReg)
#pragma intrinsic(__setRegFp)
#pragma intrinsic(__setCallerRegFp)
#pragma intrinsic(__readx18byte)
#pragma intrinsic(__readx18word)
#pragma intrinsic(__readx18dword)
#pragma intrinsic(__readx18qword)
#pragma intrinsic(__writex18byte)
#pragma intrinsic(__writex18word)
#pragma intrinsic(__writex18dword)
#pragma intrinsic(__writex18qword)
#pragma intrinsic(__addx18byte)
#pragma intrinsic(__addx18word)
#pragma intrinsic(__addx18dword)
#pragma intrinsic(__addx18qword)
#pragma intrinsic(__incx18byte)
#pragma intrinsic(__incx18word)
#pragma intrinsic(__incx18dword)
#pragma intrinsic(__incx18qword)
#ifdef __cplusplus
extern "C" {
#endif
//
// Memory barriers and prefetch intrinsics.
//
#pragma intrinsic(__yield)
#pragma intrinsic(__prefetch)
#pragma intrinsic(__dmb)
#pragma intrinsic(__dsb)
#pragma intrinsic(__isb)
#pragma intrinsic(_ReadWriteBarrier)
#pragma intrinsic(_WriteBarrier)
FORCEINLINE
VOID
YieldProcessor (
VOID
)
{
__dmb(_ARM64_BARRIER_ISHST);
__yield();
}
#define MemoryBarrier() __dmb(_ARM64_BARRIER_SY)
#define PreFetchCacheLine(l,a) __prefetch((const void *) (a))
#define PrefetchForWrite(p) __prefetch((const void *) (p))
#define ReadForWriteAccess(p) (*(p))
#define _DataSynchronizationBarrier() __dsb(_ARM64_BARRIER_SY)
#define _InstructionSynchronizationBarrier() __isb(_ARM64_BARRIER_SY)
//
// Define bit test intrinsics.
//
#define BitTest _bittest
#define BitTestAndComplement _bittestandcomplement
#define BitTestAndSet _bittestandset
#define BitTestAndReset _bittestandreset
#define InterlockedBitTestAndSet _interlockedbittestandset
#define InterlockedBitTestAndSetAcquire _interlockedbittestandset_acq
#define InterlockedBitTestAndSetRelease _interlockedbittestandset_rel
#define InterlockedBitTestAndSetNoFence _interlockedbittestandset_nf
#define InterlockedBitTestAndReset _interlockedbittestandreset
#define InterlockedBitTestAndResetAcquire _interlockedbittestandreset_acq
#define InterlockedBitTestAndResetRelease _interlockedbittestandreset_rel
#define InterlockedBitTestAndResetNoFence _interlockedbittestandreset_nf
#define BitTest64 _bittest64
#define BitTestAndComplement64 _bittestandcomplement64
#define BitTestAndSet64 _bittestandset64
#define BitTestAndReset64 _bittestandreset64
#define InterlockedBitTestAndSet64 _interlockedbittestandset64
#define InterlockedBitTestAndSet64Acquire _interlockedbittestandset64
#define InterlockedBitTestAndSet64Release _interlockedbittestandset64
#define InterlockedBitTestAndReset64 _interlockedbittestandreset64
#define InterlockedBitTestAndReset64Acquire _interlockedbittestandreset64
#define InterlockedBitTestAndReset64Release _interlockedbittestandreset64
#pragma intrinsic(_bittest)
#pragma intrinsic(_bittestandcomplement)
#pragma intrinsic(_bittestandset)
#pragma intrinsic(_bittestandreset)
#pragma intrinsic(_interlockedbittestandset)
#pragma intrinsic(_interlockedbittestandset_acq)
#pragma intrinsic(_interlockedbittestandset_rel)
#pragma intrinsic(_interlockedbittestandreset)
#pragma intrinsic(_interlockedbittestandreset_acq)
#pragma intrinsic(_interlockedbittestandreset_rel)
#pragma intrinsic(_bittest64)
#pragma intrinsic(_bittestandcomplement64)
#pragma intrinsic(_bittestandset64)
#pragma intrinsic(_bittestandreset64)
#pragma intrinsic(_interlockedbittestandset64)
#pragma intrinsic(_interlockedbittestandset64_acq)
#pragma intrinsic(_interlockedbittestandset64_rel)
#pragma intrinsic(_interlockedbittestandreset64)
#pragma intrinsic(_interlockedbittestandreset64_acq)
#pragma intrinsic(_interlockedbittestandreset64_rel)
//
// Define bit scan functions
//
#define BitScanForward _BitScanForward
#define BitScanReverse _BitScanReverse
#define BitScanForward64 _BitScanForward64
#define BitScanReverse64 _BitScanReverse64
#pragma intrinsic(_BitScanForward)
#pragma intrinsic(_BitScanReverse)
#pragma intrinsic(_BitScanForward64)
#pragma intrinsic(_BitScanReverse64)
//
// Interlocked intrinsic functions.
//
#pragma intrinsic(_InterlockedAnd8)
#pragma intrinsic(_InterlockedOr8)
#pragma intrinsic(_InterlockedXor8)
#pragma intrinsic(_InterlockedExchangeAdd8)
#pragma intrinsic(_InterlockedAnd16)
#pragma intrinsic(_InterlockedOr16)
#pragma intrinsic(_InterlockedXor16)
#pragma intrinsic(_InterlockedIncrement16)
#pragma intrinsic(_InterlockedDecrement16)
#pragma intrinsic(_InterlockedCompareExchange16)
#pragma intrinsic(_InterlockedAnd)
#pragma intrinsic(_InterlockedOr)
#pragma intrinsic(_InterlockedXor)
#pragma intrinsic(_InterlockedIncrement)
#pragma intrinsic(_InterlockedDecrement)
#pragma intrinsic(_InterlockedExchange)
#pragma intrinsic(_InterlockedExchangeAdd)
#pragma intrinsic(_InterlockedCompareExchange)
#pragma intrinsic(_InterlockedAnd64)
#pragma intrinsic(_InterlockedOr64)
#pragma intrinsic(_InterlockedXor64)
#pragma intrinsic(_InterlockedIncrement64)
#pragma intrinsic(_InterlockedDecrement64)
#pragma intrinsic(_InterlockedExchange64)
#pragma intrinsic(_InterlockedCompareExchange64)
#pragma intrinsic(_InterlockedCompareExchange128)
#pragma intrinsic(_InterlockedExchangePointer)
#pragma intrinsic(_InterlockedCompareExchangePointer)
#define InterlockedAnd8 _InterlockedAnd8
#define InterlockedOr8 _InterlockedOr8
#define InterlockedXor8 _InterlockedXor8
#define InterlockedExchangeAdd8 _InterlockedExchangeAdd8
#define InterlockedAnd16 _InterlockedAnd16
#define InterlockedOr16 _InterlockedOr16
#define InterlockedXor16 _InterlockedXor16
#define InterlockedIncrement16 _InterlockedIncrement16
#define InterlockedDecrement16 _InterlockedDecrement16
#define InterlockedCompareExchange16 _InterlockedCompareExchange16
#define InterlockedAnd _InterlockedAnd
#define InterlockedOr _InterlockedOr
#define InterlockedXor _InterlockedXor
#define InterlockedIncrement _InterlockedIncrement
#define InterlockedDecrement _InterlockedDecrement
#define InterlockedAdd _InterlockedAdd
#define InterlockedExchange _InterlockedExchange
#define InterlockedExchangeAdd _InterlockedExchangeAdd
#define InterlockedCompareExchange _InterlockedCompareExchange
#define InterlockedAnd64 _InterlockedAnd64
#define InterlockedAndAffinity InterlockedAnd64
#define InterlockedOr64 _InterlockedOr64
#define InterlockedOrAffinity InterlockedOr64
#define InterlockedXor64 _InterlockedXor64
#define InterlockedIncrement64 _InterlockedIncrement64
#define InterlockedDecrement64 _InterlockedDecrement64
#define InterlockedAdd64 _InterlockedAdd64
#define InterlockedExchange64 _InterlockedExchange64
#define InterlockedExchangeAdd64 _InterlockedExchangeAdd64
#define InterlockedCompareExchange64 _InterlockedCompareExchange64
#define InterlockedExchangePointer _InterlockedExchangePointer
#define InterlockedCompareExchangePointer _InterlockedCompareExchangePointer
#pragma intrinsic(_InterlockedExchange16)
#define InterlockedExchange16 _InterlockedExchange16
#pragma intrinsic(_InterlockedAnd8_acq)
#pragma intrinsic(_InterlockedAnd8_rel)
#pragma intrinsic(_InterlockedAnd8_nf)
#pragma intrinsic(_InterlockedOr8_acq)
#pragma intrinsic(_InterlockedOr8_rel)
#pragma intrinsic(_InterlockedOr8_nf)
#pragma intrinsic(_InterlockedXor8_acq)
#pragma intrinsic(_InterlockedXor8_rel)
#pragma intrinsic(_InterlockedXor8_nf)
#pragma intrinsic(_InterlockedAnd16_acq)
#pragma intrinsic(_InterlockedAnd16_rel)
#pragma intrinsic(_InterlockedAnd16_nf)
#pragma intrinsic(_InterlockedOr16_acq)
#pragma intrinsic(_InterlockedOr16_rel)
#pragma intrinsic(_InterlockedOr16_nf)
#pragma intrinsic(_InterlockedXor16_acq)
#pragma intrinsic(_InterlockedXor16_rel)
#pragma intrinsic(_InterlockedXor16_nf)
#pragma intrinsic(_InterlockedIncrement16_acq)
#pragma intrinsic(_InterlockedIncrement16_rel)
#pragma intrinsic(_InterlockedIncrement16_nf)
#pragma intrinsic(_InterlockedDecrement16_acq)
#pragma intrinsic(_InterlockedDecrement16_rel)
#pragma intrinsic(_InterlockedDecrement16_nf)
#pragma intrinsic(_InterlockedExchange16_acq)
#pragma intrinsic(_InterlockedExchange16_nf)
#pragma intrinsic(_InterlockedCompareExchange16_acq)
#pragma intrinsic(_InterlockedCompareExchange16_rel)
#pragma intrinsic(_InterlockedCompareExchange16_nf)
#pragma intrinsic(_InterlockedAnd_acq)
#pragma intrinsic(_InterlockedAnd_rel)
#pragma intrinsic(_InterlockedAnd_nf)
#pragma intrinsic(_InterlockedOr_acq)
#pragma intrinsic(_InterlockedOr_rel)
#pragma intrinsic(_InterlockedOr_nf)
#pragma intrinsic(_InterlockedXor_acq)
#pragma intrinsic(_InterlockedXor_rel)
#pragma intrinsic(_InterlockedXor_nf)
#pragma intrinsic(_InterlockedIncrement_acq)
#pragma intrinsic(_InterlockedIncrement_rel)
#pragma intrinsic(_InterlockedIncrement_nf)
#pragma intrinsic(_InterlockedDecrement_acq)
#pragma intrinsic(_InterlockedDecrement_rel)
#pragma intrinsic(_InterlockedDecrement_nf)
#pragma intrinsic(_InterlockedExchange_acq)
#pragma intrinsic(_InterlockedExchange_nf)
#pragma intrinsic(_InterlockedExchangeAdd_acq)
#pragma intrinsic(_InterlockedExchangeAdd_rel)
#pragma intrinsic(_InterlockedExchangeAdd_nf)
#pragma intrinsic(_InterlockedCompareExchange_rel)
#pragma intrinsic(_InterlockedCompareExchange_nf)
#pragma intrinsic(_InterlockedAnd64_acq)
#pragma intrinsic(_InterlockedAnd64_rel)
#pragma intrinsic(_InterlockedAnd64_nf)
#pragma intrinsic(_InterlockedOr64_acq)
#pragma intrinsic(_InterlockedOr64_rel)
#pragma intrinsic(_InterlockedOr64_nf)
#pragma intrinsic(_InterlockedXor64_acq)
#pragma intrinsic(_InterlockedXor64_rel)
#pragma intrinsic(_InterlockedXor64_nf)
#pragma intrinsic(_InterlockedIncrement64_acq)
#pragma intrinsic(_InterlockedIncrement64_rel)
#pragma intrinsic(_InterlockedIncrement64_nf)
#pragma intrinsic(_InterlockedDecrement64_acq)
#pragma intrinsic(_InterlockedDecrement64_rel)
#pragma intrinsic(_InterlockedDecrement64_nf)
#pragma intrinsic(_InterlockedExchange64_acq)
#pragma intrinsic(_InterlockedExchange64_nf)
#pragma intrinsic(_InterlockedCompareExchange64_acq)
#pragma intrinsic(_InterlockedCompareExchange64_rel)
#pragma intrinsic(_InterlockedCompareExchange64_nf)
#pragma intrinsic(_InterlockedExchangePointer_acq)
#pragma intrinsic(_InterlockedExchangePointer_nf)
#pragma intrinsic(_InterlockedCompareExchangePointer_acq)
#pragma intrinsic(_InterlockedCompareExchangePointer_rel)
#pragma intrinsic(_InterlockedCompareExchangePointer_nf)
#define InterlockedAndAcquire8 _InterlockedAnd8_acq
#define InterlockedAndRelease8 _InterlockedAnd8_rel
#define InterlockedAndNoFence8 _InterlockedAnd8_nf
#define InterlockedOrAcquire8 _InterlockedOr8_acq
#define InterlockedOrRelease8 _InterlockedOr8_rel
#define InterlockedOrNoFence8 _InterlockedOr8_nf
#define InterlockedXorAcquire8 _InterlockedXor8_acq
#define InterlockedXorRelease8 _InterlockedXor8_rel
#define InterlockedXorNoFence8 _InterlockedXor8_nf
#define InterlockedAndAcquire16 _InterlockedAnd16_acq
#define InterlockedAndRelease16 _InterlockedAnd16_rel
#define InterlockedAndNoFence16 _InterlockedAnd16_nf
#define InterlockedOrAcquire16 _InterlockedOr16_acq
#define InterlockedOrRelease16 _InterlockedOr16_rel
#define InterlockedOrNoFence16 _InterlockedOr16_nf
#define InterlockedXorAcquire16 _InterlockedXor16_acq
#define InterlockedXorRelease16 _InterlockedXor16_rel
#define InterlockedXorNoFence16 _InterlockedXor16_nf
#define InterlockedIncrementAcquire16 _InterlockedIncrement16_acq
#define InterlockedIncrementRelease16 _InterlockedIncrement16_rel
#define InterlockedIncrementNoFence16 _InterlockedIncrement16_nf
#define InterlockedDecrementAcquire16 _InterlockedDecrement16_acq
#define InterlockedDecrementRelease16 _InterlockedDecrement16_rel
#define InterlockedDecrementNoFence16 _InterlockedDecrement16_nf
#define InterlockedExchangeAcquire16 _InterlockedExchange16_acq
#define InterlockedExchangeNoFence16 _InterlockedExchange16_nf
#define InterlockedCompareExchangeAcquire16 _InterlockedCompareExchange16_acq
#define InterlockedCompareExchangeRelease16 _InterlockedCompareExchange16_rel
#define InterlockedCompareExchangeNoFence16 _InterlockedCompareExchange16_nf
#define InterlockedAndAcquire _InterlockedAnd_acq
#define InterlockedAndRelease _InterlockedAnd_rel
#define InterlockedAndNoFence _InterlockedAnd_nf
#define InterlockedOrAcquire _InterlockedOr_acq
#define InterlockedOrRelease _InterlockedOr_rel
#define InterlockedOrNoFence _InterlockedOr_nf
#define InterlockedXorAcquire _InterlockedXor_acq
#define InterlockedXorRelease _InterlockedXor_rel
#define InterlockedXorNoFence _InterlockedXor_nf
#define InterlockedIncrementAcquire _InterlockedIncrement_acq
#define InterlockedIncrementRelease _InterlockedIncrement_rel
#define InterlockedIncrementNoFence _InterlockedIncrement_nf
#define InterlockedDecrementAcquire _InterlockedDecrement_acq
#define InterlockedDecrementRelease _InterlockedDecrement_rel
#define InterlockedDecrementNoFence _InterlockedDecrement_nf
#define InterlockedAddAcquire _InterlockedAdd_acq
#define InterlockedAddRelease _InterlockedAdd_rel
#define InterlockedAddNoFence _InterlockedAdd_nf
#define InterlockedExchangeAcquire _InterlockedExchange_acq
#define InterlockedExchangeNoFence _InterlockedExchange_nf
#define InterlockedExchangeAddAcquire _InterlockedExchangeAdd_acq
#define InterlockedExchangeAddRelease _InterlockedExchangeAdd_rel
#define InterlockedExchangeAddNoFence _InterlockedExchangeAdd_nf
#define InterlockedCompareExchangeAcquire _InterlockedCompareExchange_acq
#define InterlockedCompareExchangeRelease _InterlockedCompareExchange_rel
#define InterlockedCompareExchangeNoFence _InterlockedCompareExchange_nf
#define InterlockedAndAcquire64 _InterlockedAnd64_acq
#define InterlockedAndRelease64 _InterlockedAnd64_rel
#define InterlockedAndNoFence64 _InterlockedAnd64_nf
#define InterlockedOrAcquire64 _InterlockedOr64_acq
#define InterlockedOrRelease64 _InterlockedOr64_rel
#define InterlockedOrNoFence64 _InterlockedOr64_nf
#define InterlockedXorAcquire64 _InterlockedXor64_acq
#define InterlockedXorRelease64 _InterlockedXor64_rel
#define InterlockedXorNoFence64 _InterlockedXor64_nf
#define InterlockedIncrementAcquire64 _InterlockedIncrement64_acq
#define InterlockedIncrementRelease64 _InterlockedIncrement64_rel
#define InterlockedIncrementNoFence64 _InterlockedIncrement64_nf
#define InterlockedDecrementAcquire64 _InterlockedDecrement64_acq
#define InterlockedDecrementRelease64 _InterlockedDecrement64_rel
#define InterlockedDecrementNoFence64 _InterlockedDecrement64_nf
#define InterlockedAddAcquire64 _InterlockedAdd64_acq
#define InterlockedAddRelease64 _InterlockedAdd64_rel
#define InterlockedAddNoFence64 _InterlockedAdd64_nf
#define InterlockedExchangeAcquire64 _InterlockedExchange64_acq
#define InterlockedExchangeNoFence64 _InterlockedExchange64_nf
#define InterlockedExchangeAddAcquire64 _InterlockedExchangeAdd64_acq
#define InterlockedExchangeAddRelease64 _InterlockedExchangeAdd64_rel
#define InterlockedExchangeAddNoFence64 _InterlockedExchangeAdd64_nf
#define InterlockedCompareExchangeAcquire64 _InterlockedCompareExchange64_acq
#define InterlockedCompareExchangeRelease64 _InterlockedCompareExchange64_rel
#define InterlockedCompareExchangeNoFence64 _InterlockedCompareExchange64_nf
#define InterlockedCompareExchange128 _InterlockedCompareExchange128
// AMD64_WORKITEM : these are redundant but necessary for AMD64 compatibility
#define InterlockedAnd64Acquire _InterlockedAnd64_acq
#define InterlockedAnd64Release _InterlockedAnd64_rel
#define InterlockedAnd64NoFence _InterlockedAnd64_nf
#define InterlockedOr64Acquire _InterlockedOr64_acq
#define InterlockedOr64Release _InterlockedOr64_rel
#define InterlockedOr64NoFence _InterlockedOr64_nf
#define InterlockedXor64Acquire _InterlockedXor64_acq
#define InterlockedXor64Release _InterlockedXor64_rel
#define InterlockedXor64NoFence _InterlockedXor64_nf
#define InterlockedExchangePointerAcquire _InterlockedExchangePointer_acq
#define InterlockedExchangePointerNoFence _InterlockedExchangePointer_nf
#define InterlockedCompareExchangePointerAcquire _InterlockedCompareExchangePointer_acq
#define InterlockedCompareExchangePointerRelease _InterlockedCompareExchangePointer_rel
#define InterlockedCompareExchangePointerNoFence _InterlockedCompareExchangePointer_nf
#define InterlockedExchangeAddSizeT(a, b) InterlockedExchangeAdd64((LONG64 *)a, b)
#define InterlockedExchangeAddSizeTAcquire(a, b) InterlockedExchangeAddAcquire64((LONG64 *)a, b)
#define InterlockedExchangeAddSizeTNoFence(a, b) InterlockedExchangeAddNoFence64((LONG64 *)a, b)
#define InterlockedIncrementSizeT(a) InterlockedIncrement64((LONG64 *)a)
#define InterlockedIncrementSizeTNoFence(a) InterlockedIncrementNoFence64((LONG64 *)a)
#define InterlockedDecrementSizeT(a) InterlockedDecrement64((LONG64 *)a)
#define InterlockedDecrementSizeTNoFence(a) InterlockedDecrementNoFence64((LONG64 *)a)
//
// Define accessors for volatile loads and stores.
//
#pragma intrinsic(__iso_volatile_load8)
#pragma intrinsic(__iso_volatile_load16)
#pragma intrinsic(__iso_volatile_load32)
#pragma intrinsic(__iso_volatile_load64)
#pragma intrinsic(__iso_volatile_store8)
#pragma intrinsic(__iso_volatile_store16)
#pragma intrinsic(__iso_volatile_store32)
#pragma intrinsic(__iso_volatile_store64)
// end_wdm end_ntndis end_ntosp end_ntminiport
// end_ntoshvp
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
// begin_ntoshvp
// begin_wdm begin_ntndis begin_ntosp begin_ntminiport
FORCEINLINE
CHAR
ReadAcquire8 (
_In_ _Interlocked_operand_ CHAR const volatile *Source
)
{
CHAR Value;
Value = __iso_volatile_load8(Source);
__dmb(_ARM64_BARRIER_ISH);
return Value;
}
FORCEINLINE
CHAR
ReadNoFence8 (
_In_ _Interlocked_operand_ CHAR const volatile *Source
)
{
CHAR Value;
Value = __iso_volatile_load8(Source);
return Value;
}
FORCEINLINE
VOID
WriteRelease8 (
_Out_ _Interlocked_operand_ CHAR volatile *Destination,
_In_ CHAR Value
)
{
__dmb(_ARM64_BARRIER_ISH);
__iso_volatile_store8(Destination, Value);
return;
}
FORCEINLINE
VOID
WriteNoFence8 (
_Out_ _Interlocked_operand_ CHAR volatile *Destination,
_In_ CHAR Value
)
{
__iso_volatile_store8(Destination, Value);
return;
}
FORCEINLINE
SHORT
ReadAcquire16 (
_In_ _Interlocked_operand_ SHORT const volatile *Source
)
{
SHORT Value;
Value = __iso_volatile_load16(Source);
__dmb(_ARM64_BARRIER_ISH);
return Value;
}
FORCEINLINE
SHORT
ReadNoFence16 (
_In_ _Interlocked_operand_ SHORT const volatile *Source
)
{
SHORT Value;
Value = __iso_volatile_load16(Source);
return Value;
}
FORCEINLINE
VOID
WriteRelease16 (
_Out_ _Interlocked_operand_ SHORT volatile *Destination,
_In_ SHORT Value
)
{
__dmb(_ARM64_BARRIER_ISH);
__iso_volatile_store16(Destination, Value);
return;
}
FORCEINLINE
VOID
WriteNoFence16 (
_Out_ _Interlocked_operand_ SHORT volatile *Destination,
_In_ SHORT Value
)
{
__iso_volatile_store16(Destination, Value);
return;
}
FORCEINLINE
LONG
ReadAcquire (
_In_ _Interlocked_operand_ LONG const volatile *Source
)
{
LONG Value;
Value = __iso_volatile_load32((int *)Source);
__dmb(_ARM64_BARRIER_ISH);
return Value;
}
FORCEINLINE
LONG
ReadNoFence (
_In_ _Interlocked_operand_ LONG const volatile *Source
)
{
LONG Value;
Value = __iso_volatile_load32((int *)Source);
return Value;
}
FORCEINLINE
VOID
WriteRelease (
_Out_ _Interlocked_operand_ LONG volatile *Destination,
_In_ LONG Value
)
{
__dmb(_ARM64_BARRIER_ISH);
__iso_volatile_store32((int *)Destination, Value);
return;
}
FORCEINLINE
VOID
WriteNoFence (
_Out_ _Interlocked_operand_ LONG volatile *Destination,
_In_ LONG Value
)
{
__iso_volatile_store32((int *)Destination, Value);
return;
}
FORCEINLINE
LONG64
ReadAcquire64 (
_In_ _Interlocked_operand_ LONG64 const volatile *Source
)
{
LONG64 Value;
Value = __iso_volatile_load64(Source);
__dmb(_ARM64_BARRIER_ISH);
return Value;
}
FORCEINLINE
LONG64
ReadNoFence64 (
_In_ _Interlocked_operand_ LONG64 const volatile *Source
)
{
LONG64 Value;
Value = __iso_volatile_load64(Source);
return Value;
}
FORCEINLINE
VOID
WriteRelease64 (
_Out_ _Interlocked_operand_ LONG64 volatile *Destination,
_In_ LONG64 Value
)
{
__dmb(_ARM64_BARRIER_ISH);
__iso_volatile_store64(Destination, Value);
return;
}
FORCEINLINE
VOID
WriteNoFence64 (
_Out_ _Interlocked_operand_ LONG64 volatile *Destination,
_In_ LONG64 Value
)
{
__iso_volatile_store64(Destination, Value);
return;
}
// end_wdm end_ntndis end_ntosp end_ntminiport
// end_ntoshvp
#endif // WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
// begin_ntoshvp
// begin_wdm begin_ntndis begin_ntosp begin_ntminiport
//
// Define coprocessor access intrinsics. Coprocessor 15 contains
// registers for the MMU, cache, TLB, feature bits, core
// identification and performance counters.
//
#define ARM64_SYSREG(op0, op1, crn, crm, op2) \
( ((op0 & 1) << 14) | \
((op1 & 7) << 11) | \
((crn & 15) << 7) | \
((crm & 15) << 3) | \
((op2 & 7) << 0) )
#define ARM64_PMCCNTR_EL0 ARM64_SYSREG(3,3, 9,13,0) // Cycle Count Register [CP15_PMCCNTR]
#define ARM64_PMSELR_EL0 ARM64_SYSREG(3,3, 9,12,5) // Event Counter Selection Register [CP15_PMSELR]
#define ARM64_PMXEVCNTR_EL0 ARM64_SYSREG(3,3, 9,13,2) // Event Count Register [CP15_PMXEVCNTR]
#define ARM64_PMXEVCNTRn_EL0(n) ARM64_SYSREG(3,3,14, 8+((n)/8), (n)%8) // Direct Event Count Register [n/a]
#define ARM64_TPIDR_EL0 ARM64_SYSREG(3,3,13, 0,2) // Thread ID Register, User Read/Write [CP15_TPIDRURW]
#define ARM64_TPIDRRO_EL0 ARM64_SYSREG(3,3,13, 0,3) // Thread ID Register, User Read Only [CP15_TPIDRURO]
#define ARM64_TPIDR_EL1 ARM64_SYSREG(3,0,13, 0,4) // Thread ID Register, Privileged Only [CP15_TPIDRPRW]
#pragma intrinsic(_WriteStatusReg)
#pragma intrinsic(_ReadStatusReg)
//
// PreFetchCacheLine level defines.
//
#define PF_TEMPORAL_LEVEL_1 0
#define PF_TEMPORAL_LEVEL_2 1
#define PF_TEMPORAL_LEVEL_3 2
#define PF_NON_TEMPORAL_LEVEL_ALL 3
//
// Define function to read the value of the time stamp counter.
//
FORCEINLINE
DWORD64
ReadTimeStampCounter(
VOID
)
{
return (DWORD64)_ReadStatusReg(ARM64_PMCCNTR_EL0);
}
FORCEINLINE
DWORD64
ReadPMC (
_In_ DWORD Counter
)
{
// ARM64_WORKITEM: These can be directly accessed, but
// given our usage, it that any benefit? We need to know
// the register index at compile time, though atomicity
// benefits would still be good if needed, even if we
// went with a big switch statement.
_WriteStatusReg(ARM64_PMSELR_EL0, Counter);
return (DWORD64)_ReadStatusReg(ARM64_PMXEVCNTR_EL0);
}
//
// Define functions to capture the high 64-bits of a 128-bit multiply.
//
#define MultiplyHigh __mulh
#define UnsignedMultiplyHigh __umulh
#pragma intrinsic(__mulh)
#pragma intrinsic(__umulh)
#ifdef __cplusplus
}
#endif
#endif // !defined(_M_CEE_PURE)
#endif // defined(_M_ARM64) && !defined(RC_INVOKED) && !defined(MIDL_PASS)
#if defined(_M_CEE_PURE)
FORCEINLINE
VOID
YieldProcessor (
VOID
)
{
}
#endif
// end_ntoshvp
//
// The following values specify the type of access in the first parameter
// of the exception record whan the exception code specifies an access
// violation.
//
#define EXCEPTION_READ_FAULT 0 // exception caused by a read
#define EXCEPTION_WRITE_FAULT 1 // exception caused by a write
#define EXCEPTION_EXECUTE_FAULT 8 // exception caused by an instruction fetch
// begin_wx86
//
// The following flags control the contents of the CONTEXT structure.
//
#if !defined(RC_INVOKED)
#define CONTEXT_ARM64 0x00400000L
// end_wx86
#define CONTEXT_CONTROL (CONTEXT_ARM64 | 0x1L)
#define CONTEXT_INTEGER (CONTEXT_ARM64 | 0x2L)
#define CONTEXT_FLOATING_POINT (CONTEXT_ARM64 | 0x4L)
#define CONTEXT_DEBUG_REGISTERS (CONTEXT_ARM64 | 0x8L)
#define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_INTEGER | CONTEXT_FLOATING_POINT)
#define CONTEXT_ALL (CONTEXT_CONTROL | CONTEXT_INTEGER | CONTEXT_FLOATING_POINT | CONTEXT_DEBUG_REGISTERS)
#define CONTEXT_EXCEPTION_ACTIVE 0x08000000L
#define CONTEXT_SERVICE_ACTIVE 0x10000000L
#define CONTEXT_EXCEPTION_REQUEST 0x40000000L
#define CONTEXT_EXCEPTION_REPORTING 0x80000000L
//
// This flag is set by the unwinder if it has unwound to a call
// site, and cleared whenever it unwinds through a trap frame.
// It is used by language-specific exception handlers to help
// differentiate exception scopes during dispatching.
//
#define CONTEXT_UNWOUND_TO_CALL 0x20000000
#define CONTEXT_RET_TO_GUEST 0x04000000
// begin_wx86
#endif // !defined(RC_INVOKED)
//
// Define initial Cpsr/Fpscr value
//
#define INITIAL_CPSR 0x10
#define INITIAL_FPSCR 0
// begin_ntoshvp
//
// Specify the number of breakpoints and watchpoints that the OS
// will track. Architecturally, ARM64 supports up to 16. In practice,
// however, almost no one implements more than 4 of each.
//
#define ARM64_MAX_BREAKPOINTS 8
#define ARM64_MAX_WATCHPOINTS 2
//
// Context Frame
//
// This frame has a several purposes: 1) it is used as an argument to
// NtContinue, 2) it is used to constuct a call frame for APC delivery,
// and 3) it is used in the user level thread creation routines.
//
//
// The flags field within this record controls the contents of a CONTEXT
// record.
//
// If the context record is used as an input parameter, then for each
// portion of the context record controlled by a flag whose value is
// set, it is assumed that that portion of the context record contains
// valid context. If the context record is being used to modify a threads
// context, then only that portion of the threads context is modified.
//
// If the context record is used as an output parameter to capture the
// context of a thread, then only those portions of the thread's context
// corresponding to set flags will be returned.
//
// CONTEXT_CONTROL specifies Sp, Lr, Pc, and Cpsr
//
// CONTEXT_INTEGER specifies R0-R12
//
// CONTEXT_FLOATING_POINT specifies Q0-Q15 / D0-D31 / S0-S31
//
// CONTEXT_DEBUG_REGISTERS specifies up to 16 of DBGBVR, DBGBCR, DBGWVR,
// DBGWCR.
//
typedef union _NEON128 {
struct {
ULONGLONG Low;
LONGLONG High;
} DUMMYSTRUCTNAME;
double D[2];
float S[4];
WORD H[8];
BYTE B[16];
} NEON128, *PNEON128;
typedef struct DECLSPEC_ALIGN(16) _CONTEXT {
//
// Control flags.
//
/* +0x000 */ DWORD ContextFlags;
//
// Integer registers
//
/* +0x004 */ DWORD Cpsr; // NZVF + DAIF + CurrentEL + SPSel
/* +0x008 */ union {
struct {
DWORD64 X0;
DWORD64 X1;
DWORD64 X2;
DWORD64 X3;
DWORD64 X4;
DWORD64 X5;
DWORD64 X6;
DWORD64 X7;
DWORD64 X8;
DWORD64 X9;
DWORD64 X10;
DWORD64 X11;
DWORD64 X12;
DWORD64 X13;
DWORD64 X14;
DWORD64 X15;
DWORD64 X16;
DWORD64 X17;
DWORD64 X18;
DWORD64 X19;
DWORD64 X20;
DWORD64 X21;
DWORD64 X22;
DWORD64 X23;
DWORD64 X24;
DWORD64 X25;
DWORD64 X26;
DWORD64 X27;
DWORD64 X28;
} DUMMYSTRUCTNAME;
DWORD64 X[29];
} DUMMYUNIONNAME;
/* +0x0f0 */ DWORD64 Fp;
/* +0x0f8 */ DWORD64 Lr;
/* +0x100 */ DWORD64 Sp;
/* +0x108 */ DWORD64 Pc;
//
// Floating Point/NEON Registers
//
/* +0x110 */ NEON128 V[32];
/* +0x310 */ DWORD Fpcr;
/* +0x314 */ DWORD Fpsr;
//
// Debug registers
//
/* +0x318 */ DWORD Bcr[ARM64_MAX_BREAKPOINTS];
/* +0x338 */ DWORD64 Bvr[ARM64_MAX_BREAKPOINTS];
/* +0x378 */ DWORD Wcr[ARM64_MAX_WATCHPOINTS];
/* +0x380 */ DWORD64 Wvr[ARM64_MAX_WATCHPOINTS];
/* +0x390 */
} CONTEXT, *PCONTEXT;
// end_ntoshvp
//
// Select platform-specific definitions
//
typedef struct _IMAGE_ARM64_RUNTIME_FUNCTION_ENTRY RUNTIME_FUNCTION, *PRUNTIME_FUNCTION;
typedef SCOPE_TABLE_ARM64 SCOPE_TABLE, *PSCOPE_TABLE;
//
// Define unwind information flags.
//
#define UNW_FLAG_NHANDLER 0x0 /* any handler */
#define UNW_FLAG_EHANDLER 0x1 /* filter handler */
#define UNW_FLAG_UHANDLER 0x2 /* unwind handler */
//
// Define unwind history table structure.
//
#define UNWIND_HISTORY_TABLE_SIZE 12
typedef struct _UNWIND_HISTORY_TABLE_ENTRY {
DWORD64 ImageBase;
PRUNTIME_FUNCTION FunctionEntry;
} UNWIND_HISTORY_TABLE_ENTRY, *PUNWIND_HISTORY_TABLE_ENTRY;
typedef struct _UNWIND_HISTORY_TABLE {
DWORD Count;
BYTE LocalHint;
BYTE GlobalHint;
BYTE Search;
BYTE Once;
DWORD64 LowAddress;
DWORD64 HighAddress;
UNWIND_HISTORY_TABLE_ENTRY Entry[UNWIND_HISTORY_TABLE_SIZE];
} UNWIND_HISTORY_TABLE, *PUNWIND_HISTORY_TABLE;
//
// Define exception dispatch context structure.
//
typedef struct _DISPATCHER_CONTEXT {
DWORD64 ControlPc;
DWORD64 ImageBase;
PRUNTIME_FUNCTION FunctionEntry;
DWORD64 EstablisherFrame;
DWORD64 TargetPc;
PCONTEXT ContextRecord;
PEXCEPTION_ROUTINE LanguageHandler;
PVOID HandlerData;
PUNWIND_HISTORY_TABLE HistoryTable;
DWORD ScopeIndex;
BOOLEAN ControlPcIsUnwound;
PBYTE NonVolatileRegisters;
} DISPATCHER_CONTEXT, *PDISPATCHER_CONTEXT;
//
// Define exception filter and termination handler function types.
// N.B. These functions use a custom calling convention.
//
struct _EXCEPTION_POINTERS;
typedef
LONG
(*PEXCEPTION_FILTER) (
struct _EXCEPTION_POINTERS *ExceptionPointers,
DWORD64 EstablisherFrame
);
typedef
VOID
(*PTERMINATION_HANDLER) (
BOOLEAN AbnormalTermination,
DWORD64 EstablisherFrame
);
//
// Define dynamic function table entry.
//
typedef
_Function_class_(GET_RUNTIME_FUNCTION_CALLBACK)
PRUNTIME_FUNCTION
GET_RUNTIME_FUNCTION_CALLBACK (
_In_ DWORD64 ControlPc,
_In_opt_ PVOID Context
);
typedef GET_RUNTIME_FUNCTION_CALLBACK *PGET_RUNTIME_FUNCTION_CALLBACK;
typedef
_Function_class_(OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK)
DWORD
OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK (
_In_ HANDLE Process,
_In_ PVOID TableAddress,
_Out_ PDWORD Entries,
_Out_ PRUNTIME_FUNCTION* Functions
);
typedef OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK *POUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK;
#define OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK_EXPORT_NAME \
"OutOfProcessFunctionTableCallback"
//
// Nonvolatile context pointer record.
//
typedef struct _KNONVOLATILE_CONTEXT_POINTERS {
PDWORD64 X19;
PDWORD64 X20;
PDWORD64 X21;
PDWORD64 X22;
PDWORD64 X23;
PDWORD64 X24;
PDWORD64 X25;
PDWORD64 X26;
PDWORD64 X27;
PDWORD64 X28;
PDWORD64 Fp;
PDWORD64 Lr;
PDWORD64 D8;
PDWORD64 D9;
PDWORD64 D10;
PDWORD64 D11;
PDWORD64 D12;
PDWORD64 D13;
PDWORD64 D14;
PDWORD64 D15;
} KNONVOLATILE_CONTEXT_POINTERS, *PKNONVOLATILE_CONTEXT_POINTERS;
// begin_ntoshvp
#endif // _ARM64_
// end_ntoshvp
#ifdef __cplusplus
extern "C" {
#endif
//
// Assert exception.
//
#if !defined(_DBGRAISEASSERTIONFAILURE_) && !defined(RC_INVOKED) && !defined(MIDL_PASS)
#define _DBGRAISEASSERTIONFAILURE_
#if defined(_PREFAST_)
__analysis_noreturn
FORCEINLINE
VOID
DbgRaiseAssertionFailure (
VOID
);
#endif
#if defined(_AMD64_)
#if defined(_M_AMD64)
VOID
__int2c (
VOID
);
#pragma intrinsic(__int2c)
#if !defined(_PREFAST_)
#define DbgRaiseAssertionFailure() __int2c()
#endif // !defined(_PREFAST_)
#endif // defined(_M_AMD64)
#elif defined(_X86_)
#if defined(_M_IX86)
#if _MSC_FULL_VER >= 140030222
VOID
__int2c (
VOID
);
#pragma intrinsic(__int2c)
#if !defined(_PREFAST_)
#define DbgRaiseAssertionFailure() __int2c()
#endif // !defined(_PREFAST_)
#else // _MSC_FULL_VER >= 140030222
#pragma warning( push )
#pragma warning( disable : 4793 )
#if !defined(_PREFAST_)
__analysis_noreturn
FORCEINLINE
VOID
DbgRaiseAssertionFailure (
VOID
)
{
__asm int 0x2c
}
#endif // !defined(_PREFAST_)
#pragma warning( pop )
#endif // _MSC_FULL_VER >= 140030222
#endif // defined(_M_IX86)
#elif defined(_IA64_)
#if defined(_M_IA64)
void
__break(
_In_ int StIIM
);
#pragma intrinsic (__break)
#define BREAK_DEBUG_BASE 0x080000
#define ASSERT_BREAKPOINT (BREAK_DEBUG_BASE+3) // Cause a STATUS_ASSERTION_FAILURE exception to be raised.
#if !defined(_PREFAST_)
#define DbgRaiseAssertionFailure() __break(ASSERT_BREAKPOINT)
#endif // !defined(_PREFAST_)
#endif // defined(_M_IA64)
#elif defined(_ARM64_)
#if defined(_M_ARM64)
void
__break(
_In_ int Code
);
#pragma intrinsic (__break)
#if !defined(_PREFAST_)
#define DbgRaiseAssertionFailure() __break(0xf001)
#endif // !defined(_PREFAST_)
#endif // defined(_M_ARM64)
#elif defined(_ARM_)
#if defined(_M_ARM)
VOID
__emit(
const unsigned __int32 opcode
);
#pragma intrinsic(__emit)
#if !defined(_PREFAST_)
#define DbgRaiseAssertionFailure() __emit(0xdefc) // THUMB_ASSERT
#endif // !defined(_PREFAST_)
#endif // defined(_M_ARM)
#endif // _AMD64_, _X86_, _IA64_, _ARM64_, _ARM_
#endif // !defined(_DBGRAISEASSERTIONFAILURE_) && !defined(RC_INVOKED) && !defined(MIDL_PASS)
#ifdef __cplusplus
}
#endif
// begin_ntoshvp
#ifdef _X86_
//
// Some intrinsics have a redundant __cdecl calling-convention specifier when
// not compiled with /clr:pure.
//
#if defined(_M_CEE_PURE)
#define CDECL_NON_WVMPURE
#else
#define CDECL_NON_WVMPURE __cdecl
#endif
// end_ntoshvp
//
// Disable these two pragmas that evaluate to "sti" "cli" on x86 so that driver
// writers to not leave them inadvertantly in their code.
//
#if !defined(MIDL_PASS)
#if !defined(RC_INVOKED)
#if _MSC_VER >= 1200
#pragma warning(push)
#endif // _MSC_VER >= 1200
//#pragma warning(disable:4164) // disable C4164 warning so that apps that
// build with /Od don't get weird errors !
#if _MSC_VER >= 1200
#pragma warning( pop )
#else
#pragma warning( default:4164 ) // reenable C4164 warning
#endif // _MSC_VER >= 1200
#endif // !defined(MIDL_PASS)
#endif // !defined(RC_INVOKED)
// end_ntddk end_nthal
// begin_ntoshvp
#if defined(_M_IX86) && !defined(RC_INVOKED) && !defined(MIDL_PASS)
#ifdef __cplusplus
extern "C" {
#endif
#if !defined(_MANAGED)
//
// Define bit test intrinsics.
//
#define BitTest _bittest
#define BitTestAndComplement _bittestandcomplement
#define BitTestAndSet _bittestandset
#define BitTestAndReset _bittestandreset
#define InterlockedBitTestAndSet _interlockedbittestandset
#define InterlockedBitTestAndSetAcquire _interlockedbittestandset
#define InterlockedBitTestAndSetRelease _interlockedbittestandset
#define InterlockedBitTestAndSetNoFence _interlockedbittestandset
#define InterlockedBitTestAndReset _interlockedbittestandreset
#define InterlockedBitTestAndResetAcquire _interlockedbittestandreset
#define InterlockedBitTestAndResetRelease _interlockedbittestandreset
#define InterlockedBitTestAndResetNoFence _interlockedbittestandreset
_Must_inspect_result_
BOOLEAN
_bittest (
_In_reads_bytes_((Offset/8)+1) LONG const *Base,
_In_range_(>=,0) LONG Offset
);
BOOLEAN
_bittestandcomplement (
_Inout_updates_bytes_((Offset/8)+1) LONG *Base,
_In_range_(>=,0) LONG Offset
);
BOOLEAN
_bittestandset (
_Inout_updates_bytes_((Offset/8)+1) LONG *Base,
_In_range_(>=,0) LONG Offset
);
BOOLEAN
_bittestandreset (
_Inout_updates_bytes_((Offset/8)+1) LONG *Base,
_In_range_(>=,0) LONG Offset
);
BOOLEAN
_interlockedbittestandset (
_Inout_updates_bytes_((Offset/8)+1) _Interlocked_operand_ LONG volatile *Base,
_In_range_(>=,0) LONG Offset
);
BOOLEAN
_interlockedbittestandreset (
_Inout_updates_bytes_((Offset/8)+1) _Interlocked_operand_ LONG volatile *Base,
_In_range_(>=,0) LONG Offset
);
#pragma intrinsic(_bittest)
#pragma intrinsic(_bittestandcomplement)
#pragma intrinsic(_bittestandset)
#pragma intrinsic(_bittestandreset)
#pragma intrinsic(_interlockedbittestandset)
#pragma intrinsic(_interlockedbittestandreset)
//
// Define bit scan intrinsics.
//
#define BitScanForward _BitScanForward
#define BitScanReverse _BitScanReverse
_Success_(return != 0)
BOOLEAN
_BitScanForward (
_Out_ DWORD *Index,
_In_ DWORD Mask
);
_Success_(return != 0)
BOOLEAN
_BitScanReverse (
_Out_ DWORD *Index,
_In_ DWORD Mask
);
#pragma intrinsic(_BitScanForward)
#pragma intrinsic(_BitScanReverse)
_Success_(return != 0)
FORCEINLINE
BOOLEAN
_InlineBitScanForward64 (
_Out_ DWORD *Index,
_In_ DWORD64 Mask
)
{
if (_BitScanForward(Index, (DWORD)Mask)) {
return 1;
}
if (_BitScanForward(Index, (DWORD)(Mask >> 32))) {
*Index += 32;
return 1;
}
return 0;
}
#define BitScanForward64 _InlineBitScanForward64
_Success_(return != 0)
FORCEINLINE
BOOLEAN
_InlineBitScanReverse64 (
_Out_ DWORD *Index,
_In_ DWORD64 Mask
)
{
if (_BitScanReverse(Index, (DWORD)(Mask >> 32))) {
*Index += 32;
return 1;
}
if (_BitScanReverse(Index, (DWORD)Mask)) {
return 1;
}
return 0;
}
#define BitScanReverse64 _InlineBitScanReverse64
#endif // !defined(_MANAGED)
//
// Interlocked intrinsic functions.
//
#if !defined(_MANAGED)
#define InterlockedIncrement16 _InterlockedIncrement16
#define InterlockedIncrementAcquire16 _InterlockedIncrement16
#define InterlockedIncrementRelease16 _InterlockedIncrement16
#define InterlockedIncrementNoFence16 _InterlockedIncrement16
#define InterlockedDecrement16 _InterlockedDecrement16
#define InterlockedDecrementAcquire16 _InterlockedDecrement16
#define InterlockedDecrementRelease16 _InterlockedDecrement16
#define InterlockedDecrementNoFence16 _InterlockedDecrement16
#define InterlockedCompareExchange16 _InterlockedCompareExchange16
#define InterlockedCompareExchangeAcquire16 _InterlockedCompareExchange16
#define InterlockedCompareExchangeRelease16 _InterlockedCompareExchange16
#define InterlockedCompareExchangeNoFence16 _InterlockedCompareExchange16
#define InterlockedCompareExchange64 _InterlockedCompareExchange64
#define InterlockedCompareExchangeAcquire64 _InterlockedCompareExchange64
#define InterlockedCompareExchangeRelease64 _InterlockedCompareExchange64
#define InterlockedCompareExchangeNoFence64 _InterlockedCompareExchange64
SHORT
InterlockedIncrement16 (
_Inout_ _Interlocked_operand_ SHORT volatile *Addend
);
SHORT
InterlockedDecrement16 (
_Inout_ _Interlocked_operand_ SHORT volatile *Addend
);
SHORT
InterlockedCompareExchange16 (
_Inout_ _Interlocked_operand_ SHORT volatile *Destination,
_In_ SHORT ExChange,
_In_ SHORT Comperand
);
LONG64
InterlockedCompareExchange64 (
_Inout_ _Interlocked_operand_ LONG64 volatile *Destination,
_In_ LONG64 ExChange,
_In_ LONG64 Comperand
);
#pragma intrinsic(_InterlockedIncrement16)
#pragma intrinsic(_InterlockedDecrement16)
#pragma intrinsic(_InterlockedCompareExchange16)
#pragma intrinsic(_InterlockedCompareExchange64)
#endif // !defined(_MANAGED)
#define InterlockedAnd _InterlockedAnd
#define InterlockedAndAcquire _InterlockedAnd
#define InterlockedAndRelease _InterlockedAnd
#define InterlockedAndNoFence _InterlockedAnd
#define InterlockedOr _InterlockedOr
#define InterlockedOrAcquire _InterlockedOr
#define InterlockedOrRelease _InterlockedOr
#define InterlockedOrNoFence _InterlockedOr
#define InterlockedXor _InterlockedXor
#define InterlockedXorAcquire _InterlockedXor
#define InterlockedXorRelease _InterlockedXor
#define InterlockedXorNoFence _InterlockedXor
#define InterlockedIncrement _InterlockedIncrement
#define InterlockedIncrementAcquire _InterlockedIncrement
#define InterlockedIncrementRelease _InterlockedIncrement
#define InterlockedIncrementNoFence _InterlockedIncrement
#define InterlockedDecrement _InterlockedDecrement
#define InterlockedDecrementAcquire _InterlockedDecrement
#define InterlockedDecrementRelease _InterlockedDecrement
#define InterlockedDecrementNoFence _InterlockedDecrement
#define InterlockedAdd _InlineInterlockedAdd
#define InterlockedAddAcquire _InlineInterlockedAdd
#define InterlockedAddRelease _InlineInterlockedAdd
#define InterlockedAddNoFence _InlineInterlockedAdd
#define InterlockedAddNoFence64 _InlineInterlockedAdd64
#define InterlockedExchange _InterlockedExchange
#define InterlockedExchangeAcquire _InterlockedExchange
#define InterlockedExchangeNoFence _InterlockedExchange
#define InterlockedExchangeAdd _InterlockedExchangeAdd
#define InterlockedExchangeAddAcquire _InterlockedExchangeAdd
#define InterlockedExchangeAddRelease _InterlockedExchangeAdd
#define InterlockedExchangeAddNoFence _InterlockedExchangeAdd
#define InterlockedCompareExchange _InterlockedCompareExchange
#define InterlockedCompareExchangeAcquire _InterlockedCompareExchange
#define InterlockedCompareExchangeRelease _InterlockedCompareExchange
#define InterlockedCompareExchangeNoFence _InterlockedCompareExchange
#define InterlockedExchange16 _InterlockedExchange16
LONG
InterlockedAnd (
_Inout_ _Interlocked_operand_ LONG volatile *Destination,
_In_ LONG Value
);
LONG
InterlockedOr (
_Inout_ _Interlocked_operand_ LONG volatile *Destination,
_In_ LONG Value
);
LONG
InterlockedXor (
_Inout_ _Interlocked_operand_ LONG volatile *Destination,
_In_ LONG Value
);
LONG
CDECL_NON_WVMPURE
InterlockedIncrement (
_Inout_ _Interlocked_operand_ LONG volatile *Addend
);
LONG
CDECL_NON_WVMPURE
InterlockedDecrement (
_Inout_ _Interlocked_operand_ LONG volatile *Addend
);
LONG
__cdecl
InterlockedExchange (
_Inout_ _Interlocked_operand_ LONG volatile *Target,
_In_ LONG Value
);
LONG
__cdecl
InterlockedExchangeAdd (
_Inout_ _Interlocked_operand_ LONG volatile *Addend,
_In_ LONG Value
);
FORCEINLINE
LONG
_InlineInterlockedAdd (
_Inout_ _Interlocked_operand_ LONG volatile *Addend,
_In_ LONG Value
)
{
return InterlockedExchangeAdd(Addend, Value) + Value;
}
LONG
CDECL_NON_WVMPURE
InterlockedCompareExchange (
_Inout_ _Interlocked_operand_ LONG volatile * Destination,
_In_ LONG ExChange,
_In_ LONG Comperand
);
#undef _InterlockedExchangePointer
FORCEINLINE
_Ret_writes_(_Inexpressible_(Unknown))
PVOID
_InlineInterlockedExchangePointer(
_Inout_ _At_(*Destination,
_Pre_writable_byte_size_(_Inexpressible_(Unknown))
_Post_writable_byte_size_(_Inexpressible_(Unknown)))
_Interlocked_operand_ PVOID volatile * Destination,
_In_opt_ PVOID Value
)
{
return (PVOID)InterlockedExchange((LONG volatile *) Destination,
(LONG) Value);
}
#define InterlockedExchangePointer _InlineInterlockedExchangePointer
#define InterlockedExchangePointerAcquire _InlineInterlockedExchangePointer
#define InterlockedExchangePointerRelease _InlineInterlockedExchangePointer
#define InterlockedExchangePointerNoFence _InlineInterlockedExchangePointer
FORCEINLINE
_Ret_writes_(_Inexpressible_(Unknown))
PVOID
_InlineInterlockedCompareExchangePointer (
_Inout_ _At_(*Destination,
_Pre_writable_byte_size_(_Inexpressible_(Unknown))
_Post_writable_byte_size_(_Inexpressible_(Unknown)))
_Interlocked_operand_ PVOID volatile * Destination,
_In_opt_ PVOID ExChange,
_In_opt_ PVOID Comperand
)
{
return (PVOID)InterlockedCompareExchange((LONG volatile *) Destination,
(LONG) ExChange,
(LONG) Comperand);
}
#define InterlockedCompareExchangePointer \
_InlineInterlockedCompareExchangePointer
#define InterlockedCompareExchangePointerAcquire \
_InlineInterlockedCompareExchangePointer
#define InterlockedCompareExchangePointerRelease \
_InlineInterlockedCompareExchangePointer
#define InterlockedCompareExchangePointerNoFence \
_InlineInterlockedCompareExchangePointer
#pragma intrinsic(_InterlockedAnd)
#pragma intrinsic(_InterlockedOr)
#pragma intrinsic(_InterlockedXor)
#pragma intrinsic(_InterlockedIncrement)
#pragma intrinsic(_InterlockedDecrement)
#pragma intrinsic(_InterlockedExchange)
#pragma intrinsic(_InterlockedExchangeAdd)
#pragma intrinsic(_InterlockedCompareExchange)
#if !defined(_MANAGED)
#if (_MSC_VER >= 1600)
#define InterlockedExchange8 _InterlockedExchange8
#define InterlockedExchange16 _InterlockedExchange16
CHAR
InterlockedExchange8 (
_Inout_ _Interlocked_operand_ CHAR volatile *Target,
_In_ CHAR Value
);
SHORT
InterlockedExchange16 (
_Inout_ _Interlocked_operand_ SHORT volatile *Destination,
_In_ SHORT ExChange
);
#pragma intrinsic(_InterlockedExchange8)
#pragma intrinsic(_InterlockedExchange16)
#endif // _MSC_VER >= 1600
#if _MSC_FULL_VER >= 140041204
#define InterlockedExchangeAdd8 _InterlockedExchangeAdd8
#define InterlockedAnd8 _InterlockedAnd8
#define InterlockedOr8 _InterlockedOr8
#define InterlockedXor8 _InterlockedXor8
#define InterlockedAnd16 _InterlockedAnd16
#define InterlockedOr16 _InterlockedOr16
#define InterlockedXor16 _InterlockedXor16
#define InterlockedCompareExchange16 _InterlockedCompareExchange16
#define InterlockedIncrement16 _InterlockedIncrement16
#define InterlockedDecrement16 _InterlockedDecrement16
char
InterlockedExchangeAdd8 (
_Inout_ _Interlocked_operand_ char volatile * _Addend,
_In_ char _Value
);
char
InterlockedAnd8 (
_Inout_ _Interlocked_operand_ char volatile *Destination,
_In_ char Value
);
char
InterlockedOr8 (
_Inout_ _Interlocked_operand_ char volatile *Destination,
_In_ char Value
);
char
InterlockedXor8 (
_Inout_ _Interlocked_operand_ char volatile *Destination,
_In_ char Value
);
SHORT
_InterlockedAnd16 (
_Inout_ _Interlocked_operand_ SHORT volatile *Destination,
_In_ SHORT Value
);
SHORT
InterlockedXor16(
_Inout_ _Interlocked_operand_ SHORT volatile *Destination,
_In_ SHORT Value
);
SHORT
_InterlockedCompareExchange16 (
_Inout_ _Interlocked_operand_ SHORT volatile *Destination,
_In_ SHORT ExChange,
_In_ SHORT Comperand
);
SHORT
_InterlockedOr16 (
_Inout_ _Interlocked_operand_ SHORT volatile *Destination,
_In_ SHORT Value
);
SHORT
_InterlockedIncrement16 (
_Inout_ _Interlocked_operand_ SHORT volatile *Destination
);
SHORT
_InterlockedDecrement16 (
_Inout_ _Interlocked_operand_ SHORT volatile *Destination
);
#pragma intrinsic (_InterlockedExchangeAdd8)
#pragma intrinsic (_InterlockedAnd8)
#pragma intrinsic (_InterlockedOr8)
#pragma intrinsic (_InterlockedXor8)
#pragma intrinsic (_InterlockedAnd16)
#pragma intrinsic (_InterlockedOr16)
#pragma intrinsic (_InterlockedXor16)
#pragma intrinsic (_InterlockedCompareExchange16)
#pragma intrinsic (_InterlockedIncrement16)
#pragma intrinsic (_InterlockedDecrement16)
#endif /* _MSC_FULL_VER >= 140040816 */
//
// Define 64-bit operations in terms of InterlockedCompareExchange64
//
#define InterlockedCompareExchange64 _InterlockedCompareExchange64
FORCEINLINE
LONG64
_InlineInterlockedAnd64 (
_Inout_ _Interlocked_operand_ LONG64 volatile *Destination,
_In_ LONG64 Value
)
{
LONG64 Old;
do {
Old = *Destination;
} while (InterlockedCompareExchange64(Destination,
Old & Value,
Old) != Old);
return Old;
}
#define InterlockedAnd64 _InlineInterlockedAnd64
#define InterlockedAnd64Acquire _InlineInterlockedAnd64
#define InterlockedAnd64Release _InlineInterlockedAnd64
#define InterlockedAnd64NoFence _InlineInterlockedAnd64
FORCEINLINE
LONG64
_InlineInterlockedAdd64 (
_Inout_ _Interlocked_operand_ LONG64 volatile *Addend,
_In_ LONG64 Value
)
{
LONG64 Old;
do {
Old = *Addend;
} while (InterlockedCompareExchange64(Addend,
Old + Value,
Old) != Old);
return Old + Value;
}
#define InterlockedAdd64 _InlineInterlockedAdd64
#define InterlockedAddAcquire64 _InlineInterlockedAdd64
#define InterlockedAddRelease64 _InlineInterlockedAdd64
#define InterlockedAddNoFence64 _InlineInterlockedAdd64
#endif // !defined(_MANAGED)
#define InterlockedExchangeAddSizeT(a, b) InterlockedExchangeAdd((LONG *)a, b)
#define InterlockedExchangeAddSizeTAcquire(a, b) InterlockedExchangeAdd((LONG *)a, b)
#define InterlockedExchangeAddSizeTNoFence(a, b) InterlockedExchangeAdd((LONG *)a, b)
#define InterlockedIncrementSizeT(a) InterlockedIncrement((LONG *)a)
#define InterlockedIncrementSizeTNoFence(a) InterlockedIncrement((LONG *)a)
#define InterlockedDecrementSizeT(a) InterlockedDecrement((LONG *)a)
#define InterlockedDecrementSizeTNoFence(a) InterlockedDecrement((LONG *)a)
//
// Definitons below
//
LONG
_InterlockedXor (
_Inout_ _Interlocked_operand_ LONG volatile *Target,
_In_ LONG Set
);
#pragma intrinsic(_InterlockedXor)
#define InterlockedXor _InterlockedXor
#if !defined(_MANAGED)
LONGLONG
FORCEINLINE
_InlineInterlockedOr64 (
_Inout_ _Interlocked_operand_ LONGLONG volatile *Destination,
_In_ LONGLONG Value
)
{
LONGLONG Old;
do {
Old = *Destination;
} while (InterlockedCompareExchange64(Destination,
Old | Value,
Old) != Old);
return Old;
}
#define InterlockedOr64 _InlineInterlockedOr64
FORCEINLINE
LONG64
_InlineInterlockedXor64 (
_Inout_ _Interlocked_operand_ LONG64 volatile *Destination,
_In_ LONG64 Value
)
{
LONG64 Old;
do {
Old = *Destination;
} while (InterlockedCompareExchange64(Destination,
Old ^ Value,
Old) != Old);
return Old;
}
#define InterlockedXor64 _InlineInterlockedXor64
LONGLONG
FORCEINLINE
_InlineInterlockedIncrement64 (
_Inout_ _Interlocked_operand_ LONGLONG volatile *Addend
)
{
LONGLONG Old;
do {
Old = *Addend;
} while (InterlockedCompareExchange64(Addend,
Old + 1,
Old) != Old);
return Old + 1;
}
#define InterlockedIncrement64 _InlineInterlockedIncrement64
#define InterlockedIncrementAcquire64 InterlockedIncrement64
FORCEINLINE
LONGLONG
_InlineInterlockedDecrement64 (
_Inout_ _Interlocked_operand_ LONGLONG volatile *Addend
)
{
LONGLONG Old;
do {
Old = *Addend;
} while (InterlockedCompareExchange64(Addend,
Old - 1,
Old) != Old);
return Old - 1;
}
#define InterlockedDecrement64 _InlineInterlockedDecrement64
FORCEINLINE
LONGLONG
_InlineInterlockedExchange64 (
_Inout_ _Interlocked_operand_ LONGLONG volatile *Target,
_In_ LONGLONG Value
)
{
LONGLONG Old;
do {
Old = *Target;
} while (InterlockedCompareExchange64(Target,
Value,
Old) != Old);
return Old;
}
#define InterlockedExchange64 _InlineInterlockedExchange64
#define InterlockedExchangeAcquire64 InterlockedExchange64
#define InterlockedExchangeNoFence64 _InlineInterlockedExchange64
FORCEINLINE
LONGLONG
_InlineInterlockedExchangeAdd64 (
_Inout_ _Interlocked_operand_ LONGLONG volatile *Addend,
_In_ LONGLONG Value
)
{
LONGLONG Old;
do {
Old = *Addend;
} while (InterlockedCompareExchange64(Addend,
Old + Value,
Old) != Old);
return Old;
}
#define InterlockedExchangeAdd64 _InlineInterlockedExchangeAdd64
#define InterlockedExchangeAddNoFence64 _InlineInterlockedExchangeAdd64
//
// FS relative adds and increments.
//
VOID
__incfsbyte (
_In_ DWORD Offset
);
VOID
__addfsbyte (
_In_ DWORD Offset,
_In_ BYTE Value
);
VOID
__incfsword (
_In_ DWORD Offset
);
VOID
__addfsword (
_In_ DWORD Offset,
_In_ WORD Value
);
VOID
__incfsdword (
_In_ DWORD Offset
);
VOID
__addfsdword (
_In_ DWORD Offset,
_In_ DWORD Value
);
#pragma intrinsic(__incfsbyte)
#pragma intrinsic(__addfsbyte)
#pragma intrinsic(__incfsword)
#pragma intrinsic(__addfsword)
#pragma intrinsic(__incfsdword)
#pragma intrinsic(__addfsdword)
#endif // !defined(_MANAGED)
#if !defined(_M_CEE_PURE)
// end_ntoshvp
#if _MSC_VER >= 1500
//
// Define extended CPUID intrinsic.
//
#define CpuIdEx __cpuidex
VOID
__cpuidex (
int CPUInfo[4],
int Function,
int SubLeaf
);
#pragma intrinsic(__cpuidex)
#endif
// begin_ntoshvp
//
// Define FS read/write intrinsics
//
BYTE
__readfsbyte (
_In_ DWORD Offset
);
WORD
__readfsword (
_In_ DWORD Offset
);
DWORD
__readfsdword (
_In_ DWORD Offset
);
VOID
__writefsbyte (
_In_ DWORD Offset,
_In_ BYTE Data
);
VOID
__writefsword (
_In_ DWORD Offset,
_In_ WORD Data
);
VOID
__writefsdword (
_In_ DWORD Offset,
_In_ DWORD Data
);
#pragma intrinsic(__readfsbyte)
#pragma intrinsic(__readfsword)
#pragma intrinsic(__readfsdword)
#pragma intrinsic(__writefsbyte)
#pragma intrinsic(__writefsword)
#pragma intrinsic(__writefsdword)
#endif // !defined(_M_CEE_PURE)
#if !defined(_MANAGED)
VOID
_mm_pause (
VOID
);
#pragma intrinsic(_mm_pause)
#define YieldProcessor _mm_pause
#endif // !defined(_MANAGED)
#ifdef __cplusplus
}
#endif
#endif /* !defined(MIDL_PASS) || defined(_M_IX86) */
// end_ntoshvp
// begin_ntoshvp
#if !defined(MIDL_PASS) && defined(_M_IX86)
#if !defined(_M_CEE_PURE)
#pragma prefast(push)
#pragma warning(push)
#pragma prefast(disable: 6001 28113, "The barrier variable is accessed only to create a side effect.")
#pragma warning(disable: 4793)
FORCEINLINE
VOID
MemoryBarrier (
VOID
)
{
LONG Barrier;
InterlockedOr(&Barrier, 0);
return;
}
#pragma warning(pop)
#pragma prefast(pop)
#endif /* _M_CEE_PURE */
//
// Define constants for use with _mm_prefetch.
//
#define _MM_HINT_T0 1
#define _MM_HINT_T1 2
#define _MM_HINT_T2 3
#define _MM_HINT_NTA 0
VOID
_mm_prefetch (
_In_ CHAR CONST *a,
_In_ int sel
);
#pragma intrinsic(_mm_prefetch)
//
// PreFetchCacheLine level defines.
//
#define PF_TEMPORAL_LEVEL_1 _MM_HINT_T0
#define PF_TEMPORAL_LEVEL_2 _MM_HINT_T1
#define PF_TEMPORAL_LEVEL_3 _MM_HINT_T2
#define PF_NON_TEMPORAL_LEVEL_ALL _MM_HINT_NTA
#define PreFetchCacheLine(l, a) _mm_prefetch((CHAR CONST *) a, l)
#define PrefetchForWrite(p)
#define ReadForWriteAccess(p) (*(p))
#if !defined(_MANAGED)
//
// Define function to read the value of a performance counter.
//
#define ReadPMC __readpmc
DWORD64
__readpmc (
_In_ DWORD Counter
);
#pragma intrinsic(__readpmc)
//
// Define function to read the value of the time stamp counter
//
#define ReadTimeStampCounter() __rdtsc()
DWORD64
__rdtsc (
VOID
);
#pragma intrinsic(__rdtsc)
#endif // !defined(_MANAGED)
// end_ntoshvp
// end_ntddk
#if !defined(_MANAGED)
__inline PVOID GetFiberData( void ) { return *(PVOID *) (ULONG_PTR) __readfsdword (0x10);}
__inline PVOID GetCurrentFiber( void ) { return (PVOID) (ULONG_PTR) __readfsdword (0x10);}
#endif // !defined(_MANAGED)
// begin_ntddk
// begin_ntoshvp
#endif // !defined(MIDL_PASS) && defined(_M_IX86)
// end_ntoshvp
// end_ntddk
//
// The following values specify the type of failing access when the status is
// STATUS_ACCESS_VIOLATION and the first parameter in the execpetion record.
//
#define EXCEPTION_READ_FAULT 0 // Access violation was caused by a read
#define EXCEPTION_WRITE_FAULT 1 // Access violation was caused by a write
#define EXCEPTION_EXECUTE_FAULT 8 // Access violation was caused by an instruction fetch
// begin_wx86
// begin_ntddk
// begin_ntoshvp
//
// Define the size of the 80387 save area, which is in the context frame.
//
#define SIZE_OF_80387_REGISTERS 80
//
// The following flags control the contents of the CONTEXT structure.
//
#if !defined(RC_INVOKED)
#define CONTEXT_i386 0x00010000L // this assumes that i386 and
#define CONTEXT_i486 0x00010000L // i486 have identical context records
// end_wx86
#define CONTEXT_CONTROL (CONTEXT_i386 | 0x00000001L) // SS:SP, CS:IP, FLAGS, BP
#define CONTEXT_INTEGER (CONTEXT_i386 | 0x00000002L) // AX, BX, CX, DX, SI, DI
#define CONTEXT_SEGMENTS (CONTEXT_i386 | 0x00000004L) // DS, ES, FS, GS
#define CONTEXT_FLOATING_POINT (CONTEXT_i386 | 0x00000008L) // 387 state
#define CONTEXT_DEBUG_REGISTERS (CONTEXT_i386 | 0x00000010L) // DB 0-3,6,7
#define CONTEXT_EXTENDED_REGISTERS (CONTEXT_i386 | 0x00000020L) // cpu specific extensions
#define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_INTEGER |\
CONTEXT_SEGMENTS)
#define CONTEXT_ALL (CONTEXT_CONTROL | CONTEXT_INTEGER | CONTEXT_SEGMENTS | \
CONTEXT_FLOATING_POINT | CONTEXT_DEBUG_REGISTERS | \
CONTEXT_EXTENDED_REGISTERS)
#define CONTEXT_XSTATE (CONTEXT_i386 | 0x00000040L)
#define CONTEXT_EXCEPTION_ACTIVE 0x08000000L
#define CONTEXT_SERVICE_ACTIVE 0x10000000L
#define CONTEXT_EXCEPTION_REQUEST 0x40000000L
#define CONTEXT_EXCEPTION_REPORTING 0x80000000L
// begin_wx86
#endif // !defined(RC_INVOKED)
typedef struct _FLOATING_SAVE_AREA {
DWORD ControlWord;
DWORD StatusWord;
DWORD TagWord;
DWORD ErrorOffset;
DWORD ErrorSelector;
DWORD DataOffset;
DWORD DataSelector;
BYTE RegisterArea[SIZE_OF_80387_REGISTERS];
DWORD Spare0;
} FLOATING_SAVE_AREA;
typedef FLOATING_SAVE_AREA *PFLOATING_SAVE_AREA;
// end_ntddk
// begin_wdm begin_ntosp
#define MAXIMUM_SUPPORTED_EXTENSION 512
#if !defined(__midl) && !defined(MIDL_PASS)
C_ASSERT(sizeof(XSAVE_FORMAT) == MAXIMUM_SUPPORTED_EXTENSION);
#endif
// end_wdm end_ntosp
// begin_ntddk
#include "pshpack4.h"
//
// Context Frame
//
// This frame has a several purposes: 1) it is used as an argument to
// NtContinue, 2) is is used to constuct a call frame for APC delivery,
// and 3) it is used in the user level thread creation routines.
//
// The layout of the record conforms to a standard call frame.
//
typedef struct _CONTEXT {
//
// The flags values within this flag control the contents of
// a CONTEXT record.
//
// If the context record is used as an input parameter, then
// for each portion of the context record controlled by a flag
// whose value is set, it is assumed that that portion of the
// context record contains valid context. If the context record
// is being used to modify a threads context, then only that
// portion of the threads context will be modified.
//
// If the context record is used as an IN OUT parameter to capture
// the context of a thread, then only those portions of the thread's
// context corresponding to set flags will be returned.
//
// The context record is never used as an OUT only parameter.
//
DWORD ContextFlags;
//
// This section is specified/returned if CONTEXT_DEBUG_REGISTERS is
// set in ContextFlags. Note that CONTEXT_DEBUG_REGISTERS is NOT
// included in CONTEXT_FULL.
//
DWORD Dr0;
DWORD Dr1;
DWORD Dr2;
DWORD Dr3;
DWORD Dr6;
DWORD Dr7;
//
// This section is specified/returned if the
// ContextFlags word contians the flag CONTEXT_FLOATING_POINT.
//
FLOATING_SAVE_AREA FloatSave;
//
// This section is specified/returned if the
// ContextFlags word contians the flag CONTEXT_SEGMENTS.
//
DWORD SegGs;
DWORD SegFs;
DWORD SegEs;
DWORD SegDs;
//
// This section is specified/returned if the
// ContextFlags word contians the flag CONTEXT_INTEGER.
//
DWORD Edi;
DWORD Esi;
DWORD Ebx;
DWORD Edx;
DWORD Ecx;
DWORD Eax;
//
// This section is specified/returned if the
// ContextFlags word contians the flag CONTEXT_CONTROL.
//
DWORD Ebp;
DWORD Eip;
DWORD SegCs; // MUST BE SANITIZED
DWORD EFlags; // MUST BE SANITIZED
DWORD Esp;
DWORD SegSs;
//
// This section is specified/returned if the ContextFlags word
// contains the flag CONTEXT_EXTENDED_REGISTERS.
// The format and contexts are processor specific
//
BYTE ExtendedRegisters[MAXIMUM_SUPPORTED_EXTENSION];
} CONTEXT;
typedef CONTEXT *PCONTEXT;
#include "poppack.h"
// end_ntoshvp
// begin_ntminiport
#endif //_X86_
#ifndef _LDT_ENTRY_DEFINED
#define _LDT_ENTRY_DEFINED
typedef struct _LDT_ENTRY {
WORD LimitLow;
WORD BaseLow;
union {
struct {
BYTE BaseMid;
BYTE Flags1; // Declare as bytes to avoid alignment
BYTE Flags2; // Problems.
BYTE BaseHi;
} Bytes;
struct {
DWORD BaseMid : 8;
DWORD Type : 5;
DWORD Dpl : 2;
DWORD Pres : 1;
DWORD LimitHi : 4;
DWORD Sys : 1;
DWORD Reserved_0 : 1;
DWORD Default_Big : 1;
DWORD Granularity : 1;
DWORD BaseHi : 8;
} Bits;
} HighWord;
} LDT_ENTRY, *PLDT_ENTRY;
#endif
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
// begin_wdm begin_ntminiport
#if !defined(RC_INVOKED) && !defined(MIDL_PASS)
#if defined(_M_AMD64) || defined(_M_IX86) || defined(_M_CEE_PURE)
#ifdef __cplusplus
extern "C" {
#endif
FORCEINLINE
CHAR
ReadAcquire8 (
_In_ _Interlocked_operand_ CHAR const volatile *Source
)
{
CHAR Value;
Value = *Source;
return Value;
}
FORCEINLINE
CHAR
ReadNoFence8 (
_In_ _Interlocked_operand_ CHAR const volatile *Source
)
{
CHAR Value;
Value = *Source;
return Value;
}
FORCEINLINE
VOID
WriteRelease8 (
_Out_ _Interlocked_operand_ CHAR volatile *Destination,
_In_ CHAR Value
)
{
*Destination = Value;
return;
}
FORCEINLINE
VOID
WriteNoFence8 (
_Out_ _Interlocked_operand_ CHAR volatile *Destination,
_In_ CHAR Value
)
{
*Destination = Value;
return;
}
FORCEINLINE
SHORT
ReadAcquire16 (
_In_ _Interlocked_operand_ SHORT const volatile *Source
)
{
SHORT Value;
Value = *Source;
return Value;
}
FORCEINLINE
SHORT
ReadNoFence16 (
_In_ _Interlocked_operand_ SHORT const volatile *Source
)
{
SHORT Value;
Value = *Source;
return Value;
}
FORCEINLINE
VOID
WriteRelease16 (
_Out_ _Interlocked_operand_ SHORT volatile *Destination,
_In_ SHORT Value
)
{
*Destination = Value;
return;
}
FORCEINLINE
VOID
WriteNoFence16 (
_Out_ _Interlocked_operand_ SHORT volatile *Destination,
_In_ SHORT Value
)
{
*Destination = Value;
return;
}
FORCEINLINE
LONG
ReadAcquire (
_In_ _Interlocked_operand_ LONG const volatile *Source
)
{
LONG Value;
Value = *Source;
return Value;
}
FORCEINLINE
LONG
ReadNoFence (
_In_ _Interlocked_operand_ LONG const volatile *Source
)
{
LONG Value;
Value = *Source;
return Value;
}
CFORCEINLINE
VOID
WriteRelease (
_Out_ _Interlocked_operand_ LONG volatile *Destination,
_In_ LONG Value
)
{
*Destination = Value;
return;
}
FORCEINLINE
VOID
WriteNoFence (
_Out_ _Interlocked_operand_ LONG volatile *Destination,
_In_ LONG Value
)
{
*Destination = Value;
return;
}
FORCEINLINE
LONG64
ReadAcquire64 (
_In_ _Interlocked_operand_ LONG64 const volatile *Source
)
{
LONG64 Value;
Value = *Source;
return Value;
}
FORCEINLINE
LONG64
ReadNoFence64 (
_In_ _Interlocked_operand_ LONG64 const volatile *Source
)
{
LONG64 Value;
Value = *Source;
return Value;
}
CFORCEINLINE
VOID
WriteRelease64 (
_Out_ _Interlocked_operand_ LONG64 volatile *Destination,
_In_ LONG64 Value
)
{
*Destination = Value;
return;
}
FORCEINLINE
VOID
WriteNoFence64 (
_Out_ _Interlocked_operand_ LONG64 volatile *Destination,
_In_ LONG64 Value
)
{
*Destination = Value;
return;
}
#ifdef __cplusplus
}
#endif
#endif // defined(_M_AMD64) || defined(_M_IX86) || defined(_M_CEE_PURE)
//
// Define "raw" operations which have no ordering or atomicity semantics.
//
FORCEINLINE
CHAR
ReadRaw8 (
_In_ _Interlocked_operand_ CHAR const volatile *Source
)
{
CHAR Value;
Value = *(CHAR *)Source;
return Value;
}
FORCEINLINE
VOID
WriteRaw8 (
_Out_ _Interlocked_operand_ CHAR volatile *Destination,
_In_ CHAR Value
)
{
*(CHAR *)Destination = Value;
return;
}
FORCEINLINE
SHORT
ReadRaw16 (
_In_ _Interlocked_operand_ SHORT const volatile *Source
)
{
SHORT Value;
Value = *(SHORT *)Source;
return Value;
}
FORCEINLINE
VOID
WriteRaw16 (
_Out_ _Interlocked_operand_ SHORT volatile *Destination,
_In_ SHORT Value
)
{
*(SHORT *)Destination = Value;
return;
}
FORCEINLINE
LONG
ReadRaw (
_In_ _Interlocked_operand_ LONG const volatile *Source
)
{
LONG Value;
Value = *(LONG *)Source;
return Value;
}
CFORCEINLINE
VOID
WriteRaw (
_Out_ _Interlocked_operand_ LONG volatile *Destination,
_In_ LONG Value
)
{
*(LONG *)Destination = Value;
return;
}
FORCEINLINE
LONG64
ReadRaw64 (
_In_ _Interlocked_operand_ LONG64 const volatile *Source
)
{
LONG64 Value;
Value = *(LONG64 *)Source;
return Value;
}
FORCEINLINE
VOID
WriteRaw64 (
_Out_ _Interlocked_operand_ LONG64 volatile *Destination,
_In_ LONG64 Value
)
{
*(LONG64 *)Destination = Value;
return;
}
//
// Define explicit read and write operations for derived types.
//
FORCEINLINE
BYTE
ReadUCharAcquire (
_In_ _Interlocked_operand_ BYTE const volatile *Source
)
{
return (BYTE )ReadAcquire8((PCHAR)Source);
}
FORCEINLINE
BYTE
ReadUCharNoFence (
_In_ _Interlocked_operand_ BYTE const volatile *Source
)
{
return (BYTE )ReadNoFence8((PCHAR)Source);
}
FORCEINLINE
BYTE
ReadBooleanAcquire (
_In_ _Interlocked_operand_ BOOLEAN const volatile *Source
)
{
return (BOOLEAN)ReadAcquire8((PCHAR)Source);
}
FORCEINLINE
BYTE
ReadBooleanNoFence (
_In_ _Interlocked_operand_ BOOLEAN const volatile *Source
)
{
return (BOOLEAN)ReadNoFence8((PCHAR)Source);
}
FORCEINLINE
BYTE
ReadUCharRaw (
_In_ _Interlocked_operand_ BYTE const volatile *Source
)
{
return (BYTE )ReadRaw8((PCHAR)Source);
}
FORCEINLINE
VOID
WriteUCharRelease (
_Out_ _Interlocked_operand_ BYTE volatile *Destination,
_In_ BYTE Value
)
{
WriteRelease8((PCHAR)Destination, (CHAR)Value);
return;
}
FORCEINLINE
VOID
WriteUCharNoFence (
_Out_ _Interlocked_operand_ BYTE volatile *Destination,
_In_ BYTE Value
)
{
WriteNoFence8((PCHAR)Destination, (CHAR)Value);
return;
}
FORCEINLINE
VOID
WriteBooleanRelease (
_Out_ _Interlocked_operand_ BOOLEAN volatile *Destination,
_In_ BOOLEAN Value
)
{
WriteRelease8((PCHAR)Destination, (CHAR)Value);
return;
}
FORCEINLINE
VOID
WriteBooleanNoFence (
_Out_ _Interlocked_operand_ BOOLEAN volatile *Destination,
_In_ BOOLEAN Value
)
{
WriteNoFence8((PCHAR)Destination, (CHAR)Value);
return;
}
FORCEINLINE
VOID
WriteUCharRaw (
_Out_ _Interlocked_operand_ BYTE volatile *Destination,
_In_ BYTE Value
)
{
WriteRaw8((PCHAR)Destination, (CHAR)Value);
return;
}
FORCEINLINE
WORD
ReadUShortAcquire (
_In_ _Interlocked_operand_ WORD const volatile *Source
)
{
return (WORD )ReadAcquire16((PSHORT)Source);
}
FORCEINLINE
WORD
ReadUShortNoFence (
_In_ _Interlocked_operand_ WORD const volatile *Source
)
{
return (WORD )ReadNoFence16((PSHORT)Source);
}
FORCEINLINE
WORD
ReadUShortRaw (
_In_ _Interlocked_operand_ WORD const volatile *Source
)
{
return (WORD )ReadRaw16((PSHORT)Source);
}
FORCEINLINE
VOID
WriteUShortRelease (
_Out_ _Interlocked_operand_ WORD volatile *Destination,
_In_ WORD Value
)
{
WriteRelease16((PSHORT)Destination, (SHORT)Value);
return;
}
FORCEINLINE
VOID
WriteUShortNoFence (
_Out_ _Interlocked_operand_ WORD volatile *Destination,
_In_ WORD Value
)
{
WriteNoFence16((PSHORT)Destination, (SHORT)Value);
return;
}
FORCEINLINE
VOID
WriteUShortRaw (
_Out_ _Interlocked_operand_ WORD volatile *Destination,
_In_ WORD Value
)
{
WriteRaw16((PSHORT)Destination, (SHORT)Value);
return;
}
FORCEINLINE
DWORD
ReadULongAcquire (
_In_ _Interlocked_operand_ DWORD const volatile *Source
)
{
return (DWORD)ReadAcquire((PLONG)Source);
}
FORCEINLINE
DWORD
ReadULongNoFence (
_In_ _Interlocked_operand_ DWORD const volatile *Source
)
{
return (DWORD)ReadNoFence((PLONG)Source);
}
FORCEINLINE
DWORD
ReadULongRaw (
_In_ _Interlocked_operand_ DWORD const volatile *Source
)
{
return (DWORD)ReadRaw((PLONG)Source);
}
CFORCEINLINE
VOID
WriteULongRelease (
_Out_ _Interlocked_operand_ DWORD volatile *Destination,
_In_ DWORD Value
)
{
WriteRelease((PLONG)Destination, (LONG)Value);
return;
}
FORCEINLINE
VOID
WriteULongNoFence (
_Out_ _Interlocked_operand_ DWORD volatile *Destination,
_In_ DWORD Value
)
{
WriteNoFence((PLONG)Destination, (LONG)Value);
return;
}
FORCEINLINE
VOID
WriteULongRaw (
_Out_ _Interlocked_operand_ DWORD volatile *Destination,
_In_ DWORD Value
)
{
WriteRaw((PLONG)Destination, (LONG)Value);
return;
}
FORCEINLINE
DWORD64
ReadULong64Acquire (
_In_ _Interlocked_operand_ DWORD64 const volatile *Source
)
{
return (DWORD64)ReadAcquire64((PLONG64)Source);
}
FORCEINLINE
DWORD64
ReadULong64NoFence (
_In_ _Interlocked_operand_ DWORD64 const volatile *Source
)
{
return (DWORD64)ReadNoFence64((PLONG64)Source);
}
FORCEINLINE
DWORD64
ReadULong64Raw (
_In_ _Interlocked_operand_ DWORD64 const volatile *Source
)
{
return (DWORD64)ReadRaw64((PLONG64)Source);
}
CFORCEINLINE
VOID
WriteULong64Release (
_Out_ _Interlocked_operand_ DWORD64 volatile *Destination,
_In_ DWORD64 Value
)
{
WriteRelease64((PLONG64)Destination, (LONG64)Value);
return;
}
FORCEINLINE
VOID
WriteULong64NoFence (
_Out_ _Interlocked_operand_ DWORD64 volatile *Destination,
_In_ DWORD64 Value
)
{
WriteNoFence64((PLONG64)Destination, (LONG64)Value);
return;
}
FORCEINLINE
VOID
WriteULong64Raw (
_Out_ _Interlocked_operand_ DWORD64 volatile *Destination,
_In_ DWORD64 Value
)
{
WriteRaw64((PLONG64)Destination, (LONG64)Value);
return;
}
#define ReadSizeTAcquire ReadULongPtrAcquire
#define ReadSizeTNoFence ReadULongPtrNoFence
#define ReadSizeTRaw ReadULongPtrRaw
#define WriteSizeTRelease WriteULongPtrRelease
#define WriteSizeTNoFence WriteULongPtrNoFence
#define WriteSizeTRaw WriteULongPtrRaw
#if !defined(_WIN64)
FORCEINLINE
PVOID
ReadPointerAcquire (
_In_ _Interlocked_operand_ PVOID const volatile *Source
)
{
return (PVOID)ReadAcquire((PLONG)Source);
}
FORCEINLINE
PVOID
ReadPointerNoFence (
_In_ _Interlocked_operand_ PVOID const volatile *Source
)
{
return (PVOID)ReadNoFence((PLONG)Source);
}
FORCEINLINE
PVOID
ReadPointerRaw (
_In_ _Interlocked_operand_ PVOID const volatile *Source
)
{
return (PVOID)ReadRaw((PLONG)Source);
}
CFORCEINLINE
VOID
WritePointerRelease (
_Out_ _Interlocked_operand_ PVOID volatile *Destination,
_In_ PVOID Value
)
{
WriteRelease((PLONG)Destination, (LONG)Value);
return;
}
FORCEINLINE
VOID
WritePointerNoFence (
_Out_ _Interlocked_operand_ PVOID volatile *Destination,
_In_opt_ PVOID Value
)
{
WriteNoFence((PLONG)Destination, (LONG)Value);
return;
}
FORCEINLINE
VOID
WritePointerRaw (
_Out_ _Interlocked_operand_ PVOID volatile *Destination,
_In_opt_ PVOID Value
)
{
WriteRaw((PLONG)Destination, (LONG)Value);
return;
}
#define ReadLongPtrAcquire ReadAcquire
#define ReadLongPtrNoFence ReadNoFence
#define ReadLongPtrRaw ReadRaw
#define WriteLongPtrRelease WriteRelease
#define WriteLongPtrNoFence WriteNoFence
#define WriteLongPtrRaw WriteRaw
#define ReadULongPtrAcquire ReadULongAcquire
#define ReadULongPtrNoFence ReadULongNoFence
#define ReadULongPtrRaw ReadULongRaw
#define WriteULongPtrRelease WriteULongRelease
#define WriteULongPtrNoFence WriteULongNoFence
#define WriteULongPtrRaw WriteULongRaw
#else // !defined(_WIN64)
FORCEINLINE
PVOID
ReadPointerAcquire (
_In_ _Interlocked_operand_ PVOID const volatile *Source
)
{
return (PVOID)ReadAcquire64((PLONG64)Source);
}
FORCEINLINE
PVOID
ReadPointerNoFence (
_In_ _Interlocked_operand_ PVOID const volatile *Source
)
{
return (PVOID)ReadNoFence64((PLONG64)Source);
}
FORCEINLINE
PVOID
ReadPointerRaw (
_In_ _Interlocked_operand_ PVOID const volatile *Source
)
{
return (PVOID)ReadRaw64((PLONG64)Source);
}
FORCEINLINE
VOID
WritePointerRelease (
_Out_ _Interlocked_operand_ PVOID volatile *Destination,
_In_ PVOID Value
)
{
WriteRelease64((PLONG64)Destination, (LONG64)Value);
return;
}
FORCEINLINE
VOID
WritePointerNoFence (
_Out_ _Interlocked_operand_ PVOID volatile *Destination,
_In_ PVOID Value
)
{
WriteNoFence64((PLONG64)Destination, (LONG64)Value);
return;
}
FORCEINLINE
VOID
WritePointerRaw (
_Out_ _Interlocked_operand_ PVOID volatile *Destination,
_In_ PVOID Value
)
{
WriteRaw64((PLONG64)Destination, (LONG64)Value);
return;
}
#define ReadLongPtrAcquire ReadAcquire64
#define ReadLongPtrNoFence ReadNoFence64
#define ReadLongPtrRaw ReadRaw64
#define WriteLongPtrRelease WriteRelease64
#define WriteLongPtrNoFence WriteNoFence64
#define WriteLongPtrRaw WriteRaw64
#define ReadULongPtrAcquire ReadULong64Acquire
#define ReadULongPtrNoFence ReadULong64NoFence
#define ReadULongPtrRaw ReadULong64Raw
#define WriteULongPtrRelease WriteULong64Release
#define WriteULongPtrNoFence WriteULong64NoFence
#define WriteULongPtrRaw WriteULong64Raw
#endif // !defined(_WIN64)
#endif // !defined(RC_INVOKED) && !defined(MIDL_PASS)
// end_ntddk end_wdm end_ntminiport
#endif // WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
#if !defined(RC_INVOKED)
#define WOW64_CONTEXT_i386 0x00010000 // this assumes that i386 and
#define WOW64_CONTEXT_i486 0x00010000 // i486 have identical context records
#define WOW64_CONTEXT_CONTROL (WOW64_CONTEXT_i386 | 0x00000001L) // SS:SP, CS:IP, FLAGS, BP
#define WOW64_CONTEXT_INTEGER (WOW64_CONTEXT_i386 | 0x00000002L) // AX, BX, CX, DX, SI, DI
#define WOW64_CONTEXT_SEGMENTS (WOW64_CONTEXT_i386 | 0x00000004L) // DS, ES, FS, GS
#define WOW64_CONTEXT_FLOATING_POINT (WOW64_CONTEXT_i386 | 0x00000008L) // 387 state
#define WOW64_CONTEXT_DEBUG_REGISTERS (WOW64_CONTEXT_i386 | 0x00000010L) // DB 0-3,6,7
#define WOW64_CONTEXT_EXTENDED_REGISTERS (WOW64_CONTEXT_i386 | 0x00000020L) // cpu specific extensions
#define WOW64_CONTEXT_FULL (WOW64_CONTEXT_CONTROL | WOW64_CONTEXT_INTEGER | WOW64_CONTEXT_SEGMENTS)
#define WOW64_CONTEXT_ALL (WOW64_CONTEXT_CONTROL | WOW64_CONTEXT_INTEGER | WOW64_CONTEXT_SEGMENTS | \
WOW64_CONTEXT_FLOATING_POINT | WOW64_CONTEXT_DEBUG_REGISTERS | \
WOW64_CONTEXT_EXTENDED_REGISTERS)
#define WOW64_CONTEXT_XSTATE (WOW64_CONTEXT_i386 | 0x00000040L)
#define WOW64_CONTEXT_EXCEPTION_ACTIVE 0x08000000
#define WOW64_CONTEXT_SERVICE_ACTIVE 0x10000000
#define WOW64_CONTEXT_EXCEPTION_REQUEST 0x40000000
#define WOW64_CONTEXT_EXCEPTION_REPORTING 0x80000000
#endif // !defined(RC_INVOKED)
//
// Define the size of the 80387 save area, which is in the context frame.
//
#define WOW64_SIZE_OF_80387_REGISTERS 80
#define WOW64_MAXIMUM_SUPPORTED_EXTENSION 512
typedef struct _WOW64_FLOATING_SAVE_AREA {
DWORD ControlWord;
DWORD StatusWord;
DWORD TagWord;
DWORD ErrorOffset;
DWORD ErrorSelector;
DWORD DataOffset;
DWORD DataSelector;
BYTE RegisterArea[WOW64_SIZE_OF_80387_REGISTERS];
DWORD Cr0NpxState;
} WOW64_FLOATING_SAVE_AREA;
typedef WOW64_FLOATING_SAVE_AREA *PWOW64_FLOATING_SAVE_AREA;
#include "pshpack4.h"
//
// Context Frame
//
// This frame has a several purposes: 1) it is used as an argument to
// NtContinue, 2) is is used to constuct a call frame for APC delivery,
// and 3) it is used in the user level thread creation routines.
//
// The layout of the record conforms to a standard call frame.
//
typedef struct _WOW64_CONTEXT {
//
// The flags values within this flag control the contents of
// a CONTEXT record.
//
// If the context record is used as an input parameter, then
// for each portion of the context record controlled by a flag
// whose value is set, it is assumed that that portion of the
// context record contains valid context. If the context record
// is being used to modify a threads context, then only that
// portion of the threads context will be modified.
//
// If the context record is used as an IN OUT parameter to capture
// the context of a thread, then only those portions of the thread's
// context corresponding to set flags will be returned.
//
// The context record is never used as an OUT only parameter.
//
DWORD ContextFlags;
//
// This section is specified/returned if CONTEXT_DEBUG_REGISTERS is
// set in ContextFlags. Note that CONTEXT_DEBUG_REGISTERS is NOT
// included in CONTEXT_FULL.
//
DWORD Dr0;
DWORD Dr1;
DWORD Dr2;
DWORD Dr3;
DWORD Dr6;
DWORD Dr7;
//
// This section is specified/returned if the
// ContextFlags word contians the flag CONTEXT_FLOATING_POINT.
//
WOW64_FLOATING_SAVE_AREA FloatSave;
//
// This section is specified/returned if the
// ContextFlags word contians the flag CONTEXT_SEGMENTS.
//
DWORD SegGs;
DWORD SegFs;
DWORD SegEs;
DWORD SegDs;
//
// This section is specified/returned if the
// ContextFlags word contians the flag CONTEXT_INTEGER.
//
DWORD Edi;
DWORD Esi;
DWORD Ebx;
DWORD Edx;
DWORD Ecx;
DWORD Eax;
//
// This section is specified/returned if the
// ContextFlags word contians the flag CONTEXT_CONTROL.
//
DWORD Ebp;
DWORD Eip;
DWORD SegCs; // MUST BE SANITIZED
DWORD EFlags; // MUST BE SANITIZED
DWORD Esp;
DWORD SegSs;
//
// This section is specified/returned if the ContextFlags word
// contains the flag CONTEXT_EXTENDED_REGISTERS.
// The format and contexts are processor specific
//
BYTE ExtendedRegisters[WOW64_MAXIMUM_SUPPORTED_EXTENSION];
} WOW64_CONTEXT;
typedef WOW64_CONTEXT *PWOW64_CONTEXT;
#include "poppack.h"
typedef struct _WOW64_LDT_ENTRY {
WORD LimitLow;
WORD BaseLow;
union {
struct {
BYTE BaseMid;
BYTE Flags1; // Declare as bytes to avoid alignment
BYTE Flags2; // Problems.
BYTE BaseHi;
} Bytes;
struct {
DWORD BaseMid : 8;
DWORD Type : 5;
DWORD Dpl : 2;
DWORD Pres : 1;
DWORD LimitHi : 4;
DWORD Sys : 1;
DWORD Reserved_0 : 1;
DWORD Default_Big : 1;
DWORD Granularity : 1;
DWORD BaseHi : 8;
} Bits;
} HighWord;
} WOW64_LDT_ENTRY, *PWOW64_LDT_ENTRY;
typedef struct _WOW64_DESCRIPTOR_TABLE_ENTRY {
DWORD Selector;
WOW64_LDT_ENTRY Descriptor;
} WOW64_DESCRIPTOR_TABLE_ENTRY, *PWOW64_DESCRIPTOR_TABLE_ENTRY;
#define EXCEPTION_NONCONTINUABLE 0x1 // Noncontinuable exception
#define EXCEPTION_UNWINDING 0x2 // Unwind is in progress
#define EXCEPTION_EXIT_UNWIND 0x4 // Exit unwind is in progress
#define EXCEPTION_STACK_INVALID 0x8 // Stack out of limits or unaligned
#define EXCEPTION_NESTED_CALL 0x10 // Nested exception handler call
#define EXCEPTION_TARGET_UNWIND 0x20 // Target unwind in progress
#define EXCEPTION_COLLIDED_UNWIND 0x40 // Collided exception handler call
#define EXCEPTION_UNWIND (EXCEPTION_UNWINDING | EXCEPTION_EXIT_UNWIND | \
EXCEPTION_TARGET_UNWIND | EXCEPTION_COLLIDED_UNWIND)
#define IS_UNWINDING(Flag) ((Flag & EXCEPTION_UNWIND) != 0)
#define IS_DISPATCHING(Flag) ((Flag & EXCEPTION_UNWIND) == 0)
#define IS_TARGET_UNWIND(Flag) (Flag & EXCEPTION_TARGET_UNWIND)
#define EXCEPTION_MAXIMUM_PARAMETERS 15 // maximum number of exception parameters
//
// Exception record definition.
//
typedef struct _EXCEPTION_RECORD {
DWORD ExceptionCode;
DWORD ExceptionFlags;
struct _EXCEPTION_RECORD *ExceptionRecord;
PVOID ExceptionAddress;
DWORD NumberParameters;
ULONG_PTR ExceptionInformation[EXCEPTION_MAXIMUM_PARAMETERS];
} EXCEPTION_RECORD;
typedef EXCEPTION_RECORD *PEXCEPTION_RECORD;
typedef struct _EXCEPTION_RECORD32 {
DWORD ExceptionCode;
DWORD ExceptionFlags;
DWORD ExceptionRecord;
DWORD ExceptionAddress;
DWORD NumberParameters;
DWORD ExceptionInformation[EXCEPTION_MAXIMUM_PARAMETERS];
} EXCEPTION_RECORD32, *PEXCEPTION_RECORD32;
typedef struct _EXCEPTION_RECORD64 {
DWORD ExceptionCode;
DWORD ExceptionFlags;
DWORD64 ExceptionRecord;
DWORD64 ExceptionAddress;
DWORD NumberParameters;
DWORD __unusedAlignment;
DWORD64 ExceptionInformation[EXCEPTION_MAXIMUM_PARAMETERS];
} EXCEPTION_RECORD64, *PEXCEPTION_RECORD64;
//
// Typedef for pointer returned by exception_info()
//
typedef struct _EXCEPTION_POINTERS {
PEXCEPTION_RECORD ExceptionRecord;
PCONTEXT ContextRecord;
} EXCEPTION_POINTERS, *PEXCEPTION_POINTERS;
// end_ntoshvp
// end_wdm
#if defined(_IA64_)
NTSYSAPI
VOID
NTAPI
RtlUnwind2 (
_In_opt_ FRAME_POINTERS TargetFrame,
_In_opt_ PVOID TargetIp,
_In_opt_ PEXCEPTION_RECORD ExceptionRecord,
_In_ PVOID ReturnValue,
_In_ PCONTEXT ContextRecord
);
#endif
typedef PVOID PACCESS_TOKEN;
typedef PVOID PSECURITY_DESCRIPTOR;
typedef PVOID PSID;
typedef PVOID PCLAIMS_BLOB;
////////////////////////////////////////////////////////////////////////
// //
// ACCESS MASK //
// //
////////////////////////////////////////////////////////////////////////
//
// Define the access mask as a longword sized structure divided up as
// follows:
//
// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
// +---------------+---------------+-------------------------------+
// |G|G|G|G|Res'd|A| StandardRights| SpecificRights |
// |R|W|E|A| |S| | |
// +-+-------------+---------------+-------------------------------+
//
// typedef struct _ACCESS_MASK {
// WORD SpecificRights;
// BYTE StandardRights;
// BYTE AccessSystemAcl : 1;
// BYTE Reserved : 3;
// BYTE GenericAll : 1;
// BYTE GenericExecute : 1;
// BYTE GenericWrite : 1;
// BYTE GenericRead : 1;
// } ACCESS_MASK;
// typedef ACCESS_MASK *PACCESS_MASK;
//
// but to make life simple for programmer's we'll allow them to specify
// a desired access mask by simply OR'ing together mulitple single rights
// and treat an access mask as a DWORD. For example
//
// DesiredAccess = DELETE | READ_CONTROL
//
// So we'll declare ACCESS_MASK as DWORD
//
// begin_wdm
// begin_ntoshvp
typedef DWORD ACCESS_MASK;
typedef ACCESS_MASK *PACCESS_MASK;
// end_ntoshvp
// begin_access
////////////////////////////////////////////////////////////////////////
// //
// ACCESS TYPES //
// //
////////////////////////////////////////////////////////////////////////
// begin_wdm
//
// The following are masks for the predefined standard access types
//
#define DELETE (0x00010000L)
#define READ_CONTROL (0x00020000L)
#define WRITE_DAC (0x00040000L)
#define WRITE_OWNER (0x00080000L)
#define SYNCHRONIZE (0x00100000L)
#define STANDARD_RIGHTS_REQUIRED (0x000F0000L)
#define STANDARD_RIGHTS_READ (READ_CONTROL)
#define STANDARD_RIGHTS_WRITE (READ_CONTROL)
#define STANDARD_RIGHTS_EXECUTE (READ_CONTROL)
#define STANDARD_RIGHTS_ALL (0x001F0000L)
#define SPECIFIC_RIGHTS_ALL (0x0000FFFFL)
//
// AccessSystemAcl access type
//
#define ACCESS_SYSTEM_SECURITY (0x01000000L)
//
// MaximumAllowed access type
//
#define MAXIMUM_ALLOWED (0x02000000L)
//
// These are the generic rights.
//
#define GENERIC_READ (0x80000000L)
#define GENERIC_WRITE (0x40000000L)
#define GENERIC_EXECUTE (0x20000000L)
#define GENERIC_ALL (0x10000000L)
//
// Define the generic mapping array. This is used to denote the
// mapping of each generic access right to a specific access mask.
//
typedef struct _GENERIC_MAPPING {
ACCESS_MASK GenericRead;
ACCESS_MASK GenericWrite;
ACCESS_MASK GenericExecute;
ACCESS_MASK GenericAll;
} GENERIC_MAPPING;
typedef GENERIC_MAPPING *PGENERIC_MAPPING;
////////////////////////////////////////////////////////////////////////
// //
// LUID_AND_ATTRIBUTES //
// //
////////////////////////////////////////////////////////////////////////
//
//
#include <pshpack4.h>
typedef struct _LUID_AND_ATTRIBUTES {
LUID Luid;
DWORD Attributes;
} LUID_AND_ATTRIBUTES, * PLUID_AND_ATTRIBUTES;
typedef LUID_AND_ATTRIBUTES LUID_AND_ATTRIBUTES_ARRAY[ANYSIZE_ARRAY];
typedef LUID_AND_ATTRIBUTES_ARRAY *PLUID_AND_ATTRIBUTES_ARRAY;
#include <poppack.h>
////////////////////////////////////////////////////////////////////////
// //
// Security Id (SID) //
// //
////////////////////////////////////////////////////////////////////////
//
//
// Pictorially the structure of an SID is as follows:
//
// 1 1 1 1 1 1
// 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
// +---------------------------------------------------------------+
// | SubAuthorityCount |Reserved1 (SBZ)| Revision |
// +---------------------------------------------------------------+
// | IdentifierAuthority[0] |
// +---------------------------------------------------------------+
// | IdentifierAuthority[1] |
// +---------------------------------------------------------------+
// | IdentifierAuthority[2] |
// +---------------------------------------------------------------+
// | |
// +- - - - - - - - SubAuthority[] - - - - - - - - -+
// | |
// +---------------------------------------------------------------+
//
//
// begin_ntifs
#ifndef SID_IDENTIFIER_AUTHORITY_DEFINED
#define SID_IDENTIFIER_AUTHORITY_DEFINED
typedef struct _SID_IDENTIFIER_AUTHORITY {
BYTE Value[6];
} SID_IDENTIFIER_AUTHORITY, *PSID_IDENTIFIER_AUTHORITY;
#endif
#ifndef SID_DEFINED
#define SID_DEFINED
typedef struct _SID {
BYTE Revision;
BYTE SubAuthorityCount;
SID_IDENTIFIER_AUTHORITY IdentifierAuthority;
#ifdef MIDL_PASS
[size_is(SubAuthorityCount)] DWORD SubAuthority[*];
#else // MIDL_PASS
DWORD SubAuthority[ANYSIZE_ARRAY];
#endif // MIDL_PASS
} SID, *PISID;
#endif
#define SID_REVISION (1) // Current revision level
#define SID_MAX_SUB_AUTHORITIES (15)
#define SID_RECOMMENDED_SUB_AUTHORITIES (1) // Will change to around 6
// in a future release.
#ifndef MIDL_PASS
#define SECURITY_MAX_SID_SIZE \
(sizeof(SID) - sizeof(DWORD) + (SID_MAX_SUB_AUTHORITIES * sizeof(DWORD)))
#define SECURITY_SID_SIZE(SubAuthorityCount_) (sizeof(SID) - sizeof(DWORD) + \
(SubAuthorityCount_) * sizeof(DWORD))
//
// Union which can hold any valid sid.
//
typedef union _SE_SID {
SID Sid;
BYTE Buffer[SECURITY_MAX_SID_SIZE];
} SE_SID, *PSE_SID;
#endif // MIDL_PASS
typedef enum _SID_NAME_USE {
SidTypeUser = 1,
SidTypeGroup,
SidTypeDomain,
SidTypeAlias,
SidTypeWellKnownGroup,
SidTypeDeletedAccount,
SidTypeInvalid,
SidTypeUnknown,
SidTypeComputer,
SidTypeLabel,
SidTypeLogonSession
} SID_NAME_USE, *PSID_NAME_USE;
typedef struct _SID_AND_ATTRIBUTES {
#ifdef MIDL_PASS
PISID Sid;
#else // MIDL_PASS
PSID Sid;
#endif // MIDL_PASS
DWORD Attributes;
} SID_AND_ATTRIBUTES, * PSID_AND_ATTRIBUTES;
typedef SID_AND_ATTRIBUTES SID_AND_ATTRIBUTES_ARRAY[ANYSIZE_ARRAY];
typedef SID_AND_ATTRIBUTES_ARRAY *PSID_AND_ATTRIBUTES_ARRAY;
#define SID_HASH_SIZE 32
typedef ULONG_PTR SID_HASH_ENTRY, *PSID_HASH_ENTRY;
typedef struct _SID_AND_ATTRIBUTES_HASH {
DWORD SidCount;
PSID_AND_ATTRIBUTES SidAttr;
SID_HASH_ENTRY Hash[SID_HASH_SIZE];
} SID_AND_ATTRIBUTES_HASH, *PSID_AND_ATTRIBUTES_HASH;
/////////////////////////////////////////////////////////////////////////////
// //
// Universal well-known SIDs //
// //
// Null SID S-1-0-0 //
// World S-1-1-0 //
// Local S-1-2-0 //
// Creator Owner ID S-1-3-0 //
// Creator Group ID S-1-3-1 //
// Creator Owner Server ID S-1-3-2 //
// Creator Group Server ID S-1-3-3 //
// //
// (Non-unique IDs) S-1-4 //
// //
/////////////////////////////////////////////////////////////////////////////
#define SECURITY_NULL_SID_AUTHORITY {0,0,0,0,0,0}
#define SECURITY_WORLD_SID_AUTHORITY {0,0,0,0,0,1}
#define SECURITY_LOCAL_SID_AUTHORITY {0,0,0,0,0,2}
#define SECURITY_CREATOR_SID_AUTHORITY {0,0,0,0,0,3}
#define SECURITY_NON_UNIQUE_AUTHORITY {0,0,0,0,0,4}
#define SECURITY_RESOURCE_MANAGER_AUTHORITY {0,0,0,0,0,9}
#define SECURITY_NULL_RID (0x00000000L)
#define SECURITY_WORLD_RID (0x00000000L)
#define SECURITY_LOCAL_RID (0x00000000L)
#define SECURITY_LOCAL_LOGON_RID (0x00000001L)
#define SECURITY_CREATOR_OWNER_RID (0x00000000L)
#define SECURITY_CREATOR_GROUP_RID (0x00000001L)
#define SECURITY_CREATOR_OWNER_SERVER_RID (0x00000002L)
#define SECURITY_CREATOR_GROUP_SERVER_RID (0x00000003L)
#define SECURITY_CREATOR_OWNER_RIGHTS_RID (0x00000004L)
///////////////////////////////////////////////////////////////////////////////
// //
// NT well-known SIDs //
// //
// NT Authority S-1-5 //
// Dialup S-1-5-1 //
// //
// Network S-1-5-2 //
// Batch S-1-5-3 //
// Interactive S-1-5-4 //
// (Logon IDs) S-1-5-5-X-Y //
// Service S-1-5-6 //
// AnonymousLogon S-1-5-7 (aka null logon session) //
// Proxy S-1-5-8 //
// Enterprise DC (EDC) S-1-5-9 (aka domain controller account) //
// Self S-1-5-10 (self RID) //
// Authenticated User S-1-5-11 (Authenticated user somewhere) //
// Restricted Code S-1-5-12 (Running restricted code) //
// Terminal Server S-1-5-13 (Running on Terminal Server) //
// Remote Logon S-1-5-14 (Remote Interactive Logon) //
// This Organization S-1-5-15 //
// //
// IUser S-1-5-17
// Local System S-1-5-18 //
// Local Service S-1-5-19 //
// Network Service S-1-5-20 //
// //
// (NT non-unique IDs) S-1-5-0x15-... (NT Domain Sids) //
// //
// (Built-in domain) S-1-5-0x20 //
// //
// (Security Package IDs) S-1-5-0x40 //
// NTLM Authentication S-1-5-0x40-10 //
// SChannel Authentication S-1-5-0x40-14 //
// Digest Authentication S-1-5-0x40-21 //
// //
// Other Organization S-1-5-1000 (>=1000 can not be filtered) //
// //
// //
// NOTE: the relative identifier values (RIDs) determine which security //
// boundaries the SID is allowed to cross. Before adding new RIDs, //
// a determination needs to be made regarding which range they should //
// be added to in order to ensure proper "SID filtering" //
// //
///////////////////////////////////////////////////////////////////////////////
#define SECURITY_NT_AUTHORITY {0,0,0,0,0,5} // ntifs
#define SECURITY_DIALUP_RID (0x00000001L)
#define SECURITY_NETWORK_RID (0x00000002L)
#define SECURITY_BATCH_RID (0x00000003L)
#define SECURITY_INTERACTIVE_RID (0x00000004L)
#define SECURITY_LOGON_IDS_RID (0x00000005L)
#define SECURITY_LOGON_IDS_RID_COUNT (3L)
#define SECURITY_SERVICE_RID (0x00000006L)
#define SECURITY_ANONYMOUS_LOGON_RID (0x00000007L)
#define SECURITY_PROXY_RID (0x00000008L)
#define SECURITY_ENTERPRISE_CONTROLLERS_RID (0x00000009L)
#define SECURITY_SERVER_LOGON_RID SECURITY_ENTERPRISE_CONTROLLERS_RID
#define SECURITY_PRINCIPAL_SELF_RID (0x0000000AL)
#define SECURITY_AUTHENTICATED_USER_RID (0x0000000BL)
#define SECURITY_RESTRICTED_CODE_RID (0x0000000CL)
#define SECURITY_TERMINAL_SERVER_RID (0x0000000DL)
#define SECURITY_REMOTE_LOGON_RID (0x0000000EL)
#define SECURITY_THIS_ORGANIZATION_RID (0x0000000FL)
#define SECURITY_IUSER_RID (0x00000011L)
#define SECURITY_LOCAL_SYSTEM_RID (0x00000012L)
#define SECURITY_LOCAL_SERVICE_RID (0x00000013L)
#define SECURITY_NETWORK_SERVICE_RID (0x00000014L)
#define SECURITY_NT_NON_UNIQUE (0x00000015L)
#define SECURITY_NT_NON_UNIQUE_SUB_AUTH_COUNT (3L)
#define SECURITY_ENTERPRISE_READONLY_CONTROLLERS_RID (0x00000016L)
#define SECURITY_BUILTIN_DOMAIN_RID (0x00000020L)
#define SECURITY_WRITE_RESTRICTED_CODE_RID (0x00000021L)
#define SECURITY_PACKAGE_BASE_RID (0x00000040L)
#define SECURITY_PACKAGE_RID_COUNT (2L)
#define SECURITY_PACKAGE_NTLM_RID (0x0000000AL)
#define SECURITY_PACKAGE_SCHANNEL_RID (0x0000000EL)
#define SECURITY_PACKAGE_DIGEST_RID (0x00000015L)
#define SECURITY_CRED_TYPE_BASE_RID (0x00000041L)
#define SECURITY_CRED_TYPE_RID_COUNT (2L)
#define SECURITY_CRED_TYPE_THIS_ORG_CERT_RID (0x00000001L)
#define SECURITY_MIN_BASE_RID (0x00000050L)
#define SECURITY_SERVICE_ID_BASE_RID (0x00000050L)
#define SECURITY_SERVICE_ID_RID_COUNT (6L)
#define SECURITY_RESERVED_ID_BASE_RID (0x00000051L)
#define SECURITY_APPPOOL_ID_BASE_RID (0x00000052L)
#define SECURITY_APPPOOL_ID_RID_COUNT (6L)
#define SECURITY_VIRTUALSERVER_ID_BASE_RID (0x00000053L)
#define SECURITY_VIRTUALSERVER_ID_RID_COUNT (6L)
#define SECURITY_USERMODEDRIVERHOST_ID_BASE_RID (0x00000054L)
#define SECURITY_USERMODEDRIVERHOST_ID_RID_COUNT (6L)
#define SECURITY_CLOUD_INFRASTRUCTURE_SERVICES_ID_BASE_RID (0x00000055L)
#define SECURITY_CLOUD_INFRASTRUCTURE_SERVICES_ID_RID_COUNT (6L)
#define SECURITY_WMIHOST_ID_BASE_RID (0x00000056L)
#define SECURITY_WMIHOST_ID_RID_COUNT (6L)
#define SECURITY_TASK_ID_BASE_RID (0x00000057L)
#define SECURITY_NFS_ID_BASE_RID (0x00000058L)
#define SECURITY_COM_ID_BASE_RID (0x00000059L)
#define SECURITY_WINDOW_MANAGER_BASE_RID (0x0000005AL)
#define SECURITY_RDV_GFX_BASE_RID (0x0000005BL)
#define SECURITY_DASHOST_ID_BASE_RID (0x0000005CL)
#define SECURITY_DASHOST_ID_RID_COUNT (6L)
#define SECURITY_USERMANAGER_ID_BASE_RID (0x0000005DL)
#define SECURITY_USERMANAGER_ID_RID_COUNT (6L)
#define SECURITY_WINRM_ID_BASE_RID (0x0000005EL)
#define SECURITY_WINRM_ID_RID_COUNT (6L)
#define SECURITY_CCG_ID_BASE_RID (0x0000005FL)
#define SECURITY_VIRTUALACCOUNT_ID_RID_COUNT (6L)
#define SECURITY_MAX_BASE_RID (0x0000006FL)
#define SECURITY_MAX_ALWAYS_FILTERED (0x000003E7L)
#define SECURITY_MIN_NEVER_FILTERED (0x000003E8L)
#define SECURITY_OTHER_ORGANIZATION_RID (0x000003E8L)
//
//Service SID type RIDs are in the range 0x50- 0x6F. Therefore, we are giving the next available RID to Windows Mobile team.
//
#define SECURITY_WINDOWSMOBILE_ID_BASE_RID (0x00000070L)
//
// Installer Capability Group Sid related. Currently Base RID is same as LOCAL DOMAIN.
//
#define SECURITY_INSTALLER_GROUP_CAPABILITY_BASE (0x20)
#define SECURITY_INSTALLER_GROUP_CAPABILITY_RID_COUNT (9)
// Note: This is because the App Capability Rid is S-1-15-3-1024-...
// whereas the service group rid is S-1-5-32-...
// The number of RIDs from hash (8) are the same for both
#define SECURITY_INSTALLER_CAPABILITY_RID_COUNT (10)
//
//Well-known group for local accounts
//
#define SECURITY_LOCAL_ACCOUNT_RID (0x00000071L)
#define SECURITY_LOCAL_ACCOUNT_AND_ADMIN_RID (0x00000072L)
/////////////////////////////////////////////////////////////////////////////
// //
// well-known domain relative sub-authority values (RIDs)... //
// //
/////////////////////////////////////////////////////////////////////////////
#define DOMAIN_GROUP_RID_AUTHORIZATION_DATA_IS_COMPOUNDED (0x000001F0L)
#define DOMAIN_GROUP_RID_AUTHORIZATION_DATA_CONTAINS_CLAIMS (0x000001F1L)
#define DOMAIN_GROUP_RID_ENTERPRISE_READONLY_DOMAIN_CONTROLLERS (0x000001F2L)
#define FOREST_USER_RID_MAX (0x000001F3L)
// Well-known users ...
#define DOMAIN_USER_RID_ADMIN (0x000001F4L)
#define DOMAIN_USER_RID_GUEST (0x000001F5L)
#define DOMAIN_USER_RID_KRBTGT (0x000001F6L)
#define DOMAIN_USER_RID_DEFAULT_ACCOUNT (0x000001F7L)
#define DOMAIN_USER_RID_MAX (0x000003E7L)
// well-known groups ...
#define DOMAIN_GROUP_RID_ADMINS (0x00000200L)
#define DOMAIN_GROUP_RID_USERS (0x00000201L)
#define DOMAIN_GROUP_RID_GUESTS (0x00000202L)
#define DOMAIN_GROUP_RID_COMPUTERS (0x00000203L)
#define DOMAIN_GROUP_RID_CONTROLLERS (0x00000204L)
#define DOMAIN_GROUP_RID_CERT_ADMINS (0x00000205L)
#define DOMAIN_GROUP_RID_SCHEMA_ADMINS (0x00000206L)
#define DOMAIN_GROUP_RID_ENTERPRISE_ADMINS (0x00000207L)
#define DOMAIN_GROUP_RID_POLICY_ADMINS (0x00000208L)
#define DOMAIN_GROUP_RID_READONLY_CONTROLLERS (0x00000209L)
#define DOMAIN_GROUP_RID_CLONEABLE_CONTROLLERS (0x0000020AL)
#define DOMAIN_GROUP_RID_CDC_RESERVED (0x0000020CL)
#define DOMAIN_GROUP_RID_PROTECTED_USERS (0x0000020DL)
#define DOMAIN_GROUP_RID_KEY_ADMINS (0x0000020EL)
#define DOMAIN_GROUP_RID_ENTERPRISE_KEY_ADMINS (0x0000020FL)
// well-known aliases ...
#define DOMAIN_ALIAS_RID_ADMINS (0x00000220L)
#define DOMAIN_ALIAS_RID_USERS (0x00000221L)
#define DOMAIN_ALIAS_RID_GUESTS (0x00000222L)
#define DOMAIN_ALIAS_RID_POWER_USERS (0x00000223L)
#define DOMAIN_ALIAS_RID_ACCOUNT_OPS (0x00000224L)
#define DOMAIN_ALIAS_RID_SYSTEM_OPS (0x00000225L)
#define DOMAIN_ALIAS_RID_PRINT_OPS (0x00000226L)
#define DOMAIN_ALIAS_RID_BACKUP_OPS (0x00000227L)
#define DOMAIN_ALIAS_RID_REPLICATOR (0x00000228L)
#define DOMAIN_ALIAS_RID_RAS_SERVERS (0x00000229L)
#define DOMAIN_ALIAS_RID_PREW2KCOMPACCESS (0x0000022AL)
#define DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS (0x0000022BL)
#define DOMAIN_ALIAS_RID_NETWORK_CONFIGURATION_OPS (0x0000022CL)
#define DOMAIN_ALIAS_RID_INCOMING_FOREST_TRUST_BUILDERS (0x0000022DL)
#define DOMAIN_ALIAS_RID_MONITORING_USERS (0x0000022EL)
#define DOMAIN_ALIAS_RID_LOGGING_USERS (0x0000022FL)
#define DOMAIN_ALIAS_RID_AUTHORIZATIONACCESS (0x00000230L)
#define DOMAIN_ALIAS_RID_TS_LICENSE_SERVERS (0x00000231L)
#define DOMAIN_ALIAS_RID_DCOM_USERS (0x00000232L)
#define DOMAIN_ALIAS_RID_IUSERS (0x00000238L)
#define DOMAIN_ALIAS_RID_CRYPTO_OPERATORS (0x00000239L)
#define DOMAIN_ALIAS_RID_CACHEABLE_PRINCIPALS_GROUP (0x0000023BL)
#define DOMAIN_ALIAS_RID_NON_CACHEABLE_PRINCIPALS_GROUP (0x0000023CL)
#define DOMAIN_ALIAS_RID_EVENT_LOG_READERS_GROUP (0x0000023DL)
#define DOMAIN_ALIAS_RID_CERTSVC_DCOM_ACCESS_GROUP (0x0000023EL)
#define DOMAIN_ALIAS_RID_RDS_REMOTE_ACCESS_SERVERS (0x0000023FL)
#define DOMAIN_ALIAS_RID_RDS_ENDPOINT_SERVERS (0x00000240L)
#define DOMAIN_ALIAS_RID_RDS_MANAGEMENT_SERVERS (0x00000241L)
#define DOMAIN_ALIAS_RID_HYPER_V_ADMINS (0x00000242L)
#define DOMAIN_ALIAS_RID_ACCESS_CONTROL_ASSISTANCE_OPS (0x00000243L)
#define DOMAIN_ALIAS_RID_REMOTE_MANAGEMENT_USERS (0x00000244L)
#define DOMAIN_ALIAS_RID_DEFAULT_ACCOUNT (0x00000245L)
#define DOMAIN_ALIAS_RID_STORAGE_REPLICA_ADMINS (0x00000246L)
//
// Application Package Authority.
//
#define SECURITY_APP_PACKAGE_AUTHORITY {0,0,0,0,0,15}
#define SECURITY_APP_PACKAGE_BASE_RID (0x00000002L)
#define SECURITY_BUILTIN_APP_PACKAGE_RID_COUNT (2L)
#define SECURITY_APP_PACKAGE_RID_COUNT (8L)
#define SECURITY_CAPABILITY_BASE_RID (0x00000003L)
#define SECURITY_CAPABILITY_APP_RID (0x000000400)
#define SECURITY_BUILTIN_CAPABILITY_RID_COUNT (2L)
#define SECURITY_CAPABILITY_RID_COUNT (5L)
#define SECURITY_PARENT_PACKAGE_RID_COUNT (SECURITY_APP_PACKAGE_RID_COUNT)
#define SECURITY_CHILD_PACKAGE_RID_COUNT (12L)
//
// Built-in Packages.
//
#define SECURITY_BUILTIN_PACKAGE_ANY_PACKAGE (0x00000001L)
#define SECURITY_BUILTIN_PACKAGE_ANY_RESTRICTED_PACKAGE (0x00000002L)
//
// Built-in Capabilities.
//
#define SECURITY_CAPABILITY_INTERNET_CLIENT (0x00000001L)
#define SECURITY_CAPABILITY_INTERNET_CLIENT_SERVER (0x00000002L)
#define SECURITY_CAPABILITY_PRIVATE_NETWORK_CLIENT_SERVER (0x00000003L)
#define SECURITY_CAPABILITY_PICTURES_LIBRARY (0x00000004L)
#define SECURITY_CAPABILITY_VIDEOS_LIBRARY (0x00000005L)
#define SECURITY_CAPABILITY_MUSIC_LIBRARY (0x00000006L)
#define SECURITY_CAPABILITY_DOCUMENTS_LIBRARY (0x00000007L)
#define SECURITY_CAPABILITY_ENTERPRISE_AUTHENTICATION (0x00000008L)
#define SECURITY_CAPABILITY_SHARED_USER_CERTIFICATES (0x00000009L)
#define SECURITY_CAPABILITY_REMOVABLE_STORAGE (0x0000000AL)
#define SECURITY_CAPABILITY_APPOINTMENTS (0x0000000BL)
#define SECURITY_CAPABILITY_CONTACTS (0x0000000CL)
#define SECURITY_CAPABILITY_INTERNET_EXPLORER (0x00001000L)
//
// Mandatory Label Authority.
//
#define SECURITY_MANDATORY_LABEL_AUTHORITY {0,0,0,0,0,16}
#define SECURITY_MANDATORY_UNTRUSTED_RID (0x00000000L)
#define SECURITY_MANDATORY_LOW_RID (0x00001000L)
#define SECURITY_MANDATORY_MEDIUM_RID (0x00002000L)
#define SECURITY_MANDATORY_MEDIUM_PLUS_RID (SECURITY_MANDATORY_MEDIUM_RID + 0x100)
#define SECURITY_MANDATORY_HIGH_RID (0x00003000L)
#define SECURITY_MANDATORY_SYSTEM_RID (0x00004000L)
#define SECURITY_MANDATORY_PROTECTED_PROCESS_RID (0x00005000L)
//
// SECURITY_MANDATORY_MAXIMUM_USER_RID is the highest RID that
// can be set by a usermode caller.
//
#define SECURITY_MANDATORY_MAXIMUM_USER_RID SECURITY_MANDATORY_SYSTEM_RID
#define MANDATORY_LEVEL_TO_MANDATORY_RID(IL) (IL * 0x1000)
#define SECURITY_SCOPED_POLICY_ID_AUTHORITY {0,0,0,0,0,17}
//
// Authentication Authority
//
#define SECURITY_AUTHENTICATION_AUTHORITY {0,0,0,0,0,18}
#define SECURITY_AUTHENTICATION_AUTHORITY_RID_COUNT (1L)
#define SECURITY_AUTHENTICATION_AUTHORITY_ASSERTED_RID (0x00000001L)
#define SECURITY_AUTHENTICATION_SERVICE_ASSERTED_RID (0x00000002L)
#define SECURITY_AUTHENTICATION_FRESH_KEY_AUTH_RID (0x00000003L)
#define SECURITY_AUTHENTICATION_KEY_TRUST_RID (0x00000004L)
#define SECURITY_AUTHENTICATION_KEY_PROPERTY_MFA_RID (0x00000005L)
#define SECURITY_AUTHENTICATION_KEY_PROPERTY_ATTESTATION_RID (0x00000006L)
//
// Process Trust Authority
//
#define SECURITY_PROCESS_TRUST_AUTHORITY {0,0,0,0,0,19}
#define SECURITY_PROCESS_TRUST_AUTHORITY_RID_COUNT (2L)
#define SECURITY_PROCESS_PROTECTION_TYPE_FULL_RID (0x00000400L)
#define SECURITY_PROCESS_PROTECTION_TYPE_LITE_RID (0x00000200L)
#define SECURITY_PROCESS_PROTECTION_TYPE_NONE_RID (0x00000000L)
#define SECURITY_PROCESS_PROTECTION_LEVEL_WINTCB_RID (0x00002000L)
#define SECURITY_PROCESS_PROTECTION_LEVEL_WINDOWS_RID (0x00001000L)
#define SECURITY_PROCESS_PROTECTION_LEVEL_NONE_RID (0x00000000L)
//
// Trusted Installer RIDs
//
#define SECURITY_TRUSTED_INSTALLER_RID1 956008885
#define SECURITY_TRUSTED_INSTALLER_RID2 3418522649
#define SECURITY_TRUSTED_INSTALLER_RID3 1831038044
#define SECURITY_TRUSTED_INSTALLER_RID4 1853292631
#define SECURITY_TRUSTED_INSTALLER_RID5 2271478464
//
// Well known SID definitions for lookup.
//
typedef enum {
WinNullSid = 0,
WinWorldSid = 1,
WinLocalSid = 2,
WinCreatorOwnerSid = 3,
WinCreatorGroupSid = 4,
WinCreatorOwnerServerSid = 5,
WinCreatorGroupServerSid = 6,
WinNtAuthoritySid = 7,
WinDialupSid = 8,
WinNetworkSid = 9,
WinBatchSid = 10,
WinInteractiveSid = 11,
WinServiceSid = 12,
WinAnonymousSid = 13,
WinProxySid = 14,
WinEnterpriseControllersSid = 15,
WinSelfSid = 16,
WinAuthenticatedUserSid = 17,
WinRestrictedCodeSid = 18,
WinTerminalServerSid = 19,
WinRemoteLogonIdSid = 20,
WinLogonIdsSid = 21,
WinLocalSystemSid = 22,
WinLocalServiceSid = 23,
WinNetworkServiceSid = 24,
WinBuiltinDomainSid = 25,
WinBuiltinAdministratorsSid = 26,
WinBuiltinUsersSid = 27,
WinBuiltinGuestsSid = 28,
WinBuiltinPowerUsersSid = 29,
WinBuiltinAccountOperatorsSid = 30,
WinBuiltinSystemOperatorsSid = 31,
WinBuiltinPrintOperatorsSid = 32,
WinBuiltinBackupOperatorsSid = 33,
WinBuiltinReplicatorSid = 34,
WinBuiltinPreWindows2000CompatibleAccessSid = 35,
WinBuiltinRemoteDesktopUsersSid = 36,
WinBuiltinNetworkConfigurationOperatorsSid = 37,
WinAccountAdministratorSid = 38,
WinAccountGuestSid = 39,
WinAccountKrbtgtSid = 40,
WinAccountDomainAdminsSid = 41,
WinAccountDomainUsersSid = 42,
WinAccountDomainGuestsSid = 43,
WinAccountComputersSid = 44,
WinAccountControllersSid = 45,
WinAccountCertAdminsSid = 46,
WinAccountSchemaAdminsSid = 47,
WinAccountEnterpriseAdminsSid = 48,
WinAccountPolicyAdminsSid = 49,
WinAccountRasAndIasServersSid = 50,
WinNTLMAuthenticationSid = 51,
WinDigestAuthenticationSid = 52,
WinSChannelAuthenticationSid = 53,
WinThisOrganizationSid = 54,
WinOtherOrganizationSid = 55,
WinBuiltinIncomingForestTrustBuildersSid = 56,
WinBuiltinPerfMonitoringUsersSid = 57,
WinBuiltinPerfLoggingUsersSid = 58,
WinBuiltinAuthorizationAccessSid = 59,
WinBuiltinTerminalServerLicenseServersSid = 60,
WinBuiltinDCOMUsersSid = 61,
WinBuiltinIUsersSid = 62,
WinIUserSid = 63,
WinBuiltinCryptoOperatorsSid = 64,
WinUntrustedLabelSid = 65,
WinLowLabelSid = 66,
WinMediumLabelSid = 67,
WinHighLabelSid = 68,
WinSystemLabelSid = 69,
WinWriteRestrictedCodeSid = 70,
WinCreatorOwnerRightsSid = 71,
WinCacheablePrincipalsGroupSid = 72,
WinNonCacheablePrincipalsGroupSid = 73,
WinEnterpriseReadonlyControllersSid = 74,
WinAccountReadonlyControllersSid = 75,
WinBuiltinEventLogReadersGroup = 76,
WinNewEnterpriseReadonlyControllersSid = 77,
WinBuiltinCertSvcDComAccessGroup = 78,
WinMediumPlusLabelSid = 79,
WinLocalLogonSid = 80,
WinConsoleLogonSid = 81,
WinThisOrganizationCertificateSid = 82,
WinApplicationPackageAuthoritySid = 83,
WinBuiltinAnyPackageSid = 84,
WinCapabilityInternetClientSid = 85,
WinCapabilityInternetClientServerSid = 86,
WinCapabilityPrivateNetworkClientServerSid = 87,
WinCapabilityPicturesLibrarySid = 88,
WinCapabilityVideosLibrarySid = 89,
WinCapabilityMusicLibrarySid = 90,
WinCapabilityDocumentsLibrarySid = 91,
WinCapabilitySharedUserCertificatesSid = 92,
WinCapabilityEnterpriseAuthenticationSid = 93,
WinCapabilityRemovableStorageSid = 94,
WinBuiltinRDSRemoteAccessServersSid = 95,
WinBuiltinRDSEndpointServersSid = 96,
WinBuiltinRDSManagementServersSid = 97,
WinUserModeDriversSid = 98,
WinBuiltinHyperVAdminsSid = 99,
WinAccountCloneableControllersSid = 100,
WinBuiltinAccessControlAssistanceOperatorsSid = 101,
WinBuiltinRemoteManagementUsersSid = 102,
WinAuthenticationAuthorityAssertedSid = 103,
WinAuthenticationServiceAssertedSid = 104,
WinLocalAccountSid = 105,
WinLocalAccountAndAdministratorSid = 106,
WinAccountProtectedUsersSid = 107,
WinCapabilityAppointmentsSid = 108,
WinCapabilityContactsSid = 109,
WinAccountDefaultSystemManagedSid = 110,
WinBuiltinDefaultSystemManagedGroupSid = 111,
WinBuiltinStorageReplicaAdminsSid = 112,
WinAccountKeyAdminsSid = 113,
WinAccountEnterpriseKeyAdminsSid = 114,
WinAuthenticationKeyTrustSid = 115,
WinAuthenticationKeyPropertyMFASid = 116,
WinAuthenticationKeyPropertyAttestationSid = 117,
WinAuthenticationFreshKeyAuthSid = 118,
} WELL_KNOWN_SID_TYPE;
//
// Allocate the System Luid. The first 1000 LUIDs are reserved.
// Use #999 here (0x3e7 = 999)
//
#define SYSTEM_LUID { 0x3e7, 0x0 }
#define ANONYMOUS_LOGON_LUID { 0x3e6, 0x0 }
#define LOCALSERVICE_LUID { 0x3e5, 0x0 }
#define NETWORKSERVICE_LUID { 0x3e4, 0x0 }
#define IUSER_LUID { 0x3e3, 0x0 }
// end_ntifs
////////////////////////////////////////////////////////////////////////
// //
// User and Group related SID attributes //
// //
////////////////////////////////////////////////////////////////////////
//
// Group attributes
//
#define SE_GROUP_MANDATORY (0x00000001L)
#define SE_GROUP_ENABLED_BY_DEFAULT (0x00000002L)
#define SE_GROUP_ENABLED (0x00000004L)
#define SE_GROUP_OWNER (0x00000008L)
#define SE_GROUP_USE_FOR_DENY_ONLY (0x00000010L)
#define SE_GROUP_INTEGRITY (0x00000020L)
#define SE_GROUP_INTEGRITY_ENABLED (0x00000040L)
#define SE_GROUP_LOGON_ID (0xC0000000L)
#define SE_GROUP_RESOURCE (0x20000000L)
#define SE_GROUP_VALID_ATTRIBUTES (SE_GROUP_MANDATORY | \
SE_GROUP_ENABLED_BY_DEFAULT | \
SE_GROUP_ENABLED | \
SE_GROUP_OWNER | \
SE_GROUP_USE_FOR_DENY_ONLY | \
SE_GROUP_LOGON_ID | \
SE_GROUP_RESOURCE | \
SE_GROUP_INTEGRITY | \
SE_GROUP_INTEGRITY_ENABLED)
//
// User attributes
//
// (None yet defined.)
////////////////////////////////////////////////////////////////////////
// //
// ACL and ACE //
// //
////////////////////////////////////////////////////////////////////////
//
// Define an ACL and the ACE format. The structure of an ACL header
// followed by one or more ACEs. Pictorally the structure of an ACL header
// is as follows:
//
// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
// +-------------------------------+---------------+---------------+
// | AclSize | Sbz1 | AclRevision |
// +-------------------------------+---------------+---------------+
// | Sbz2 | AceCount |
// +-------------------------------+-------------------------------+
//
// The current AclRevision is defined to be ACL_REVISION.
//
// AclSize is the size, in bytes, allocated for the ACL. This includes
// the ACL header, ACES, and remaining free space in the buffer.
//
// AceCount is the number of ACES in the ACL.
//
// begin_wdm
// This is the *current* ACL revision
#define ACL_REVISION (2)
#define ACL_REVISION_DS (4)
// This is the history of ACL revisions. Add a new one whenever
// ACL_REVISION is updated
#define ACL_REVISION1 (1)
#define MIN_ACL_REVISION ACL_REVISION2
#define ACL_REVISION2 (2)
#define ACL_REVISION3 (3)
#define ACL_REVISION4 (4)
#define MAX_ACL_REVISION ACL_REVISION4
typedef struct _ACL {
BYTE AclRevision;
BYTE Sbz1;
WORD AclSize;
WORD AceCount;
WORD Sbz2;
} ACL;
typedef ACL *PACL;
// end_wdm
// begin_ntifs
//
// The structure of an ACE is a common ace header followed by ace type
// specific data. Pictorally the structure of the common ace header is
// as follows:
//
// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
// +---------------+-------+-------+---------------+---------------+
// | AceSize | AceFlags | AceType |
// +---------------+-------+-------+---------------+---------------+
//
// AceType denotes the type of the ace, there are some predefined ace
// types
//
// AceSize is the size, in bytes, of ace.
//
// AceFlags are the Ace flags for audit and inheritance, defined shortly.
typedef struct _ACE_HEADER {
BYTE AceType;
BYTE AceFlags;
WORD AceSize;
} ACE_HEADER;
typedef ACE_HEADER *PACE_HEADER;
//
// The following are the predefined ace types that go into the AceType
// field of an Ace header.
//
#define ACCESS_MIN_MS_ACE_TYPE (0x0)
#define ACCESS_ALLOWED_ACE_TYPE (0x0)
#define ACCESS_DENIED_ACE_TYPE (0x1)
#define SYSTEM_AUDIT_ACE_TYPE (0x2)
#define SYSTEM_ALARM_ACE_TYPE (0x3)
#define ACCESS_MAX_MS_V2_ACE_TYPE (0x3)
#define ACCESS_ALLOWED_COMPOUND_ACE_TYPE (0x4)
#define ACCESS_MAX_MS_V3_ACE_TYPE (0x4)
#define ACCESS_MIN_MS_OBJECT_ACE_TYPE (0x5)
#define ACCESS_ALLOWED_OBJECT_ACE_TYPE (0x5)
#define ACCESS_DENIED_OBJECT_ACE_TYPE (0x6)
#define SYSTEM_AUDIT_OBJECT_ACE_TYPE (0x7)
#define SYSTEM_ALARM_OBJECT_ACE_TYPE (0x8)
#define ACCESS_MAX_MS_OBJECT_ACE_TYPE (0x8)
#define ACCESS_MAX_MS_V4_ACE_TYPE (0x8)
#define ACCESS_MAX_MS_ACE_TYPE (0x8)
#define ACCESS_ALLOWED_CALLBACK_ACE_TYPE (0x9)
#define ACCESS_DENIED_CALLBACK_ACE_TYPE (0xA)
#define ACCESS_ALLOWED_CALLBACK_OBJECT_ACE_TYPE (0xB)
#define ACCESS_DENIED_CALLBACK_OBJECT_ACE_TYPE (0xC)
#define SYSTEM_AUDIT_CALLBACK_ACE_TYPE (0xD)
#define SYSTEM_ALARM_CALLBACK_ACE_TYPE (0xE)
#define SYSTEM_AUDIT_CALLBACK_OBJECT_ACE_TYPE (0xF)
#define SYSTEM_ALARM_CALLBACK_OBJECT_ACE_TYPE (0x10)
#define SYSTEM_MANDATORY_LABEL_ACE_TYPE (0x11)
#define SYSTEM_RESOURCE_ATTRIBUTE_ACE_TYPE (0x12)
#define SYSTEM_SCOPED_POLICY_ID_ACE_TYPE (0x13)
#define SYSTEM_PROCESS_TRUST_LABEL_ACE_TYPE (0x14)
#define ACCESS_MAX_MS_V5_ACE_TYPE (0x14)
//
// The following are the inherit flags that go into the AceFlags field
// of an Ace header.
//
#define OBJECT_INHERIT_ACE (0x1)
#define CONTAINER_INHERIT_ACE (0x2)
#define NO_PROPAGATE_INHERIT_ACE (0x4)
#define INHERIT_ONLY_ACE (0x8)
#define INHERITED_ACE (0x10)
#define VALID_INHERIT_FLAGS (0x1F)
// The following are the currently defined ACE flags that go into the
// AceFlags field of an ACE header. Each ACE type has its own set of
// AceFlags.
//
// SUCCESSFUL_ACCESS_ACE_FLAG - used only with system audit and alarm ACE
// types to indicate that a message is generated for successful accesses.
//
// FAILED_ACCESS_ACE_FLAG - used only with system audit and alarm ACE types
// to indicate that a message is generated for failed accesses.
//
//
// SYSTEM_AUDIT and SYSTEM_ALARM AceFlags
//
// These control the signaling of audit and alarms for success or failure.
//
#define SUCCESSFUL_ACCESS_ACE_FLAG (0x40)
#define FAILED_ACCESS_ACE_FLAG (0x80)
//
// We'll define the structure of the predefined ACE types. Pictorally
// the structure of the predefined ACE's is as follows:
//
// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
// +---------------+-------+-------+---------------+---------------+
// | AceFlags | Resd |Inherit| AceSize | AceType |
// +---------------+-------+-------+---------------+---------------+
// | Mask |
// +---------------------------------------------------------------+
// | |
// + +
// | |
// + Sid +
// | |
// + +
// | |
// +---------------------------------------------------------------+
//
// Mask is the access mask associated with the ACE. This is either the
// access allowed, access denied, audit, or alarm mask.
//
// Sid is the Sid associated with the ACE.
//
// The following are the four predefined ACE types.
// Examine the AceType field in the Header to determine
// which structure is appropriate to use for casting.
typedef struct _ACCESS_ALLOWED_ACE {
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD SidStart;
} ACCESS_ALLOWED_ACE;
typedef ACCESS_ALLOWED_ACE *PACCESS_ALLOWED_ACE;
typedef struct _ACCESS_DENIED_ACE {
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD SidStart;
} ACCESS_DENIED_ACE;
typedef ACCESS_DENIED_ACE *PACCESS_DENIED_ACE;
typedef struct _SYSTEM_AUDIT_ACE {
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD SidStart;
} SYSTEM_AUDIT_ACE;
typedef SYSTEM_AUDIT_ACE *PSYSTEM_AUDIT_ACE;
typedef struct _SYSTEM_ALARM_ACE {
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD SidStart;
} SYSTEM_ALARM_ACE;
typedef SYSTEM_ALARM_ACE *PSYSTEM_ALARM_ACE;
typedef struct _SYSTEM_RESOURCE_ATTRIBUTE_ACE {
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD SidStart;
// Sid followed by CLAIM_SECURITY_ATTRIBUTE_RELATIVE_V1 structure
} SYSTEM_RESOURCE_ATTRIBUTE_ACE, *PSYSTEM_RESOURCE_ATTRIBUTE_ACE;
typedef struct _SYSTEM_SCOPED_POLICY_ID_ACE {
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD SidStart;
} SYSTEM_SCOPED_POLICY_ID_ACE, *PSYSTEM_SCOPED_POLICY_ID_ACE;
typedef struct _SYSTEM_MANDATORY_LABEL_ACE {
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD SidStart;
} SYSTEM_MANDATORY_LABEL_ACE, *PSYSTEM_MANDATORY_LABEL_ACE;
typedef struct _SYSTEM_PROCESS_TRUST_LABEL_ACE {
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD SidStart;
} SYSTEM_PROCESS_TRUST_LABEL_ACE, *PSYSTEM_PROCESS_TRUST_LABEL_ACE;
#define SYSTEM_MANDATORY_LABEL_NO_WRITE_UP 0x1
#define SYSTEM_MANDATORY_LABEL_NO_READ_UP 0x2
#define SYSTEM_MANDATORY_LABEL_NO_EXECUTE_UP 0x4
#define SYSTEM_MANDATORY_LABEL_VALID_MASK (SYSTEM_MANDATORY_LABEL_NO_WRITE_UP | \
SYSTEM_MANDATORY_LABEL_NO_READ_UP | \
SYSTEM_MANDATORY_LABEL_NO_EXECUTE_UP)
// Placeholder value that allows all ranges
#define SYSTEM_PROCESS_TRUST_LABEL_VALID_MASK 0x00ffffff
#define SYSTEM_PROCESS_TRUST_NOCONSTRAINT_MASK 0xffffffff
// end_ntifs
typedef struct _ACCESS_ALLOWED_OBJECT_ACE {
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD Flags;
GUID ObjectType;
GUID InheritedObjectType;
DWORD SidStart;
} ACCESS_ALLOWED_OBJECT_ACE, *PACCESS_ALLOWED_OBJECT_ACE;
typedef struct _ACCESS_DENIED_OBJECT_ACE {
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD Flags;
GUID ObjectType;
GUID InheritedObjectType;
DWORD SidStart;
} ACCESS_DENIED_OBJECT_ACE, *PACCESS_DENIED_OBJECT_ACE;
typedef struct _SYSTEM_AUDIT_OBJECT_ACE {
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD Flags;
GUID ObjectType;
GUID InheritedObjectType;
DWORD SidStart;
} SYSTEM_AUDIT_OBJECT_ACE, *PSYSTEM_AUDIT_OBJECT_ACE;
typedef struct _SYSTEM_ALARM_OBJECT_ACE {
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD Flags;
GUID ObjectType;
GUID InheritedObjectType;
DWORD SidStart;
} SYSTEM_ALARM_OBJECT_ACE, *PSYSTEM_ALARM_OBJECT_ACE;
//
// Callback ace support in post Win2000.
// Resource managers can put their own data after Sidstart + Length of the sid
//
typedef struct _ACCESS_ALLOWED_CALLBACK_ACE {
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD SidStart;
// Opaque resource manager specific data
} ACCESS_ALLOWED_CALLBACK_ACE, *PACCESS_ALLOWED_CALLBACK_ACE;
typedef struct _ACCESS_DENIED_CALLBACK_ACE {
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD SidStart;
// Opaque resource manager specific data
} ACCESS_DENIED_CALLBACK_ACE, *PACCESS_DENIED_CALLBACK_ACE;
typedef struct _SYSTEM_AUDIT_CALLBACK_ACE {
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD SidStart;
// Opaque resource manager specific data
} SYSTEM_AUDIT_CALLBACK_ACE, *PSYSTEM_AUDIT_CALLBACK_ACE;
typedef struct _SYSTEM_ALARM_CALLBACK_ACE {
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD SidStart;
// Opaque resource manager specific data
} SYSTEM_ALARM_CALLBACK_ACE, *PSYSTEM_ALARM_CALLBACK_ACE;
typedef struct _ACCESS_ALLOWED_CALLBACK_OBJECT_ACE {
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD Flags;
GUID ObjectType;
GUID InheritedObjectType;
DWORD SidStart;
// Opaque resource manager specific data
} ACCESS_ALLOWED_CALLBACK_OBJECT_ACE, *PACCESS_ALLOWED_CALLBACK_OBJECT_ACE;
typedef struct _ACCESS_DENIED_CALLBACK_OBJECT_ACE {
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD Flags;
GUID ObjectType;
GUID InheritedObjectType;
DWORD SidStart;
// Opaque resource manager specific data
} ACCESS_DENIED_CALLBACK_OBJECT_ACE, *PACCESS_DENIED_CALLBACK_OBJECT_ACE;
typedef struct _SYSTEM_AUDIT_CALLBACK_OBJECT_ACE {
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD Flags;
GUID ObjectType;
GUID InheritedObjectType;
DWORD SidStart;
// Opaque resource manager specific data
} SYSTEM_AUDIT_CALLBACK_OBJECT_ACE, *PSYSTEM_AUDIT_CALLBACK_OBJECT_ACE;
typedef struct _SYSTEM_ALARM_CALLBACK_OBJECT_ACE {
ACE_HEADER Header;
ACCESS_MASK Mask;
DWORD Flags;
GUID ObjectType;
GUID InheritedObjectType;
DWORD SidStart;
// Opaque resource manager specific data
} SYSTEM_ALARM_CALLBACK_OBJECT_ACE, *PSYSTEM_ALARM_CALLBACK_OBJECT_ACE;
//
// Currently define Flags for "OBJECT" ACE types.
//
#define ACE_OBJECT_TYPE_PRESENT 0x1
#define ACE_INHERITED_OBJECT_TYPE_PRESENT 0x2
//
// The following declarations are used for setting and querying information
// about and ACL. First are the various information classes available to
// the user.
//
typedef enum _ACL_INFORMATION_CLASS {
AclRevisionInformation = 1,
AclSizeInformation
} ACL_INFORMATION_CLASS;
//
// This record is returned/sent if the user is requesting/setting the
// AclRevisionInformation
//
typedef struct _ACL_REVISION_INFORMATION {
DWORD AclRevision;
} ACL_REVISION_INFORMATION;
typedef ACL_REVISION_INFORMATION *PACL_REVISION_INFORMATION;
//
// This record is returned if the user is requesting AclSizeInformation
//
typedef struct _ACL_SIZE_INFORMATION {
DWORD AceCount;
DWORD AclBytesInUse;
DWORD AclBytesFree;
} ACL_SIZE_INFORMATION;
typedef ACL_SIZE_INFORMATION *PACL_SIZE_INFORMATION;
////////////////////////////////////////////////////////////////////////
// //
// SECURITY_DESCRIPTOR //
// //
////////////////////////////////////////////////////////////////////////
//
// Define the Security Descriptor and related data types.
// This is an opaque data structure.
//
// begin_wdm
//
// Current security descriptor revision value
//
#define SECURITY_DESCRIPTOR_REVISION (1)
#define SECURITY_DESCRIPTOR_REVISION1 (1)
// end_wdm
// begin_ntifs
#define SECURITY_DESCRIPTOR_MIN_LENGTH (sizeof(SECURITY_DESCRIPTOR))
typedef WORD SECURITY_DESCRIPTOR_CONTROL, *PSECURITY_DESCRIPTOR_CONTROL;
#define SE_OWNER_DEFAULTED (0x0001)
#define SE_GROUP_DEFAULTED (0x0002)
#define SE_DACL_PRESENT (0x0004)
#define SE_DACL_DEFAULTED (0x0008)
#define SE_SACL_PRESENT (0x0010)
#define SE_SACL_DEFAULTED (0x0020)
#define SE_DACL_AUTO_INHERIT_REQ (0x0100)
#define SE_SACL_AUTO_INHERIT_REQ (0x0200)
#define SE_DACL_AUTO_INHERITED (0x0400)
#define SE_SACL_AUTO_INHERITED (0x0800)
#define SE_DACL_PROTECTED (0x1000)
#define SE_SACL_PROTECTED (0x2000)
#define SE_RM_CONTROL_VALID (0x4000)
#define SE_SELF_RELATIVE (0x8000)
//
// Where:
//
// SE_OWNER_DEFAULTED - This boolean flag, when set, indicates that the
// SID pointed to by the Owner field was provided by a
// defaulting mechanism rather than explicitly provided by the
// original provider of the security descriptor. This may
// affect the treatment of the SID with respect to inheritence
// of an owner.
//
// SE_GROUP_DEFAULTED - This boolean flag, when set, indicates that the
// SID in the Group field was provided by a defaulting mechanism
// rather than explicitly provided by the original provider of
// the security descriptor. This may affect the treatment of
// the SID with respect to inheritence of a primary group.
//
// SE_DACL_PRESENT - This boolean flag, when set, indicates that the
// security descriptor contains a discretionary ACL. If this
// flag is set and the Dacl field of the SECURITY_DESCRIPTOR is
// null, then a null ACL is explicitly being specified.
//
// SE_DACL_DEFAULTED - This boolean flag, when set, indicates that the
// ACL pointed to by the Dacl field was provided by a defaulting
// mechanism rather than explicitly provided by the original
// provider of the security descriptor. This may affect the
// treatment of the ACL with respect to inheritence of an ACL.
// This flag is ignored if the DaclPresent flag is not set.
//
// SE_SACL_PRESENT - This boolean flag, when set, indicates that the
// security descriptor contains a system ACL pointed to by the
// Sacl field. If this flag is set and the Sacl field of the
// SECURITY_DESCRIPTOR is null, then an empty (but present)
// ACL is being specified.
//
// SE_SACL_DEFAULTED - This boolean flag, when set, indicates that the
// ACL pointed to by the Sacl field was provided by a defaulting
// mechanism rather than explicitly provided by the original
// provider of the security descriptor. This may affect the
// treatment of the ACL with respect to inheritence of an ACL.
// This flag is ignored if the SaclPresent flag is not set.
//
// SE_SELF_RELATIVE - This boolean flag, when set, indicates that the
// security descriptor is in self-relative form. In this form,
// all fields of the security descriptor are contiguous in memory
// and all pointer fields are expressed as offsets from the
// beginning of the security descriptor. This form is useful
// for treating security descriptors as opaque data structures
// for transmission in communication protocol or for storage on
// secondary media.
//
//
//
// Pictorially the structure of a security descriptor is as follows:
//
// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
// +---------------------------------------------------------------+
// | Control |Reserved1 (SBZ)| Revision |
// +---------------------------------------------------------------+
// | Owner |
// +---------------------------------------------------------------+
// | Group |
// +---------------------------------------------------------------+
// | Sacl |
// +---------------------------------------------------------------+
// | Dacl |
// +---------------------------------------------------------------+
//
// In general, this data structure should be treated opaquely to ensure future
// compatibility.
//
//
typedef struct _SECURITY_DESCRIPTOR_RELATIVE {
BYTE Revision;
BYTE Sbz1;
SECURITY_DESCRIPTOR_CONTROL Control;
DWORD Owner;
DWORD Group;
DWORD Sacl;
DWORD Dacl;
} SECURITY_DESCRIPTOR_RELATIVE, *PISECURITY_DESCRIPTOR_RELATIVE;
typedef struct _SECURITY_DESCRIPTOR {
BYTE Revision;
BYTE Sbz1;
SECURITY_DESCRIPTOR_CONTROL Control;
PSID Owner;
PSID Group;
PACL Sacl;
PACL Dacl;
} SECURITY_DESCRIPTOR, *PISECURITY_DESCRIPTOR;
typedef struct _SECURITY_OBJECT_AI_PARAMS {
DWORD Size; //Set to sizeof(SECURITY_OBJECT_AI_PARAMS)
DWORD ConstraintMask;
} SECURITY_OBJECT_AI_PARAMS, *PSECURITY_OBJECT_AI_PARAMS;
// end_ntifs
// Where:
//
// Revision - Contains the revision level of the security
// descriptor. This allows this structure to be passed between
// systems or stored on disk even though it is expected to
// change in the future.
//
// Control - A set of flags which qualify the meaning of the
// security descriptor or individual fields of the security
// descriptor.
//
// Owner - is a pointer to an SID representing an object's owner.
// If this field is null, then no owner SID is present in the
// security descriptor. If the security descriptor is in
// self-relative form, then this field contains an offset to
// the SID, rather than a pointer.
//
// Group - is a pointer to an SID representing an object's primary
// group. If this field is null, then no primary group SID is
// present in the security descriptor. If the security descriptor
// is in self-relative form, then this field contains an offset to
// the SID, rather than a pointer.
//
// Sacl - is a pointer to a system ACL. This field value is only
// valid if the DaclPresent control flag is set. If the
// SaclPresent flag is set and this field is null, then a null
// ACL is specified. If the security descriptor is in
// self-relative form, then this field contains an offset to
// the ACL, rather than a pointer.
//
// Dacl - is a pointer to a discretionary ACL. This field value is
// only valid if the DaclPresent control flag is set. If the
// DaclPresent flag is set and this field is null, then a null
// ACL (unconditionally granting access) is specified. If the
// security descriptor is in self-relative form, then this field
// contains an offset to the ACL, rather than a pointer.
//
////////////////////////////////////////////////////////////////////////
// //
// Object Type list for AccessCheckByType //
// //
////////////////////////////////////////////////////////////////////////
typedef struct _OBJECT_TYPE_LIST {
WORD Level;
WORD Sbz;
GUID *ObjectType;
} OBJECT_TYPE_LIST, *POBJECT_TYPE_LIST;
//
// DS values for Level
//
#define ACCESS_OBJECT_GUID 0
#define ACCESS_PROPERTY_SET_GUID 1
#define ACCESS_PROPERTY_GUID 2
#define ACCESS_MAX_LEVEL 4
//
// Parameters to NtAccessCheckByTypeAndAditAlarm
//
typedef enum _AUDIT_EVENT_TYPE {
AuditEventObjectAccess,
AuditEventDirectoryServiceAccess
} AUDIT_EVENT_TYPE, *PAUDIT_EVENT_TYPE;
#define AUDIT_ALLOW_NO_PRIVILEGE 0x1
//
// DS values for Source and ObjectTypeName
//
#define ACCESS_DS_SOURCE_A "DS"
#define ACCESS_DS_SOURCE_W L"DS"
#define ACCESS_DS_OBJECT_TYPE_NAME_A "Directory Service Object"
#define ACCESS_DS_OBJECT_TYPE_NAME_W L"Directory Service Object"
////////////////////////////////////////////////////////////////////////
// //
// Privilege Related Data Structures //
// //
////////////////////////////////////////////////////////////////////////
// end_ntifs
// begin_wdm
//
// Privilege attributes
//
#define SE_PRIVILEGE_ENABLED_BY_DEFAULT (0x00000001L)
#define SE_PRIVILEGE_ENABLED (0x00000002L)
#define SE_PRIVILEGE_REMOVED (0X00000004L)
#define SE_PRIVILEGE_USED_FOR_ACCESS (0x80000000L)
#define SE_PRIVILEGE_VALID_ATTRIBUTES (SE_PRIVILEGE_ENABLED_BY_DEFAULT | \
SE_PRIVILEGE_ENABLED | \
SE_PRIVILEGE_REMOVED | \
SE_PRIVILEGE_USED_FOR_ACCESS)
//
// Privilege Set Control flags
//
#define PRIVILEGE_SET_ALL_NECESSARY (1)
//
// Privilege Set - This is defined for a privilege set of one.
// If more than one privilege is needed, then this structure
// will need to be allocated with more space.
//
// Note: don't change this structure without fixing the INITIAL_PRIVILEGE_SET
// structure (defined in se.h)
//
typedef struct _PRIVILEGE_SET {
DWORD PrivilegeCount;
DWORD Control;
LUID_AND_ATTRIBUTES Privilege[ANYSIZE_ARRAY];
} PRIVILEGE_SET, * PPRIVILEGE_SET;
//
// Values for different access granted\denied reasons:
// AccessReasonAceN = AccessReasonAce + N.
// AccessReasonPrivilegeN = AccessReasonPrivilege + N.
//
#define ACCESS_REASON_TYPE_MASK 0x00ff0000
#define ACCESS_REASON_DATA_MASK 0x0000ffff
#define ACCESS_REASON_STAGING_MASK 0x80000000
#define ACCESS_REASON_EXDATA_MASK 0x7f000000
typedef enum _ACCESS_REASON_TYPE{
AccessReasonNone = 0x00000000, // Indicate no reason for the bit. The bit may not be checked, or just no known reason.
//
// The lowest 2 bytes store the index of the ACE that grant/deny this bit.
// If the corresponding access mask is zero, then it is deny ACE; otherwise,
// it is allow ACE.
//
AccessReasonAllowedAce = 0x00010000, // Granted a permission.
AccessReasonDeniedAce = 0x00020000, // Denied a permission.
AccessReasonAllowedParentAce = 0x00030000, // Granted a permission from parent ACE
AccessReasonDeniedParentAce = 0x00040000, // Denied a permission from parent ACE
AccessReasonNotGrantedByCape = 0x00050000, // A CAPE didn't grant the permission
AccessReasonNotGrantedByParentCape = 0x00060000, // A CAPE from the parent's SD didn't grant the permission
AccessReasonNotGrantedToAppContainer = 0x00070000, // This is an AppContainer and no ACE granted the permission.
AccessReasonMissingPrivilege = 0x00100000,
AccessReasonFromPrivilege = 0x00200000,
AccessReasonIntegrityLevel = 0x00300000,
AccessReasonOwnership = 0x00400000,
AccessReasonNullDacl = 0x00500000,
AccessReasonEmptyDacl = 0x00600000,
AccessReasonNoSD = 0x00700000,
AccessReasonNoGrant = 0x00800000, // this access bit is not granted by any ACE.
AccessReasonTrustLabel = 0x00900000 // The trust label ACE did not grant this access.
}
ACCESS_REASON_TYPE;
//
// Structure to hold access denied\granted reason for every bit of ACCESS_MASK.
// There are 32-bits in ACCESS_MASK and only 27-bits are actually valid on
// return from AccessCheck because MAXIMUM_ALLOWED, GENERIC_READ,
// GENERIC_WRITE, GENERIC_EXECUTE, and GENERIC_ALL are never returned.
//
// The content in Data fields depends on the Access Reason, for example,
// if the reason is AccessReasonAce, the Data will be the ACE ID.
// If there are more than one reason (more than one bit is set), the array size
// of the Data is equal to the number of bits set (or number of reasons).
// The Data could be null for a particular reason.
//
typedef DWORD ACCESS_REASON;
typedef struct _ACCESS_REASONS{
ACCESS_REASON Data[32];
} ACCESS_REASONS, *PACCESS_REASONS;
/*
The following data structures are defined to consolidate various falvors of
access check functions. In particular for Windows 7, the new access check
function will enable security attribute check, plus returning the reason
for a access check result.
The new access check function based on these data structures will
form the foundation to reimplement other flavors of access check
functions.
*/
//
// Structure to hold pointer to security descriptor and its unique id, which
// can be used for caching access check results.
// (NOTE NOTE) The cache key can be constructed by SecurityDescriptorId, Token and
// PrincipalSelfSid. Watch how GenericMapping affects the cache results.
//
#define SE_SECURITY_DESCRIPTOR_FLAG_NO_OWNER_ACE 0x00000001
#define SE_SECURITY_DESCRIPTOR_FLAG_NO_LABEL_ACE 0x00000002
#define SE_SECURITY_DESCRIPTOR_VALID_FLAGS 0x00000003
typedef struct _SE_SECURITY_DESCRIPTOR
{
DWORD Size;
DWORD Flags;
PSECURITY_DESCRIPTOR SecurityDescriptor;
} SE_SECURITY_DESCRIPTOR, *PSE_SECURITY_DESCRIPTOR;
typedef struct _SE_ACCESS_REQUEST
{
DWORD Size;
PSE_SECURITY_DESCRIPTOR SeSecurityDescriptor;
ACCESS_MASK DesiredAccess;
ACCESS_MASK PreviouslyGrantedAccess;
PSID PrincipalSelfSid; // Need to watch how this field affects the cache.
PGENERIC_MAPPING GenericMapping;
DWORD ObjectTypeListCount;
POBJECT_TYPE_LIST ObjectTypeList;
} SE_ACCESS_REQUEST, *PSE_ACCESS_REQUEST;
typedef struct _SE_ACCESS_REPLY
{
DWORD Size;
DWORD ResultListCount; // Indicate the array size of GrantedAccess and AccessStatus, it only can be either 1 or ObjectTypeListCount.
PACCESS_MASK GrantedAccess;
PDWORD AccessStatus;
PACCESS_REASONS AccessReason;
PPRIVILEGE_SET* Privileges;
} SE_ACCESS_REPLY, *PSE_ACCESS_REPLY;
////////////////////////////////////////////////////////////////////////
// //
// NT Defined Privileges //
// //
////////////////////////////////////////////////////////////////////////
#define SE_CREATE_TOKEN_NAME TEXT("SeCreateTokenPrivilege")
#define SE_ASSIGNPRIMARYTOKEN_NAME TEXT("SeAssignPrimaryTokenPrivilege")
#define SE_LOCK_MEMORY_NAME TEXT("SeLockMemoryPrivilege")
#define SE_INCREASE_QUOTA_NAME TEXT("SeIncreaseQuotaPrivilege")
#define SE_UNSOLICITED_INPUT_NAME TEXT("SeUnsolicitedInputPrivilege")
#define SE_MACHINE_ACCOUNT_NAME TEXT("SeMachineAccountPrivilege")
#define SE_TCB_NAME TEXT("SeTcbPrivilege")
#define SE_SECURITY_NAME TEXT("SeSecurityPrivilege")
#define SE_TAKE_OWNERSHIP_NAME TEXT("SeTakeOwnershipPrivilege")
#define SE_LOAD_DRIVER_NAME TEXT("SeLoadDriverPrivilege")
#define SE_SYSTEM_PROFILE_NAME TEXT("SeSystemProfilePrivilege")
#define SE_SYSTEMTIME_NAME TEXT("SeSystemtimePrivilege")
#define SE_PROF_SINGLE_PROCESS_NAME TEXT("SeProfileSingleProcessPrivilege")
#define SE_INC_BASE_PRIORITY_NAME TEXT("SeIncreaseBasePriorityPrivilege")
#define SE_CREATE_PAGEFILE_NAME TEXT("SeCreatePagefilePrivilege")
#define SE_CREATE_PERMANENT_NAME TEXT("SeCreatePermanentPrivilege")
#define SE_BACKUP_NAME TEXT("SeBackupPrivilege")
#define SE_RESTORE_NAME TEXT("SeRestorePrivilege")
#define SE_SHUTDOWN_NAME TEXT("SeShutdownPrivilege")
#define SE_DEBUG_NAME TEXT("SeDebugPrivilege")
#define SE_AUDIT_NAME TEXT("SeAuditPrivilege")
#define SE_SYSTEM_ENVIRONMENT_NAME TEXT("SeSystemEnvironmentPrivilege")
#define SE_CHANGE_NOTIFY_NAME TEXT("SeChangeNotifyPrivilege")
#define SE_REMOTE_SHUTDOWN_NAME TEXT("SeRemoteShutdownPrivilege")
#define SE_UNDOCK_NAME TEXT("SeUndockPrivilege")
#define SE_SYNC_AGENT_NAME TEXT("SeSyncAgentPrivilege")
#define SE_ENABLE_DELEGATION_NAME TEXT("SeEnableDelegationPrivilege")
#define SE_MANAGE_VOLUME_NAME TEXT("SeManageVolumePrivilege")
#define SE_IMPERSONATE_NAME TEXT("SeImpersonatePrivilege")
#define SE_CREATE_GLOBAL_NAME TEXT("SeCreateGlobalPrivilege")
#define SE_TRUSTED_CREDMAN_ACCESS_NAME TEXT("SeTrustedCredManAccessPrivilege")
#define SE_RELABEL_NAME TEXT("SeRelabelPrivilege")
#define SE_INC_WORKING_SET_NAME TEXT("SeIncreaseWorkingSetPrivilege")
#define SE_TIME_ZONE_NAME TEXT("SeTimeZonePrivilege")
#define SE_CREATE_SYMBOLIC_LINK_NAME TEXT("SeCreateSymbolicLinkPrivilege")
#define SE_DELEGATE_SESSION_USER_IMPERSONATE_NAME TEXT("SeDelegateSessionUserImpersonatePrivilege")
//
// List Of String Capabilities.
//
#define SE_ACTIVATE_AS_USER_CAPABILITY L"activateAsUser"
#define SE_CONSTRAINED_IMPERSONATION_CAPABILITY L"constrainedImpersonation"
#define SE_SESSION_IMPERSONATION_CAPABILITY L"sessionImpersonation"
#define SE_MUMA_CAPABILITY L"muma"
////////////////////////////////////////////////////////////////////
// //
// Security Quality Of Service //
// //
// //
////////////////////////////////////////////////////////////////////
// begin_wdm
//
// Impersonation Level
//
// Impersonation level is represented by a pair of bits in Windows.
// If a new impersonation level is added or lowest value is changed from
// 0 to something else, fix the Windows CreateFile call.
//
typedef enum _SECURITY_IMPERSONATION_LEVEL {
SecurityAnonymous,
SecurityIdentification,
SecurityImpersonation,
SecurityDelegation
} SECURITY_IMPERSONATION_LEVEL, * PSECURITY_IMPERSONATION_LEVEL;
#define SECURITY_MAX_IMPERSONATION_LEVEL SecurityDelegation
#define SECURITY_MIN_IMPERSONATION_LEVEL SecurityAnonymous
#define DEFAULT_IMPERSONATION_LEVEL SecurityImpersonation
#define VALID_IMPERSONATION_LEVEL(L) (((L) >= SECURITY_MIN_IMPERSONATION_LEVEL) && ((L) <= SECURITY_MAX_IMPERSONATION_LEVEL))
////////////////////////////////////////////////////////////////////
// //
// Token Object Definitions //
// //
// //
////////////////////////////////////////////////////////////////////
// begin_access
//
// Token Specific Access Rights.
//
#define TOKEN_ASSIGN_PRIMARY (0x0001)
#define TOKEN_DUPLICATE (0x0002)
#define TOKEN_IMPERSONATE (0x0004)
#define TOKEN_QUERY (0x0008)
#define TOKEN_QUERY_SOURCE (0x0010)
#define TOKEN_ADJUST_PRIVILEGES (0x0020)
#define TOKEN_ADJUST_GROUPS (0x0040)
#define TOKEN_ADJUST_DEFAULT (0x0080)
#define TOKEN_ADJUST_SESSIONID (0x0100)
#define TOKEN_ALL_ACCESS_P (STANDARD_RIGHTS_REQUIRED |\
TOKEN_ASSIGN_PRIMARY |\
TOKEN_DUPLICATE |\
TOKEN_IMPERSONATE |\
TOKEN_QUERY |\
TOKEN_QUERY_SOURCE |\
TOKEN_ADJUST_PRIVILEGES |\
TOKEN_ADJUST_GROUPS |\
TOKEN_ADJUST_DEFAULT )
#if ((defined(_WIN32_WINNT) && (_WIN32_WINNT > 0x0400)) || (!defined(_WIN32_WINNT)))
#define TOKEN_ALL_ACCESS (TOKEN_ALL_ACCESS_P |\
TOKEN_ADJUST_SESSIONID )
#else
#define TOKEN_ALL_ACCESS (TOKEN_ALL_ACCESS_P)
#endif
#define TOKEN_READ (STANDARD_RIGHTS_READ |\
TOKEN_QUERY)
#define TOKEN_WRITE (STANDARD_RIGHTS_WRITE |\
TOKEN_ADJUST_PRIVILEGES |\
TOKEN_ADJUST_GROUPS |\
TOKEN_ADJUST_DEFAULT)
#define TOKEN_EXECUTE (STANDARD_RIGHTS_EXECUTE)
#define TOKEN_TRUST_CONSTRAINT_MASK (STANDARD_RIGHTS_READ | \
TOKEN_QUERY |\
TOKEN_QUERY_SOURCE )
#if (NTDDI_VERSION >= NTDDI_WIN8)
#define TOKEN_ACCESS_PSEUDO_HANDLE_WIN8 (TOKEN_QUERY | TOKEN_QUERY_SOURCE)
#define TOKEN_ACCESS_PSEUDO_HANDLE TOKEN_ACCESS_PSEUDO_HANDLE_WIN8
#endif
//
// end_access
//
//
// Token Types
//
typedef enum _TOKEN_TYPE {
TokenPrimary = 1,
TokenImpersonation
} TOKEN_TYPE;
typedef TOKEN_TYPE *PTOKEN_TYPE;
//
// Token elevation values describe the relative strength of a given token.
// A full token is a token with all groups and privileges to which the principal
// is authorized. A limited token is one with some groups or privileges removed.
//
typedef enum _TOKEN_ELEVATION_TYPE {
TokenElevationTypeDefault = 1,
TokenElevationTypeFull,
TokenElevationTypeLimited,
} TOKEN_ELEVATION_TYPE, *PTOKEN_ELEVATION_TYPE;
//
// Token Information Classes.
//
typedef enum _TOKEN_INFORMATION_CLASS {
TokenUser = 1,
TokenGroups,
TokenPrivileges,
TokenOwner,
TokenPrimaryGroup,
TokenDefaultDacl,
TokenSource,
TokenType,
TokenImpersonationLevel,
TokenStatistics,
TokenRestrictedSids,
TokenSessionId,
TokenGroupsAndPrivileges,
TokenSessionReference,
TokenSandBoxInert,
TokenAuditPolicy,
TokenOrigin,
TokenElevationType,
TokenLinkedToken,
TokenElevation,
TokenHasRestrictions,
TokenAccessInformation,
TokenVirtualizationAllowed,
TokenVirtualizationEnabled,
TokenIntegrityLevel,
TokenUIAccess,
TokenMandatoryPolicy,
TokenLogonSid,
TokenIsAppContainer,
TokenCapabilities,
TokenAppContainerSid,
TokenAppContainerNumber,
TokenUserClaimAttributes,
TokenDeviceClaimAttributes,
TokenRestrictedUserClaimAttributes,
TokenRestrictedDeviceClaimAttributes,
TokenDeviceGroups,
TokenRestrictedDeviceGroups,
TokenSecurityAttributes,
TokenIsRestricted,
TokenProcessTrustLevel,
TokenPrivateNameSpace,
TokenSingletonAttributes,
MaxTokenInfoClass // MaxTokenInfoClass should always be the last enum
} TOKEN_INFORMATION_CLASS, *PTOKEN_INFORMATION_CLASS;
//
// Token information class structures
//
typedef struct _TOKEN_USER {
SID_AND_ATTRIBUTES User;
} TOKEN_USER, *PTOKEN_USER;
#ifndef MIDL_PASS
typedef struct _SE_TOKEN_USER {
union {
TOKEN_USER TokenUser;
SID_AND_ATTRIBUTES User;
} DUMMYUNIONNAME;
union {
SID Sid;
BYTE Buffer[SECURITY_MAX_SID_SIZE];
} DUMMYUNIONNAME2;
} SE_TOKEN_USER , PSE_TOKEN_USER;
#define TOKEN_USER_MAX_SIZE (sizeof(TOKEN_USER) + SECURITY_MAX_SID_SIZE)
#endif
typedef struct _TOKEN_GROUPS {
DWORD GroupCount;
#ifdef MIDL_PASS
[size_is(GroupCount)] SID_AND_ATTRIBUTES Groups[*];
#else // MIDL_PASS
SID_AND_ATTRIBUTES Groups[ANYSIZE_ARRAY];
#endif // MIDL_PASS
} TOKEN_GROUPS, *PTOKEN_GROUPS;
typedef struct _TOKEN_PRIVILEGES {
DWORD PrivilegeCount;
LUID_AND_ATTRIBUTES Privileges[ANYSIZE_ARRAY];
} TOKEN_PRIVILEGES, *PTOKEN_PRIVILEGES;
typedef struct _TOKEN_OWNER {
PSID Owner;
} TOKEN_OWNER, *PTOKEN_OWNER;
#ifndef MIDL_PASS
#define TOKEN_OWNER_MAX_SIZE (sizeof(TOKEN_OWNER) + SECURITY_MAX_SID_SIZE)
#endif
typedef struct _TOKEN_PRIMARY_GROUP {
PSID PrimaryGroup;
} TOKEN_PRIMARY_GROUP, *PTOKEN_PRIMARY_GROUP;
typedef struct _TOKEN_DEFAULT_DACL {
PACL DefaultDacl;
} TOKEN_DEFAULT_DACL, *PTOKEN_DEFAULT_DACL;
typedef struct _TOKEN_USER_CLAIMS {
PCLAIMS_BLOB UserClaims;
} TOKEN_USER_CLAIMS, *PTOKEN_USER_CLAIMS;
typedef struct _TOKEN_DEVICE_CLAIMS {
PCLAIMS_BLOB DeviceClaims;
} TOKEN_DEVICE_CLAIMS, *PTOKEN_DEVICE_CLAIMS;
typedef struct _TOKEN_GROUPS_AND_PRIVILEGES {
DWORD SidCount;
DWORD SidLength;
PSID_AND_ATTRIBUTES Sids;
DWORD RestrictedSidCount;
DWORD RestrictedSidLength;
PSID_AND_ATTRIBUTES RestrictedSids;
DWORD PrivilegeCount;
DWORD PrivilegeLength;
PLUID_AND_ATTRIBUTES Privileges;
LUID AuthenticationId;
} TOKEN_GROUPS_AND_PRIVILEGES, *PTOKEN_GROUPS_AND_PRIVILEGES;
typedef struct _TOKEN_LINKED_TOKEN {
HANDLE LinkedToken;
} TOKEN_LINKED_TOKEN, *PTOKEN_LINKED_TOKEN;
typedef struct _TOKEN_ELEVATION {
DWORD TokenIsElevated;
} TOKEN_ELEVATION, *PTOKEN_ELEVATION;
typedef struct _TOKEN_MANDATORY_LABEL {
SID_AND_ATTRIBUTES Label;
} TOKEN_MANDATORY_LABEL, *PTOKEN_MANDATORY_LABEL;
#define TOKEN_MANDATORY_POLICY_OFF 0x0
#define TOKEN_MANDATORY_POLICY_NO_WRITE_UP 0x1
#define TOKEN_MANDATORY_POLICY_NEW_PROCESS_MIN 0x2
#define TOKEN_MANDATORY_POLICY_VALID_MASK (TOKEN_MANDATORY_POLICY_NO_WRITE_UP | \
TOKEN_MANDATORY_POLICY_NEW_PROCESS_MIN)
#ifndef MIDL_PASS
#define TOKEN_INTEGRITY_LEVEL_MAX_SIZE ((((DWORD)(sizeof(TOKEN_MANDATORY_LABEL)) + sizeof(PVOID) - 1) & ~(sizeof(PVOID)-1)) + SECURITY_MAX_SID_SIZE)
#endif
typedef struct _TOKEN_MANDATORY_POLICY {
DWORD Policy;
} TOKEN_MANDATORY_POLICY, *PTOKEN_MANDATORY_POLICY;
typedef PVOID PSECURITY_ATTRIBUTES_OPAQUE;
typedef struct _TOKEN_ACCESS_INFORMATION {
PSID_AND_ATTRIBUTES_HASH SidHash;
PSID_AND_ATTRIBUTES_HASH RestrictedSidHash;
PTOKEN_PRIVILEGES Privileges;
LUID AuthenticationId;
TOKEN_TYPE TokenType;
SECURITY_IMPERSONATION_LEVEL ImpersonationLevel;
TOKEN_MANDATORY_POLICY MandatoryPolicy;
DWORD Flags;
DWORD AppContainerNumber;
PSID PackageSid;
PSID_AND_ATTRIBUTES_HASH CapabilitiesHash;
PSID TrustLevelSid;
PSECURITY_ATTRIBUTES_OPAQUE SecurityAttributes;
} TOKEN_ACCESS_INFORMATION, *PTOKEN_ACCESS_INFORMATION;
//
// Valid bits for each TOKEN_AUDIT_POLICY policy mask field.
//
#define POLICY_AUDIT_SUBCATEGORY_COUNT (59)
typedef struct _TOKEN_AUDIT_POLICY {
BYTE PerUserPolicy[((POLICY_AUDIT_SUBCATEGORY_COUNT) >> 1) + 1];
} TOKEN_AUDIT_POLICY, *PTOKEN_AUDIT_POLICY;
#define TOKEN_SOURCE_LENGTH 8
typedef struct _TOKEN_SOURCE {
CHAR SourceName[TOKEN_SOURCE_LENGTH];
LUID SourceIdentifier;
} TOKEN_SOURCE, *PTOKEN_SOURCE;
typedef struct _TOKEN_STATISTICS {
LUID TokenId;
LUID AuthenticationId;
LARGE_INTEGER ExpirationTime;
TOKEN_TYPE TokenType;
SECURITY_IMPERSONATION_LEVEL ImpersonationLevel;
DWORD DynamicCharged;
DWORD DynamicAvailable;
DWORD GroupCount;
DWORD PrivilegeCount;
LUID ModifiedId;
} TOKEN_STATISTICS, *PTOKEN_STATISTICS;
typedef struct _TOKEN_CONTROL {
LUID TokenId;
LUID AuthenticationId;
LUID ModifiedId;
TOKEN_SOURCE TokenSource;
} TOKEN_CONTROL, *PTOKEN_CONTROL;
typedef struct _TOKEN_ORIGIN {
LUID OriginatingLogonSession ;
} TOKEN_ORIGIN, * PTOKEN_ORIGIN ;
typedef enum _MANDATORY_LEVEL {
MandatoryLevelUntrusted = 0,
MandatoryLevelLow,
MandatoryLevelMedium,
MandatoryLevelHigh,
MandatoryLevelSystem,
MandatoryLevelSecureProcess,
MandatoryLevelCount
} MANDATORY_LEVEL, *PMANDATORY_LEVEL;
typedef struct _TOKEN_APPCONTAINER_INFORMATION {
PSID TokenAppContainer;
} TOKEN_APPCONTAINER_INFORMATION, *PTOKEN_APPCONTAINER_INFORMATION;
#ifndef MIDL_PASS
#define TOKEN_APPCONTAINER_SID_MAX_SIZE (sizeof(TOKEN_APPCONTAINER_INFORMATION) + SECURITY_MAX_SID_SIZE)
#endif
typedef struct _TOKEN_SID_INFORMATION {
PSID Sid;
} TOKEN_SID_INFORMATION, *PTOKEN_SID_INFORMATION;
//
// *** Claim Security attributes ***
//
// These #defines and data structures (almost) exactly mirror
// the Token_XXX definitions (except for PWSTR/PUNICODE changes)
// in ntseapi.w as well as AUTHZ_XXX in authz.w.
// Keep them in sync.
//
//
// Security attribute data types ...
//
#define CLAIM_SECURITY_ATTRIBUTE_TYPE_INVALID 0x00
#define CLAIM_SECURITY_ATTRIBUTE_TYPE_INT64 0x01
#define CLAIM_SECURITY_ATTRIBUTE_TYPE_UINT64 0x02
//
// Case insensitive attribute value string by default.
// Unless the flag CLAIM_SECURITY_ATTRIBUTE_VALUE_CASE_SENSITIVE
// is set indicating otherwise.
//
#define CLAIM_SECURITY_ATTRIBUTE_TYPE_STRING 0x03
//
// Fully-qualified binary name.
//
typedef struct _CLAIM_SECURITY_ATTRIBUTE_FQBN_VALUE {
DWORD64 Version;
PWSTR Name;
} CLAIM_SECURITY_ATTRIBUTE_FQBN_VALUE, *PCLAIM_SECURITY_ATTRIBUTE_FQBN_VALUE;
#define CLAIM_SECURITY_ATTRIBUTE_TYPE_FQBN 0x04
#define CLAIM_SECURITY_ATTRIBUTE_TYPE_SID 0x05
#define CLAIM_SECURITY_ATTRIBUTE_TYPE_BOOLEAN 0x06
typedef struct _CLAIM_SECURITY_ATTRIBUTE_OCTET_STRING_VALUE {
PVOID pValue; // Pointer is BYTE aligned.
DWORD ValueLength; // In bytes
} CLAIM_SECURITY_ATTRIBUTE_OCTET_STRING_VALUE,
*PCLAIM_SECURITY_ATTRIBUTE_OCTET_STRING_VALUE;
#define CLAIM_SECURITY_ATTRIBUTE_TYPE_OCTET_STRING 0x10
//
// Attribute Flags
//
//
// Attribute must not be inherited across process spawns.
//
#define CLAIM_SECURITY_ATTRIBUTE_NON_INHERITABLE 0x0001
//
// Attribute value is compared in a case sensitive way. It is valid with string value
// or composite type containing string value. For other types of value, this flag
// will be ignored. Currently, it is valid with the two types:
// CLAIM_SECURITY_ATTRIBUTE_TYPE_STRING and CLAIM_SECURITY_ATTRIBUTE_TYPE_FQBN.
//
#define CLAIM_SECURITY_ATTRIBUTE_VALUE_CASE_SENSITIVE 0x0002
//
// Attribute is considered only for Deny Aces.
//
#define CLAIM_SECURITY_ATTRIBUTE_USE_FOR_DENY_ONLY 0x0004
//
// Attribute is disabled by default.
//
#define CLAIM_SECURITY_ATTRIBUTE_DISABLED_BY_DEFAULT 0x0008
//
// Attribute is disabled.
//
#define CLAIM_SECURITY_ATTRIBUTE_DISABLED 0x0010
//
// Attribute is mandatory.
//
#define CLAIM_SECURITY_ATTRIBUTE_MANDATORY 0x0020
#define CLAIM_SECURITY_ATTRIBUTE_VALID_FLAGS ( \
CLAIM_SECURITY_ATTRIBUTE_NON_INHERITABLE | \
CLAIM_SECURITY_ATTRIBUTE_VALUE_CASE_SENSITIVE | \
CLAIM_SECURITY_ATTRIBUTE_USE_FOR_DENY_ONLY | \
CLAIM_SECURITY_ATTRIBUTE_DISABLED_BY_DEFAULT | \
CLAIM_SECURITY_ATTRIBUTE_DISABLED | \
CLAIM_SECURITY_ATTRIBUTE_MANDATORY )
//
// Reserve upper 16 bits for custom flags. These should be preserved but not
// validated as they do not affect security in any way.
//
#define CLAIM_SECURITY_ATTRIBUTE_CUSTOM_FLAGS 0xFFFF0000
//
// An individual security attribute.
//
typedef struct _CLAIM_SECURITY_ATTRIBUTE_V1 {
//
// Name of the attribute.
// Case insensitive Unicode string.
//
PWSTR Name;
//
// Data type of attribute.
//
WORD ValueType;
//
// Pass 0 in a set operation and check for 0 in
// a get operation.
//
WORD Reserved;
//
// Attribute Flags
//
DWORD Flags;
//
// Number of values.
//
DWORD ValueCount;
//
// The actual value itself.
//
union {
PLONG64 pInt64;
PDWORD64 pUint64;
PWSTR *ppString;
PCLAIM_SECURITY_ATTRIBUTE_FQBN_VALUE pFqbn;
PCLAIM_SECURITY_ATTRIBUTE_OCTET_STRING_VALUE pOctetString;
} Values;
} CLAIM_SECURITY_ATTRIBUTE_V1, *PCLAIM_SECURITY_ATTRIBUTE_V1;
//
// Relative form of the security attribute.
//
typedef struct _CLAIM_SECURITY_ATTRIBUTE_RELATIVE_V1 {
//
// Name of the attribute.
// Offset from beginning of structure.
//
DWORD Name;
//
// Data type of attribute.
//
WORD ValueType;
//
// Pass 0 in a set operation and check for 0 in
// a get operation.
//
WORD Reserved;
//
// Attribute Flags
//
DWORD Flags;
//
// Number of values.
//
DWORD ValueCount;
//
// The actual value itself.
//
union {
DWORD pInt64[ANYSIZE_ARRAY];
DWORD pUint64[ANYSIZE_ARRAY];
DWORD ppString[ANYSIZE_ARRAY];
DWORD pFqbn[ANYSIZE_ARRAY];
DWORD pOctetString[ANYSIZE_ARRAY];
} Values;
} CLAIM_SECURITY_ATTRIBUTE_RELATIVE_V1, *PCLAIM_SECURITY_ATTRIBUTE_RELATIVE_V1;
//
// Set of security attributes.
//
//
// Versioning. The interpretation of the pointers in the
// Attribute field below is dependent on the version field.
//
// Get operations return the version while the set operation
// MUST specify the version of the data structure passed in.
//
#define CLAIM_SECURITY_ATTRIBUTES_INFORMATION_VERSION_V1 1
#define CLAIM_SECURITY_ATTRIBUTES_INFORMATION_VERSION \
CLAIM_SECURITY_ATTRIBUTES_INFORMATION_VERSION_V1
typedef struct _CLAIM_SECURITY_ATTRIBUTES_INFORMATION {
//
// MUST BE first.
//
WORD Version;
//
// Pass 0 in set operations and ignore on get operations.
//
WORD Reserved;
DWORD AttributeCount;
union {
PCLAIM_SECURITY_ATTRIBUTE_V1 pAttributeV1;
} Attribute;
} CLAIM_SECURITY_ATTRIBUTES_INFORMATION, *PCLAIM_SECURITY_ATTRIBUTES_INFORMATION;
//
// Security Tracking Mode
//
#define SECURITY_DYNAMIC_TRACKING (TRUE)
#define SECURITY_STATIC_TRACKING (FALSE)
typedef BOOLEAN SECURITY_CONTEXT_TRACKING_MODE,
* PSECURITY_CONTEXT_TRACKING_MODE;
//
// Quality Of Service
//
typedef struct _SECURITY_QUALITY_OF_SERVICE {
DWORD Length;
SECURITY_IMPERSONATION_LEVEL ImpersonationLevel;
SECURITY_CONTEXT_TRACKING_MODE ContextTrackingMode;
BOOLEAN EffectiveOnly;
} SECURITY_QUALITY_OF_SERVICE, * PSECURITY_QUALITY_OF_SERVICE;
//
// Used to represent information related to a thread impersonation
//
typedef struct _SE_IMPERSONATION_STATE {
PACCESS_TOKEN Token;
BOOLEAN CopyOnOpen;
BOOLEAN EffectiveOnly;
SECURITY_IMPERSONATION_LEVEL Level;
} SE_IMPERSONATION_STATE, *PSE_IMPERSONATION_STATE;
#define DISABLE_MAX_PRIVILEGE 0x1
#define SANDBOX_INERT 0x2
#define LUA_TOKEN 0x4
#define WRITE_RESTRICTED 0x8
typedef DWORD SECURITY_INFORMATION, *PSECURITY_INFORMATION;
#define OWNER_SECURITY_INFORMATION (0x00000001L)
#define GROUP_SECURITY_INFORMATION (0x00000002L)
#define DACL_SECURITY_INFORMATION (0x00000004L)
#define SACL_SECURITY_INFORMATION (0x00000008L)
#define LABEL_SECURITY_INFORMATION (0x00000010L)
#define ATTRIBUTE_SECURITY_INFORMATION (0x00000020L)
#define SCOPE_SECURITY_INFORMATION (0x00000040L)
#define PROCESS_TRUST_LABEL_SECURITY_INFORMATION (0x00000080L)
#define BACKUP_SECURITY_INFORMATION (0x00010000L)
#define PROTECTED_DACL_SECURITY_INFORMATION (0x80000000L)
#define PROTECTED_SACL_SECURITY_INFORMATION (0x40000000L)
#define UNPROTECTED_DACL_SECURITY_INFORMATION (0x20000000L)
#define UNPROTECTED_SACL_SECURITY_INFORMATION (0x10000000L)
//
// Base signing levels.
//
typedef BYTE SE_SIGNING_LEVEL, *PSE_SIGNING_LEVEL;
#define SE_SIGNING_LEVEL_UNCHECKED 0x00000000
#define SE_SIGNING_LEVEL_UNSIGNED 0x00000001
#define SE_SIGNING_LEVEL_ENTERPRISE 0x00000002
#define SE_SIGNING_LEVEL_CUSTOM_1 0x00000003
#define SE_SIGNING_LEVEL_AUTHENTICODE 0x00000004
#define SE_SIGNING_LEVEL_CUSTOM_2 0x00000005
#define SE_SIGNING_LEVEL_STORE 0x00000006
#define SE_SIGNING_LEVEL_CUSTOM_3 0x00000007
#define SE_SIGNING_LEVEL_ANTIMALWARE SE_SIGNING_LEVEL_CUSTOM_3
#define SE_SIGNING_LEVEL_MICROSOFT 0x00000008
#define SE_SIGNING_LEVEL_CUSTOM_4 0x00000009
#define SE_SIGNING_LEVEL_CUSTOM_5 0x0000000A
#define SE_SIGNING_LEVEL_DYNAMIC_CODEGEN 0x0000000B
#define SE_SIGNING_LEVEL_WINDOWS 0x0000000C
#define SE_SIGNING_LEVEL_CUSTOM_7 0x0000000D
#define SE_SIGNING_LEVEL_WINDOWS_TCB 0x0000000E
#define SE_SIGNING_LEVEL_CUSTOM_6 0x0000000F
//
// Image signature types.
//
typedef enum _SE_IMAGE_SIGNATURE_TYPE
{
SeImageSignatureNone = 0,
SeImageSignatureEmbedded,
SeImageSignatureCache,
SeImageSignatureCatalogCached,
SeImageSignatureCatalogNotCached,
SeImageSignatureCatalogHint,
SeImageSignaturePackageCatalog,
} SE_IMAGE_SIGNATURE_TYPE, *PSE_IMAGE_SIGNATURE_TYPE;
//
// Learning Mode Types.
//
typedef enum _SE_LEARNING_MODE_DATA_TYPE {
SeLearningModeInvalidType = 0,
SeLearningModeSettings,
SeLearningModeMax
} SE_LEARNING_MODE_DATA_TYPE;
#define SE_LEARNING_MODE_FLAG_PERMISSIVE 0x00000001
typedef struct _SECURITY_CAPABILITIES {
#ifdef MIDL_PASS
PISID AppContainerSid;
[size_is(CapabilityCount)] PSID_AND_ATTRIBUTES Capabilities;
#else // MIDL_PASS
PSID AppContainerSid;
PSID_AND_ATTRIBUTES Capabilities;
#endif // MIDL_PASS
DWORD CapabilityCount;
DWORD Reserved;
} SECURITY_CAPABILITIES, *PSECURITY_CAPABILITIES, *LPSECURITY_CAPABILITIES;
#define PROCESS_TERMINATE (0x0001)
#define PROCESS_CREATE_THREAD (0x0002)
#define PROCESS_SET_SESSIONID (0x0004)
#define PROCESS_VM_OPERATION (0x0008)
#define PROCESS_VM_READ (0x0010)
#define PROCESS_VM_WRITE (0x0020)
#define PROCESS_DUP_HANDLE (0x0040)
#define PROCESS_CREATE_PROCESS (0x0080)
#define PROCESS_SET_QUOTA (0x0100)
#define PROCESS_SET_INFORMATION (0x0200)
#define PROCESS_QUERY_INFORMATION (0x0400)
#define PROCESS_SUSPEND_RESUME (0x0800)
#define PROCESS_QUERY_LIMITED_INFORMATION (0x1000)
#define PROCESS_SET_LIMITED_INFORMATION (0x2000)
#if (NTDDI_VERSION >= NTDDI_VISTA)
#define PROCESS_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED | SYNCHRONIZE | \
0xFFFF)
#else
#define PROCESS_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED | SYNCHRONIZE | \
0xFFF)
#endif
#define THREAD_TERMINATE (0x0001)
#define THREAD_SUSPEND_RESUME (0x0002)
#define THREAD_GET_CONTEXT (0x0008)
#define THREAD_SET_CONTEXT (0x0010)
#define THREAD_QUERY_INFORMATION (0x0040)
#define THREAD_SET_INFORMATION (0x0020)
#define THREAD_SET_THREAD_TOKEN (0x0080)
#define THREAD_IMPERSONATE (0x0100)
#define THREAD_DIRECT_IMPERSONATION (0x0200)
// begin_wdm
#define THREAD_SET_LIMITED_INFORMATION (0x0400) // winnt
#define THREAD_QUERY_LIMITED_INFORMATION (0x0800) // winnt
#define THREAD_RESUME (0x1000) // winnt
#if (NTDDI_VERSION >= NTDDI_VISTA)
#define THREAD_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED | SYNCHRONIZE | \
0xFFFF)
#else
#define THREAD_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED | SYNCHRONIZE | \
0x3FF)
#endif
#define JOB_OBJECT_ASSIGN_PROCESS (0x0001)
#define JOB_OBJECT_SET_ATTRIBUTES (0x0002)
#define JOB_OBJECT_QUERY (0x0004)
#define JOB_OBJECT_TERMINATE (0x0008)
#define JOB_OBJECT_SET_SECURITY_ATTRIBUTES (0x0010)
#define JOB_OBJECT_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED | SYNCHRONIZE | \
0x1F )
// end_access
typedef struct _JOB_SET_ARRAY {
HANDLE JobHandle; // Handle to job object to insert
DWORD MemberLevel; // Level of this job in the set. Must be > 0. Can be sparse.
DWORD Flags; // Unused. Must be zero
} JOB_SET_ARRAY, *PJOB_SET_ARRAY;
#define FLS_MAXIMUM_AVAILABLE 128
#define TLS_MINIMUM_AVAILABLE 64
typedef struct _EXCEPTION_REGISTRATION_RECORD {
struct _EXCEPTION_REGISTRATION_RECORD *Next;
PEXCEPTION_ROUTINE Handler;
} EXCEPTION_REGISTRATION_RECORD;
typedef EXCEPTION_REGISTRATION_RECORD *PEXCEPTION_REGISTRATION_RECORD;
typedef struct _NT_TIB {
struct _EXCEPTION_REGISTRATION_RECORD *ExceptionList;
PVOID StackBase;
PVOID StackLimit;
PVOID SubSystemTib;
#if defined(_MSC_EXTENSIONS)
union {
PVOID FiberData;
DWORD Version;
};
#else
PVOID FiberData;
#endif
PVOID ArbitraryUserPointer;
struct _NT_TIB *Self;
} NT_TIB;
typedef NT_TIB *PNT_TIB;
//
// 32 and 64 bit specific version for wow64 and the debugger
//
typedef struct _NT_TIB32 {
DWORD ExceptionList;
DWORD StackBase;
DWORD StackLimit;
DWORD SubSystemTib;
#if defined(_MSC_EXTENSIONS)
union {
DWORD FiberData;
DWORD Version;
};
#else
DWORD FiberData;
#endif
DWORD ArbitraryUserPointer;
DWORD Self;
} NT_TIB32, *PNT_TIB32;
typedef struct _NT_TIB64 {
DWORD64 ExceptionList;
DWORD64 StackBase;
DWORD64 StackLimit;
DWORD64 SubSystemTib;
#if defined(_MSC_EXTENSIONS)
union {
DWORD64 FiberData;
DWORD Version;
};
#else
DWORD64 FiberData;
#endif
DWORD64 ArbitraryUserPointer;
DWORD64 Self;
} NT_TIB64, *PNT_TIB64;
#define THREAD_DYNAMIC_CODE_ALLOW 1 // Opt-out of dynamic code generation.
#define THREAD_BASE_PRIORITY_LOWRT 15 // value that gets a thread to LowRealtime-1
#define THREAD_BASE_PRIORITY_MAX 2 // maximum thread base priority boost
#define THREAD_BASE_PRIORITY_MIN (-2) // minimum thread base priority boost
#define THREAD_BASE_PRIORITY_IDLE (-15) // value that gets a thread to idle
typedef struct _UMS_CREATE_THREAD_ATTRIBUTES {
DWORD UmsVersion;
PVOID UmsContext;
PVOID UmsCompletionList;
} UMS_CREATE_THREAD_ATTRIBUTES, *PUMS_CREATE_THREAD_ATTRIBUTES;
typedef struct _WOW64_ARCHITECTURE_INFORMATION {
DWORD Machine : 16;
DWORD KernelMode : 1;
DWORD UserMode : 1;
DWORD Native : 1;
DWORD Process : 1;
DWORD ReservedZero0 : 12;
} WOW64_ARCHITECTURE_INFORMATION;
//
// Page/memory priorities.
//
#define MEMORY_PRIORITY_LOWEST 0
#define MEMORY_PRIORITY_VERY_LOW 1
#define MEMORY_PRIORITY_LOW 2
#define MEMORY_PRIORITY_MEDIUM 3
#define MEMORY_PRIORITY_BELOW_NORMAL 4
#define MEMORY_PRIORITY_NORMAL 5
typedef struct _QUOTA_LIMITS {
SIZE_T PagedPoolLimit;
SIZE_T NonPagedPoolLimit;
SIZE_T MinimumWorkingSetSize;
SIZE_T MaximumWorkingSetSize;
SIZE_T PagefileLimit;
LARGE_INTEGER TimeLimit;
} QUOTA_LIMITS, *PQUOTA_LIMITS;
#define QUOTA_LIMITS_HARDWS_MIN_ENABLE 0x00000001
#define QUOTA_LIMITS_HARDWS_MIN_DISABLE 0x00000002
#define QUOTA_LIMITS_HARDWS_MAX_ENABLE 0x00000004
#define QUOTA_LIMITS_HARDWS_MAX_DISABLE 0x00000008
#define QUOTA_LIMITS_USE_DEFAULT_LIMITS 0x00000010
typedef union _RATE_QUOTA_LIMIT {
DWORD RateData;
struct {
DWORD RatePercent : 7;
DWORD Reserved0 : 25;
} DUMMYSTRUCTNAME;
} RATE_QUOTA_LIMIT, *PRATE_QUOTA_LIMIT;
typedef struct _QUOTA_LIMITS_EX {
SIZE_T PagedPoolLimit;
SIZE_T NonPagedPoolLimit;
SIZE_T MinimumWorkingSetSize;
SIZE_T MaximumWorkingSetSize;
SIZE_T PagefileLimit; // Limit expressed in pages
LARGE_INTEGER TimeLimit;
SIZE_T WorkingSetLimit; // Limit expressed in pages
SIZE_T Reserved2;
SIZE_T Reserved3;
SIZE_T Reserved4;
DWORD Flags;
RATE_QUOTA_LIMIT CpuRateLimit;
} QUOTA_LIMITS_EX, *PQUOTA_LIMITS_EX;
typedef struct _IO_COUNTERS {
ULONGLONG ReadOperationCount;
ULONGLONG WriteOperationCount;
ULONGLONG OtherOperationCount;
ULONGLONG ReadTransferCount;
ULONGLONG WriteTransferCount;
ULONGLONG OtherTransferCount;
} IO_COUNTERS;
typedef IO_COUNTERS *PIO_COUNTERS;
#define MAX_HW_COUNTERS 16
#define THREAD_PROFILING_FLAG_DISPATCH 0x00000001
typedef enum _HARDWARE_COUNTER_TYPE {
PMCCounter,
MaxHardwareCounterType
} HARDWARE_COUNTER_TYPE, *PHARDWARE_COUNTER_TYPE;
typedef enum _PROCESS_MITIGATION_POLICY {
ProcessDEPPolicy,
ProcessASLRPolicy,
ProcessDynamicCodePolicy,
ProcessStrictHandleCheckPolicy,
ProcessSystemCallDisablePolicy,
ProcessMitigationOptionsMask,
ProcessExtensionPointDisablePolicy,
ProcessControlFlowGuardPolicy,
ProcessSignaturePolicy,
ProcessFontDisablePolicy,
ProcessImageLoadPolicy,
MaxProcessMitigationPolicy
} PROCESS_MITIGATION_POLICY, *PPROCESS_MITIGATION_POLICY;
//
// N.B. High entropy mode is read only and can only be set at creation time
// and not via the ProcessMitigationPolicy APIs.
//
typedef struct _PROCESS_MITIGATION_ASLR_POLICY {
union {
DWORD Flags;
struct {
DWORD EnableBottomUpRandomization : 1;
DWORD EnableForceRelocateImages : 1;
DWORD EnableHighEntropy : 1;
DWORD DisallowStrippedImages : 1;
DWORD ReservedFlags : 28;
} DUMMYSTRUCTNAME;
} DUMMYUNIONNAME;
} PROCESS_MITIGATION_ASLR_POLICY, *PPROCESS_MITIGATION_ASLR_POLICY;
typedef struct _PROCESS_MITIGATION_DEP_POLICY {
union {
DWORD Flags;
struct {
DWORD Enable : 1;
DWORD DisableAtlThunkEmulation : 1;
DWORD ReservedFlags : 30;
} DUMMYSTRUCTNAME;
} DUMMYUNIONNAME;
BOOLEAN Permanent;
} PROCESS_MITIGATION_DEP_POLICY, *PPROCESS_MITIGATION_DEP_POLICY;
typedef struct _PROCESS_MITIGATION_STRICT_HANDLE_CHECK_POLICY {
union {
DWORD Flags;
struct {
DWORD RaiseExceptionOnInvalidHandleReference : 1;
DWORD HandleExceptionsPermanentlyEnabled : 1;
DWORD ReservedFlags : 30;
} DUMMYSTRUCTNAME;
} DUMMYUNIONNAME;
} PROCESS_MITIGATION_STRICT_HANDLE_CHECK_POLICY, *PPROCESS_MITIGATION_STRICT_HANDLE_CHECK_POLICY;
typedef struct _PROCESS_MITIGATION_SYSTEM_CALL_DISABLE_POLICY {
union {
DWORD Flags;
struct {
DWORD DisallowWin32kSystemCalls : 1;
DWORD ReservedFlags : 31;
} DUMMYSTRUCTNAME;
} DUMMYUNIONNAME;
} PROCESS_MITIGATION_SYSTEM_CALL_DISABLE_POLICY, *PPROCESS_MITIGATION_SYSTEM_CALL_DISABLE_POLICY;
typedef struct _PROCESS_MITIGATION_EXTENSION_POINT_DISABLE_POLICY {
union {
DWORD Flags;
struct {
DWORD DisableExtensionPoints : 1;
DWORD ReservedFlags : 31;
} DUMMYSTRUCTNAME;
} DUMMYUNIONNAME;
} PROCESS_MITIGATION_EXTENSION_POINT_DISABLE_POLICY, *PPROCESS_MITIGATION_EXTENSION_POINT_DISABLE_POLICY;
typedef struct _PROCESS_MITIGATION_DYNAMIC_CODE_POLICY {
union {
DWORD Flags;
struct {
DWORD ProhibitDynamicCode : 1;
DWORD AllowThreadOptOut : 1;
DWORD ReservedFlags : 30;
} DUMMYSTRUCTNAME;
} DUMMYUNIONNAME;
} PROCESS_MITIGATION_DYNAMIC_CODE_POLICY, *PPROCESS_MITIGATION_DYNAMIC_CODE_POLICY;
typedef struct _PROCESS_MITIGATION_CONTROL_FLOW_GUARD_POLICY {
union {
DWORD Flags;
struct {
DWORD EnableControlFlowGuard : 1;
DWORD ReservedFlags : 31;
} DUMMYSTRUCTNAME;
} DUMMYUNIONNAME;
} PROCESS_MITIGATION_CONTROL_FLOW_GUARD_POLICY, *PPROCESS_MITIGATION_CONTROL_FLOW_GUARD_POLICY;
typedef struct _PROCESS_MITIGATION_BINARY_SIGNATURE_POLICY {
union {
DWORD Flags;
struct {
DWORD MicrosoftSignedOnly : 1;
DWORD StoreSignedOnly : 1;
DWORD MitigationOptIn : 1;
DWORD ReservedFlags : 29;
} DUMMYSTRUCTNAME;
} DUMMYUNIONNAME;
} PROCESS_MITIGATION_BINARY_SIGNATURE_POLICY, *PPROCESS_MITIGATION_BINARY_SIGNATURE_POLICY;
typedef struct _PROCESS_MITIGATION_FONT_DISABLE_POLICY {
union {
DWORD Flags;
struct {
DWORD DisableNonSystemFonts : 1;
DWORD AuditNonSystemFontLoading : 1;
DWORD ReservedFlags : 30;
} DUMMYSTRUCTNAME;
} DUMMYUNIONNAME;
} PROCESS_MITIGATION_FONT_DISABLE_POLICY, *PPROCESS_MITIGATION_FONT_DISABLE_POLICY;
typedef struct _PROCESS_MITIGATION_IMAGE_LOAD_POLICY {
union {
DWORD Flags;
struct {
DWORD NoRemoteImages : 1;
DWORD NoLowMandatoryLabelImages : 1;
DWORD PreferSystem32Images : 1;
DWORD ReservedFlags : 29;
} DUMMYSTRUCTNAME;
} DUMMYUNIONNAME;
} PROCESS_MITIGATION_IMAGE_LOAD_POLICY, *PPROCESS_MITIGATION_IMAGE_LOAD_POLICY;
typedef struct _JOBOBJECT_BASIC_ACCOUNTING_INFORMATION {
LARGE_INTEGER TotalUserTime;
LARGE_INTEGER TotalKernelTime;
LARGE_INTEGER ThisPeriodTotalUserTime;
LARGE_INTEGER ThisPeriodTotalKernelTime;
DWORD TotalPageFaultCount;
DWORD TotalProcesses;
DWORD ActiveProcesses;
DWORD TotalTerminatedProcesses;
} JOBOBJECT_BASIC_ACCOUNTING_INFORMATION, *PJOBOBJECT_BASIC_ACCOUNTING_INFORMATION;
typedef struct _JOBOBJECT_BASIC_LIMIT_INFORMATION {
LARGE_INTEGER PerProcessUserTimeLimit;
LARGE_INTEGER PerJobUserTimeLimit;
DWORD LimitFlags;
SIZE_T MinimumWorkingSetSize;
SIZE_T MaximumWorkingSetSize;
DWORD ActiveProcessLimit;
ULONG_PTR Affinity;
DWORD PriorityClass;
DWORD SchedulingClass;
} JOBOBJECT_BASIC_LIMIT_INFORMATION, *PJOBOBJECT_BASIC_LIMIT_INFORMATION;
typedef struct _JOBOBJECT_EXTENDED_LIMIT_INFORMATION {
JOBOBJECT_BASIC_LIMIT_INFORMATION BasicLimitInformation;
IO_COUNTERS IoInfo;
SIZE_T ProcessMemoryLimit;
SIZE_T JobMemoryLimit;
SIZE_T PeakProcessMemoryUsed;
SIZE_T PeakJobMemoryUsed;
} JOBOBJECT_EXTENDED_LIMIT_INFORMATION, *PJOBOBJECT_EXTENDED_LIMIT_INFORMATION;
typedef struct _JOBOBJECT_BASIC_PROCESS_ID_LIST {
DWORD NumberOfAssignedProcesses;
DWORD NumberOfProcessIdsInList;
ULONG_PTR ProcessIdList[1];
} JOBOBJECT_BASIC_PROCESS_ID_LIST, *PJOBOBJECT_BASIC_PROCESS_ID_LIST;
typedef struct _JOBOBJECT_BASIC_UI_RESTRICTIONS {
DWORD UIRestrictionsClass;
} JOBOBJECT_BASIC_UI_RESTRICTIONS, *PJOBOBJECT_BASIC_UI_RESTRICTIONS;
//
// N.B. The JOBOBJECT_SECURITY_LIMIT_INFORMATION information class is no longer supported.
//
typedef struct _JOBOBJECT_SECURITY_LIMIT_INFORMATION {
DWORD SecurityLimitFlags ;
HANDLE JobToken ;
PTOKEN_GROUPS SidsToDisable ;
PTOKEN_PRIVILEGES PrivilegesToDelete ;
PTOKEN_GROUPS RestrictedSids ;
} JOBOBJECT_SECURITY_LIMIT_INFORMATION, *PJOBOBJECT_SECURITY_LIMIT_INFORMATION ;
typedef struct _JOBOBJECT_END_OF_JOB_TIME_INFORMATION {
DWORD EndOfJobTimeAction;
} JOBOBJECT_END_OF_JOB_TIME_INFORMATION, *PJOBOBJECT_END_OF_JOB_TIME_INFORMATION;
typedef struct _JOBOBJECT_ASSOCIATE_COMPLETION_PORT {
PVOID CompletionKey;
HANDLE CompletionPort;
} JOBOBJECT_ASSOCIATE_COMPLETION_PORT, *PJOBOBJECT_ASSOCIATE_COMPLETION_PORT;
typedef struct _JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION {
JOBOBJECT_BASIC_ACCOUNTING_INFORMATION BasicInfo;
IO_COUNTERS IoInfo;
} JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION, *PJOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION;
typedef struct _JOBOBJECT_JOBSET_INFORMATION {
DWORD MemberLevel;
} JOBOBJECT_JOBSET_INFORMATION, *PJOBOBJECT_JOBSET_INFORMATION;
typedef enum _JOBOBJECT_RATE_CONTROL_TOLERANCE {
ToleranceLow = 1,
ToleranceMedium,
ToleranceHigh
} JOBOBJECT_RATE_CONTROL_TOLERANCE, *PJOBOBJECT_RATE_CONTROL_TOLERANCE;
typedef enum _JOBOBJECT_RATE_CONTROL_TOLERANCE_INTERVAL {
ToleranceIntervalShort = 1,
ToleranceIntervalMedium,
ToleranceIntervalLong
} JOBOBJECT_RATE_CONTROL_TOLERANCE_INTERVAL,
*PJOBOBJECT_RATE_CONTROL_TOLERANCE_INTERVAL;
typedef struct _JOBOBJECT_NOTIFICATION_LIMIT_INFORMATION {
DWORD64 IoReadBytesLimit;
DWORD64 IoWriteBytesLimit;
LARGE_INTEGER PerJobUserTimeLimit;
DWORD64 JobMemoryLimit;
JOBOBJECT_RATE_CONTROL_TOLERANCE RateControlTolerance;
JOBOBJECT_RATE_CONTROL_TOLERANCE_INTERVAL RateControlToleranceInterval;
DWORD LimitFlags;
} JOBOBJECT_NOTIFICATION_LIMIT_INFORMATION, *PJOBOBJECT_NOTIFICATION_LIMIT_INFORMATION;
typedef struct JOBOBJECT_NOTIFICATION_LIMIT_INFORMATION_2 {
DWORD64 IoReadBytesLimit;
DWORD64 IoWriteBytesLimit;
LARGE_INTEGER PerJobUserTimeLimit;
union {
DWORD64 JobHighMemoryLimit;
DWORD64 JobMemoryLimit;
} DUMMYUNIONNAME;
union {
JOBOBJECT_RATE_CONTROL_TOLERANCE RateControlTolerance;
JOBOBJECT_RATE_CONTROL_TOLERANCE CpuRateControlTolerance;
} DUMMYUNIONNAME2;
union {
JOBOBJECT_RATE_CONTROL_TOLERANCE_INTERVAL RateControlToleranceInterval;
JOBOBJECT_RATE_CONTROL_TOLERANCE_INTERVAL
CpuRateControlToleranceInterval;
} DUMMYUNIONNAME3;
DWORD LimitFlags;
JOBOBJECT_RATE_CONTROL_TOLERANCE IoRateControlTolerance;
DWORD64 JobLowMemoryLimit;
JOBOBJECT_RATE_CONTROL_TOLERANCE_INTERVAL IoRateControlToleranceInterval;
JOBOBJECT_RATE_CONTROL_TOLERANCE NetRateControlTolerance;
JOBOBJECT_RATE_CONTROL_TOLERANCE_INTERVAL NetRateControlToleranceInterval;
} JOBOBJECT_NOTIFICATION_LIMIT_INFORMATION_2;
typedef struct _JOBOBJECT_LIMIT_VIOLATION_INFORMATION {
DWORD LimitFlags;
DWORD ViolationLimitFlags;
DWORD64 IoReadBytes;
DWORD64 IoReadBytesLimit;
DWORD64 IoWriteBytes;
DWORD64 IoWriteBytesLimit;
LARGE_INTEGER PerJobUserTime;
LARGE_INTEGER PerJobUserTimeLimit;
DWORD64 JobMemory;
DWORD64 JobMemoryLimit;
JOBOBJECT_RATE_CONTROL_TOLERANCE RateControlTolerance;
JOBOBJECT_RATE_CONTROL_TOLERANCE RateControlToleranceLimit;
} JOBOBJECT_LIMIT_VIOLATION_INFORMATION, *PJOBOBJECT_LIMIT_VIOLATION_INFORMATION;
typedef struct JOBOBJECT_LIMIT_VIOLATION_INFORMATION_2 {
DWORD LimitFlags;
DWORD ViolationLimitFlags;
DWORD64 IoReadBytes;
DWORD64 IoReadBytesLimit;
DWORD64 IoWriteBytes;
DWORD64 IoWriteBytesLimit;
LARGE_INTEGER PerJobUserTime;
LARGE_INTEGER PerJobUserTimeLimit;
DWORD64 JobMemory;
union {
DWORD64 JobHighMemoryLimit;
DWORD64 JobMemoryLimit;
} DUMMYUNIONNAME;
union {
JOBOBJECT_RATE_CONTROL_TOLERANCE RateControlTolerance;
JOBOBJECT_RATE_CONTROL_TOLERANCE CpuRateControlTolerance;
} DUMMYUNIONNAME2;
union {
JOBOBJECT_RATE_CONTROL_TOLERANCE RateControlToleranceLimit;
JOBOBJECT_RATE_CONTROL_TOLERANCE CpuRateControlToleranceLimit;
} DUMMYUNIONNAME3;
DWORD64 JobLowMemoryLimit;
JOBOBJECT_RATE_CONTROL_TOLERANCE IoRateControlTolerance;
JOBOBJECT_RATE_CONTROL_TOLERANCE IoRateControlToleranceLimit;
JOBOBJECT_RATE_CONTROL_TOLERANCE NetRateControlTolerance;
JOBOBJECT_RATE_CONTROL_TOLERANCE NetRateControlToleranceLimit;
} JOBOBJECT_LIMIT_VIOLATION_INFORMATION_2;
typedef struct _JOBOBJECT_CPU_RATE_CONTROL_INFORMATION {
DWORD ControlFlags;
union {
DWORD CpuRate;
DWORD Weight;
struct {
WORD MinRate;
WORD MaxRate;
} DUMMYSTRUCTNAME;
} DUMMYUNIONNAME;
} JOBOBJECT_CPU_RATE_CONTROL_INFORMATION, *PJOBOBJECT_CPU_RATE_CONTROL_INFORMATION;
//
// Control flags for network rate control.
//
typedef enum JOB_OBJECT_NET_RATE_CONTROL_FLAGS {
JOB_OBJECT_NET_RATE_CONTROL_ENABLE = 0x1,
JOB_OBJECT_NET_RATE_CONTROL_MAX_BANDWIDTH = 0x2,
JOB_OBJECT_NET_RATE_CONTROL_DSCP_TAG = 0x4,
JOB_OBJECT_NET_RATE_CONTROL_VALID_FLAGS = 0x7
} JOB_OBJECT_NET_RATE_CONTROL_FLAGS;
#if !defined(SORTPP_PASS) && !defined(MIDL_PASS) && !defined(RC_INVOKED)
DEFINE_ENUM_FLAG_OPERATORS(JOB_OBJECT_NET_RATE_CONTROL_FLAGS)
C_ASSERT(JOB_OBJECT_NET_RATE_CONTROL_VALID_FLAGS ==
(JOB_OBJECT_NET_RATE_CONTROL_ENABLE +
JOB_OBJECT_NET_RATE_CONTROL_MAX_BANDWIDTH +
JOB_OBJECT_NET_RATE_CONTROL_DSCP_TAG));
#endif
#define JOB_OBJECT_NET_RATE_CONTROL_MAX_DSCP_TAG 64
typedef struct JOBOBJECT_NET_RATE_CONTROL_INFORMATION {
DWORD64 MaxBandwidth;
JOB_OBJECT_NET_RATE_CONTROL_FLAGS ControlFlags;
BYTE DscpTag;
} JOBOBJECT_NET_RATE_CONTROL_INFORMATION;
//
// Control flags for IO rate control.
//
// begin_ntosifs
typedef enum JOB_OBJECT_IO_RATE_CONTROL_FLAGS {
JOB_OBJECT_IO_RATE_CONTROL_ENABLE = 0x1,
JOB_OBJECT_IO_RATE_CONTROL_STANDALONE_VOLUME = 0x2,
JOB_OBJECT_IO_RATE_CONTROL_VALID_FLAGS = JOB_OBJECT_IO_RATE_CONTROL_ENABLE |
JOB_OBJECT_IO_RATE_CONTROL_STANDALONE_VOLUME
} JOB_OBJECT_IO_RATE_CONTROL_FLAGS;
#if !defined(SORTPP_PASS) && !defined(MIDL_PASS) && !defined(RC_INVOKED)
DEFINE_ENUM_FLAG_OPERATORS(JOB_OBJECT_IO_RATE_CONTROL_FLAGS)
#endif
typedef struct JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE {
LONG64 MaxIops;
LONG64 MaxBandwidth;
LONG64 ReservationIops;
PWSTR VolumeName;
DWORD BaseIoSize;
JOB_OBJECT_IO_RATE_CONTROL_FLAGS ControlFlags;
WORD VolumeNameLength;
} JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE;
typedef JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE
JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V1;
typedef struct JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V2 {
LONG64 MaxIops;
LONG64 MaxBandwidth;
LONG64 ReservationIops;
PWSTR VolumeName;
DWORD BaseIoSize;
JOB_OBJECT_IO_RATE_CONTROL_FLAGS ControlFlags;
WORD VolumeNameLength;
LONG64 CriticalReservationIops;
LONG64 ReservationBandwidth;
LONG64 CriticalReservationBandwidth;
LONG64 MaxTimePercent;
LONG64 ReservationTimePercent;
LONG64 CriticalReservationTimePercent;
} JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V2;
typedef struct JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V3 {
LONG64 MaxIops;
LONG64 MaxBandwidth;
LONG64 ReservationIops;
PWSTR VolumeName;
DWORD BaseIoSize;
JOB_OBJECT_IO_RATE_CONTROL_FLAGS ControlFlags;
WORD VolumeNameLength;
LONG64 CriticalReservationIops;
LONG64 ReservationBandwidth;
LONG64 CriticalReservationBandwidth;
LONG64 MaxTimePercent;
LONG64 ReservationTimePercent;
LONG64 CriticalReservationTimePercent;
LONG64 SoftMaxIops;
LONG64 SoftMaxBandwidth;
LONG64 SoftMaxTimePercent;
LONG64 LimitExcessNotifyIops;
LONG64 LimitExcessNotifyBandwidth;
LONG64 LimitExcessNotifyTimePercent;
} JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V3;
// end_ntosifs
typedef enum JOBOBJECT_IO_ATTRIBUTION_CONTROL_FLAGS {
JOBOBJECT_IO_ATTRIBUTION_CONTROL_ENABLE = 0x1,
JOBOBJECT_IO_ATTRIBUTION_CONTROL_DISABLE = 0x2,
JOBOBJECT_IO_ATTRIBUTION_CONTROL_VALID_FLAGS = 0x3
} JOBOBJECT_IO_ATTRIBUTION_CONTROL_FLAGS;
typedef struct _JOBOBJECT_IO_ATTRIBUTION_STATS {
ULONG_PTR IoCount;
ULONGLONG TotalNonOverlappedQueueTime;
ULONGLONG TotalNonOverlappedServiceTime;
ULONGLONG TotalSize;
} JOBOBJECT_IO_ATTRIBUTION_STATS, *PJOBOBJECT_IO_ATTRIBUTION_STATS;
typedef struct _JOBOBJECT_IO_ATTRIBUTION_INFORMATION {
DWORD ControlFlags;
JOBOBJECT_IO_ATTRIBUTION_STATS ReadStats;
JOBOBJECT_IO_ATTRIBUTION_STATS WriteStats;
} JOBOBJECT_IO_ATTRIBUTION_INFORMATION, *PJOBOBJECT_IO_ATTRIBUTION_INFORMATION;
#define JOB_OBJECT_TERMINATE_AT_END_OF_JOB 0
#define JOB_OBJECT_POST_AT_END_OF_JOB 1
//
// Completion Port Messages for job objects
//
// These values are returned via the lpNumberOfBytesTransferred parameter
//
#define JOB_OBJECT_MSG_END_OF_JOB_TIME 1
#define JOB_OBJECT_MSG_END_OF_PROCESS_TIME 2
#define JOB_OBJECT_MSG_ACTIVE_PROCESS_LIMIT 3
#define JOB_OBJECT_MSG_ACTIVE_PROCESS_ZERO 4
#define JOB_OBJECT_MSG_NEW_PROCESS 6
#define JOB_OBJECT_MSG_EXIT_PROCESS 7
#define JOB_OBJECT_MSG_ABNORMAL_EXIT_PROCESS 8
#define JOB_OBJECT_MSG_PROCESS_MEMORY_LIMIT 9
#define JOB_OBJECT_MSG_JOB_MEMORY_LIMIT 10
#define JOB_OBJECT_MSG_NOTIFICATION_LIMIT 11
#define JOB_OBJECT_MSG_JOB_CYCLE_TIME_LIMIT 12
#define JOB_OBJECT_MSG_SILO_TERMINATED 13
//
// Define the valid notification filter values.
//
#define JOB_OBJECT_MSG_MINIMUM 1
#define JOB_OBJECT_MSG_MAXIMUM 13
#define JOB_OBJECT_VALID_COMPLETION_FILTER \
(((1UL << (JOB_OBJECT_MSG_MAXIMUM + 1)) - 1) - \
((1UL << JOB_OBJECT_MSG_MINIMUM) - 1))
//
// Basic Limits
//
#define JOB_OBJECT_LIMIT_WORKINGSET 0x00000001
#define JOB_OBJECT_LIMIT_PROCESS_TIME 0x00000002
#define JOB_OBJECT_LIMIT_JOB_TIME 0x00000004
#define JOB_OBJECT_LIMIT_ACTIVE_PROCESS 0x00000008
#define JOB_OBJECT_LIMIT_AFFINITY 0x00000010
#define JOB_OBJECT_LIMIT_PRIORITY_CLASS 0x00000020
#define JOB_OBJECT_LIMIT_PRESERVE_JOB_TIME 0x00000040
#define JOB_OBJECT_LIMIT_SCHEDULING_CLASS 0x00000080
//
// Extended Limits
//
#define JOB_OBJECT_LIMIT_PROCESS_MEMORY 0x00000100
#define JOB_OBJECT_LIMIT_JOB_MEMORY 0x00000200
#define JOB_OBJECT_LIMIT_JOB_MEMORY_HIGH JOB_OBJECT_LIMIT_JOB_MEMORY
#define JOB_OBJECT_LIMIT_DIE_ON_UNHANDLED_EXCEPTION 0x00000400
#define JOB_OBJECT_LIMIT_BREAKAWAY_OK 0x00000800
#define JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK 0x00001000
#define JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE 0x00002000
#define JOB_OBJECT_LIMIT_SUBSET_AFFINITY 0x00004000
#define JOB_OBJECT_LIMIT_JOB_MEMORY_LOW 0x00008000
//
// Notification Limits
//
#define JOB_OBJECT_LIMIT_JOB_READ_BYTES 0x00010000
#define JOB_OBJECT_LIMIT_JOB_WRITE_BYTES 0x00020000
#define JOB_OBJECT_LIMIT_RATE_CONTROL 0x00040000
#define JOB_OBJECT_LIMIT_CPU_RATE_CONTROL JOB_OBJECT_LIMIT_RATE_CONTROL
#define JOB_OBJECT_LIMIT_IO_RATE_CONTROL 0x00080000
#define JOB_OBJECT_LIMIT_NET_RATE_CONTROL 0x00100000
//
// Valid Job Object Limits
//
#define JOB_OBJECT_LIMIT_VALID_FLAGS 0x0007ffff
#define JOB_OBJECT_BASIC_LIMIT_VALID_FLAGS 0x000000ff
#define JOB_OBJECT_EXTENDED_LIMIT_VALID_FLAGS 0x00007fff
#define JOB_OBJECT_NOTIFICATION_LIMIT_VALID_FLAGS \
(JOB_OBJECT_LIMIT_JOB_READ_BYTES | \
JOB_OBJECT_LIMIT_JOB_WRITE_BYTES | \
JOB_OBJECT_LIMIT_JOB_TIME | \
JOB_OBJECT_LIMIT_JOB_MEMORY_LOW | \
JOB_OBJECT_LIMIT_JOB_MEMORY_HIGH | \
JOB_OBJECT_LIMIT_CPU_RATE_CONTROL | \
JOB_OBJECT_LIMIT_IO_RATE_CONTROL | \
JOB_OBJECT_LIMIT_NET_RATE_CONTROL)
//
// UI restrictions for jobs
//
#define JOB_OBJECT_UILIMIT_NONE 0x00000000
#define JOB_OBJECT_UILIMIT_HANDLES 0x00000001
#define JOB_OBJECT_UILIMIT_READCLIPBOARD 0x00000002
#define JOB_OBJECT_UILIMIT_WRITECLIPBOARD 0x00000004
#define JOB_OBJECT_UILIMIT_SYSTEMPARAMETERS 0x00000008
#define JOB_OBJECT_UILIMIT_DISPLAYSETTINGS 0x00000010
#define JOB_OBJECT_UILIMIT_GLOBALATOMS 0x00000020
#define JOB_OBJECT_UILIMIT_DESKTOP 0x00000040
#define JOB_OBJECT_UILIMIT_EXITWINDOWS 0x00000080
#define JOB_OBJECT_UILIMIT_ALL 0x000000FF
#define JOB_OBJECT_UI_VALID_FLAGS 0x000000FF
#define JOB_OBJECT_SECURITY_NO_ADMIN 0x00000001
#define JOB_OBJECT_SECURITY_RESTRICTED_TOKEN 0x00000002
#define JOB_OBJECT_SECURITY_ONLY_TOKEN 0x00000004
#define JOB_OBJECT_SECURITY_FILTER_TOKENS 0x00000008
#define JOB_OBJECT_SECURITY_VALID_FLAGS 0x0000000f
//
// Control flags for CPU rate control.
//
#define JOB_OBJECT_CPU_RATE_CONTROL_ENABLE 0x1
#define JOB_OBJECT_CPU_RATE_CONTROL_WEIGHT_BASED 0x2
#define JOB_OBJECT_CPU_RATE_CONTROL_HARD_CAP 0x4
#define JOB_OBJECT_CPU_RATE_CONTROL_NOTIFY 0x8
#define JOB_OBJECT_CPU_RATE_CONTROL_MIN_MAX_RATE 0x10
#define JOB_OBJECT_CPU_RATE_CONTROL_VALID_FLAGS 0x1f
typedef enum _JOBOBJECTINFOCLASS {
JobObjectBasicAccountingInformation = 1,
JobObjectBasicLimitInformation,
JobObjectBasicProcessIdList,
JobObjectBasicUIRestrictions,
JobObjectSecurityLimitInformation, // deprecated
JobObjectEndOfJobTimeInformation,
JobObjectAssociateCompletionPortInformation,
JobObjectBasicAndIoAccountingInformation,
JobObjectExtendedLimitInformation,
JobObjectJobSetInformation,
JobObjectGroupInformation,
JobObjectNotificationLimitInformation,
JobObjectLimitViolationInformation,
JobObjectGroupInformationEx,
JobObjectCpuRateControlInformation,
JobObjectCompletionFilter,
JobObjectCompletionCounter,
JobObjectReserved1Information = 18,
JobObjectReserved2Information,
JobObjectReserved3Information,
JobObjectReserved4Information,
JobObjectReserved5Information,
JobObjectReserved6Information,
JobObjectReserved7Information,
JobObjectReserved8Information,
JobObjectReserved9Information,
JobObjectReserved10Information,
JobObjectReserved11Information,
JobObjectReserved12Information,
JobObjectReserved13Information,
JobObjectReserved14Information = 31,
JobObjectNetRateControlInformation,
JobObjectNotificationLimitInformation2,
JobObjectLimitViolationInformation2,
JobObjectCreateSilo,
JobObjectSiloBasicInformation,
JobObjectReserved15Information = 37,
JobObjectReserved16Information,
JobObjectReserved17Information,
JobObjectReserved18Information,
JobObjectReserved19Information = 41,
JobObjectReserved20Information,
MaxJobObjectInfoClass
} JOBOBJECTINFOCLASS;
typedef struct _SILOOBJECT_BASIC_INFORMATION {
DWORD SiloId;
DWORD SiloParentId;
DWORD NumberOfProcesses;
BOOLEAN IsInServerSilo;
BYTE Reserved[3];
} SILOOBJECT_BASIC_INFORMATION, *PSILOOBJECT_BASIC_INFORMATION;
typedef enum _SERVERSILO_STATE {
SERVERSILO_INITING = 0,
SERVERSILO_STARTED,
SERVERSILO_SHUTTING_DOWN,
SERVERSILO_TERMINATING,
SERVERSILO_TERMINATED,
} SERVERSILO_STATE, *PSERVERSILO_STATE;
typedef struct _SERVERSILO_BASIC_INFORMATION {
DWORD ServiceSessionId;
SERVERSILO_STATE State;
DWORD ExitStatus;
} SERVERSILO_BASIC_INFORMATION, *PSERVERSILO_BASIC_INFORMATION;
typedef enum _FIRMWARE_TYPE {
FirmwareTypeUnknown,
FirmwareTypeBios,
FirmwareTypeUefi,
FirmwareTypeMax
} FIRMWARE_TYPE, *PFIRMWARE_TYPE;
#define EVENT_MODIFY_STATE 0x0002
#define EVENT_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x3)
//
// Mutant Specific Access Rights
//
#define MUTANT_QUERY_STATE 0x0001
#define MUTANT_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|\
MUTANT_QUERY_STATE)
#define SEMAPHORE_MODIFY_STATE 0x0002
#define SEMAPHORE_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x3)
//
// Timer Specific Access Rights.
//
#define TIMER_QUERY_STATE 0x0001
#define TIMER_MODIFY_STATE 0x0002
#define TIMER_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|\
TIMER_QUERY_STATE|TIMER_MODIFY_STATE)
// begin_nthal
#define TIME_ZONE_ID_UNKNOWN 0
#define TIME_ZONE_ID_STANDARD 1
#define TIME_ZONE_ID_DAYLIGHT 2
// end_nthal
typedef enum _LOGICAL_PROCESSOR_RELATIONSHIP {
RelationProcessorCore,
RelationNumaNode,
RelationCache,
RelationProcessorPackage,
RelationGroup,
RelationAll = 0xffff
} LOGICAL_PROCESSOR_RELATIONSHIP;
#define LTP_PC_SMT 0x1
typedef enum _PROCESSOR_CACHE_TYPE {
CacheUnified,
CacheInstruction,
CacheData,
CacheTrace
} PROCESSOR_CACHE_TYPE;
#define CACHE_FULLY_ASSOCIATIVE 0xFF
typedef struct _CACHE_DESCRIPTOR {
BYTE Level;
BYTE Associativity;
WORD LineSize;
DWORD Size;
PROCESSOR_CACHE_TYPE Type;
} CACHE_DESCRIPTOR, *PCACHE_DESCRIPTOR;
typedef struct _SYSTEM_LOGICAL_PROCESSOR_INFORMATION {
ULONG_PTR ProcessorMask;
LOGICAL_PROCESSOR_RELATIONSHIP Relationship;
union {
struct {
BYTE Flags;
} ProcessorCore;
struct {
DWORD NodeNumber;
} NumaNode;
CACHE_DESCRIPTOR Cache;
ULONGLONG Reserved[2];
} DUMMYUNIONNAME;
} SYSTEM_LOGICAL_PROCESSOR_INFORMATION, *PSYSTEM_LOGICAL_PROCESSOR_INFORMATION;
typedef struct _PROCESSOR_RELATIONSHIP {
BYTE Flags;
BYTE EfficiencyClass;
BYTE Reserved[20];
WORD GroupCount;
_Field_size_(GroupCount) GROUP_AFFINITY GroupMask[ANYSIZE_ARRAY];
} PROCESSOR_RELATIONSHIP, *PPROCESSOR_RELATIONSHIP;
typedef struct _NUMA_NODE_RELATIONSHIP {
DWORD NodeNumber;
BYTE Reserved[20];
GROUP_AFFINITY GroupMask;
} NUMA_NODE_RELATIONSHIP, *PNUMA_NODE_RELATIONSHIP;
typedef struct _CACHE_RELATIONSHIP {
BYTE Level;
BYTE Associativity;
WORD LineSize;
DWORD CacheSize;
PROCESSOR_CACHE_TYPE Type;
BYTE Reserved[20];
GROUP_AFFINITY GroupMask;
} CACHE_RELATIONSHIP, *PCACHE_RELATIONSHIP;
typedef struct _PROCESSOR_GROUP_INFO {
BYTE MaximumProcessorCount;
BYTE ActiveProcessorCount;
BYTE Reserved[38];
KAFFINITY ActiveProcessorMask;
} PROCESSOR_GROUP_INFO, *PPROCESSOR_GROUP_INFO;
typedef struct _GROUP_RELATIONSHIP {
WORD MaximumGroupCount;
WORD ActiveGroupCount;
BYTE Reserved[20];
PROCESSOR_GROUP_INFO GroupInfo[ANYSIZE_ARRAY];
} GROUP_RELATIONSHIP, *PGROUP_RELATIONSHIP;
_Struct_size_bytes_(Size) struct _SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX {
LOGICAL_PROCESSOR_RELATIONSHIP Relationship;
DWORD Size;
union {
PROCESSOR_RELATIONSHIP Processor;
NUMA_NODE_RELATIONSHIP NumaNode;
CACHE_RELATIONSHIP Cache;
GROUP_RELATIONSHIP Group;
} DUMMYUNIONNAME;
};
typedef struct _SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX, *PSYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX;
typedef enum _CPU_SET_INFORMATION_TYPE {
CpuSetInformation
} CPU_SET_INFORMATION_TYPE, *PCPU_SET_INFORMATION_TYPE;
_Struct_size_bytes_(Size) struct _SYSTEM_CPU_SET_INFORMATION {
DWORD Size;
CPU_SET_INFORMATION_TYPE Type;
union {
struct {
DWORD Id;
WORD Group;
BYTE LogicalProcessorIndex;
BYTE CoreIndex;
BYTE LastLevelCacheIndex;
BYTE NumaNodeIndex;
BYTE EfficiencyClass;
union {
#define SYSTEM_CPU_SET_INFORMATION_PARKED 0x1
#define SYSTEM_CPU_SET_INFORMATION_ALLOCATED 0x2
#define SYSTEM_CPU_SET_INFORMATION_ALLOCATED_TO_TARGET_PROCESS 0x4
#define SYSTEM_CPU_SET_INFORMATION_REALTIME 0x8
BYTE AllFlags;
struct {
BYTE Parked : 1;
BYTE Allocated : 1;
BYTE AllocatedToTargetProcess : 1;
BYTE RealTime : 1;
BYTE ReservedFlags : 4;
} DUMMYSTRUCTNAME;
} DUMMYUNIONNAME2;
DWORD Reserved;
DWORD64 AllocationTag;
} CpuSet;
} DUMMYUNIONNAME;
};
typedef struct _SYSTEM_CPU_SET_INFORMATION SYSTEM_CPU_SET_INFORMATION, *PSYSTEM_CPU_SET_INFORMATION;
// end_wdm end_ntminiport
typedef struct _SYSTEM_PROCESSOR_CYCLE_TIME_INFORMATION {
DWORD64 CycleTime;
} SYSTEM_PROCESSOR_CYCLE_TIME_INFORMATION, *PSYSTEM_PROCESSOR_CYCLE_TIME_INFORMATION;
#define PROCESSOR_INTEL_386 386
#define PROCESSOR_INTEL_486 486
#define PROCESSOR_INTEL_PENTIUM 586
#define PROCESSOR_INTEL_IA64 2200
#define PROCESSOR_AMD_X8664 8664
#define PROCESSOR_MIPS_R4000 4000 // incl R4101 & R3910 for Windows CE
#define PROCESSOR_ALPHA_21064 21064
#define PROCESSOR_PPC_601 601
#define PROCESSOR_PPC_603 603
#define PROCESSOR_PPC_604 604
#define PROCESSOR_PPC_620 620
#define PROCESSOR_HITACHI_SH3 10003 // Windows CE
#define PROCESSOR_HITACHI_SH3E 10004 // Windows CE
#define PROCESSOR_HITACHI_SH4 10005 // Windows CE
#define PROCESSOR_MOTOROLA_821 821 // Windows CE
#define PROCESSOR_SHx_SH3 103 // Windows CE
#define PROCESSOR_SHx_SH4 104 // Windows CE
#define PROCESSOR_STRONGARM 2577 // Windows CE - 0xA11
#define PROCESSOR_ARM720 1824 // Windows CE - 0x720
#define PROCESSOR_ARM820 2080 // Windows CE - 0x820
#define PROCESSOR_ARM920 2336 // Windows CE - 0x920
#define PROCESSOR_ARM_7TDMI 70001 // Windows CE
#define PROCESSOR_OPTIL 0x494f // MSIL
#define PROCESSOR_ARCHITECTURE_INTEL 0
#define PROCESSOR_ARCHITECTURE_MIPS 1
#define PROCESSOR_ARCHITECTURE_ALPHA 2
#define PROCESSOR_ARCHITECTURE_PPC 3
#define PROCESSOR_ARCHITECTURE_SHX 4
#define PROCESSOR_ARCHITECTURE_ARM 5
#define PROCESSOR_ARCHITECTURE_IA64 6
#define PROCESSOR_ARCHITECTURE_ALPHA64 7
#define PROCESSOR_ARCHITECTURE_MSIL 8
#define PROCESSOR_ARCHITECTURE_AMD64 9
#define PROCESSOR_ARCHITECTURE_IA32_ON_WIN64 10
#define PROCESSOR_ARCHITECTURE_NEUTRAL 11
#define PROCESSOR_ARCHITECTURE_ARM64 12
#define PROCESSOR_ARCHITECTURE_ARM32_ON_WIN64 13
#define PROCESSOR_ARCHITECTURE_UNKNOWN 0xFFFF
#define PF_FLOATING_POINT_PRECISION_ERRATA 0
#define PF_FLOATING_POINT_EMULATED 1
#define PF_COMPARE_EXCHANGE_DOUBLE 2
#define PF_MMX_INSTRUCTIONS_AVAILABLE 3
#define PF_PPC_MOVEMEM_64BIT_OK 4
#define PF_ALPHA_BYTE_INSTRUCTIONS 5
#define PF_XMMI_INSTRUCTIONS_AVAILABLE 6
#define PF_3DNOW_INSTRUCTIONS_AVAILABLE 7
#define PF_RDTSC_INSTRUCTION_AVAILABLE 8
#define PF_PAE_ENABLED 9
#define PF_XMMI64_INSTRUCTIONS_AVAILABLE 10
#define PF_SSE_DAZ_MODE_AVAILABLE 11
#define PF_NX_ENABLED 12
#define PF_SSE3_INSTRUCTIONS_AVAILABLE 13
#define PF_COMPARE_EXCHANGE128 14
#define PF_COMPARE64_EXCHANGE128 15
#define PF_CHANNELS_ENABLED 16
#define PF_XSAVE_ENABLED 17
#define PF_ARM_VFP_32_REGISTERS_AVAILABLE 18
#define PF_ARM_NEON_INSTRUCTIONS_AVAILABLE 19
#define PF_SECOND_LEVEL_ADDRESS_TRANSLATION 20
#define PF_VIRT_FIRMWARE_ENABLED 21
#define PF_RDWRFSGSBASE_AVAILABLE 22
#define PF_FASTFAIL_AVAILABLE 23
#define PF_ARM_DIVIDE_INSTRUCTION_AVAILABLE 24
#define PF_ARM_64BIT_LOADSTORE_ATOMIC 25
#define PF_ARM_EXTERNAL_CACHE_AVAILABLE 26
#define PF_ARM_FMAC_INSTRUCTIONS_AVAILABLE 27
#define PF_RDRAND_INSTRUCTION_AVAILABLE 28
#define PF_ARM_V8_INSTRUCTIONS_AVAILABLE 29
#define PF_ARM_V8_CRYPTO_INSTRUCTIONS_AVAILABLE 30
#define PF_ARM_V8_CRC32_INSTRUCTIONS_AVAILABLE 31
#define PF_RDTSCP_INSTRUCTION_AVAILABLE 32
//
// Known extended CPU state feature BITs
//
// 0 x87
// 1 SSE
// 2 AVX
// 3 BNDREGS (B0.LB-B3.LB B0.UB-B3.UB)
// 4 BNDCSR (BNDCFGU + BNDSTATUS) Persistent
// 5 KMASK (KMASK [63:0][0-7])
// 6 ZMM_H (ZMM_H[511:256][0-15])
// 7 ZMM (ZMM[511:0][16-31])
// 8 IPT Supervisor
//
// 62 LWP Persistent
//
// 63 RZ0 Reserved
//
#define XSTATE_LEGACY_FLOATING_POINT (0)
#define XSTATE_LEGACY_SSE (1)
#define XSTATE_GSSE (2)
#define XSTATE_AVX (XSTATE_GSSE)
#define XSTATE_MPX_BNDREGS (3)
#define XSTATE_MPX_BNDCSR (4)
#define XSTATE_AVX512_KMASK (5)
#define XSTATE_AVX512_ZMM_H (6)
#define XSTATE_AVX512_ZMM (7)
#define XSTATE_IPT (8)
#define XSTATE_LWP (62)
#define MAXIMUM_XSTATE_FEATURES (64)
//
// Known extended CPU state feature MASKs
//
#define XSTATE_MASK_LEGACY_FLOATING_POINT (1ui64 << (XSTATE_LEGACY_FLOATING_POINT))
#define XSTATE_MASK_LEGACY_SSE (1ui64 << (XSTATE_LEGACY_SSE))
#define XSTATE_MASK_LEGACY (XSTATE_MASK_LEGACY_FLOATING_POINT | \
XSTATE_MASK_LEGACY_SSE)
#define XSTATE_MASK_GSSE (1ui64 << (XSTATE_GSSE))
#define XSTATE_MASK_AVX (XSTATE_MASK_GSSE)
#define XSTATE_MASK_MPX ((1ui64 << (XSTATE_MPX_BNDREGS)) | \
(1ui64 << (XSTATE_MPX_BNDCSR)))
#define XSTATE_MASK_AVX512 ((1ui64 << (XSTATE_AVX512_KMASK)) | \
(1ui64 << (XSTATE_AVX512_ZMM_H)) | \
(1ui64 << (XSTATE_AVX512_ZMM)))
#define XSTATE_MASK_IPT (1ui64 << (XSTATE_IPT))
#define XSTATE_MASK_LWP (1ui64 << (XSTATE_LWP))
#define XSTATE_MASK_ALLOWED (XSTATE_MASK_LEGACY | \
XSTATE_MASK_AVX | \
XSTATE_MASK_MPX | \
XSTATE_MASK_AVX512 | \
XSTATE_MASK_IPT | \
XSTATE_MASK_LWP)
#define XSTATE_MASK_PERSISTENT ((1ui64 << (XSTATE_MPX_BNDCSR)) | \
XSTATE_MASK_LWP)
//
// Flags associated with compaction mask
//
#define XSTATE_COMPACTION_ENABLE (63)
#define XSTATE_COMPACTION_ENABLE_MASK (1ui64 << (XSTATE_COMPACTION_ENABLE))
#define XSTATE_ALIGN_BIT (1)
#define XSTATE_ALIGN_MASK (1ui64 << (XSTATE_ALIGN_BIT))
#define XSTATE_CONTROLFLAG_XSAVEOPT_MASK (1)
#define XSTATE_CONTROLFLAG_XSAVEC_MASK (2)
#define XSTATE_CONTROLFLAG_VALID_MASK (XSTATE_CONTROLFLAG_XSAVEOPT_MASK | \
XSTATE_CONTROLFLAG_XSAVEC_MASK)
//
// Extended processor state configuration
//
typedef struct _XSTATE_FEATURE {
DWORD Offset;
DWORD Size;
} XSTATE_FEATURE, *PXSTATE_FEATURE;
typedef struct _XSTATE_CONFIGURATION {
// Mask of all enabled features
DWORD64 EnabledFeatures;
// Mask of volatile enabled features
DWORD64 EnabledVolatileFeatures;
// Total size of the save area for user states
DWORD Size;
// Control Flags
union {
DWORD ControlFlags;
struct
{
DWORD OptimizedSave : 1;
DWORD CompactionEnabled : 1;
};
};
// List of features
XSTATE_FEATURE Features[MAXIMUM_XSTATE_FEATURES];
// Mask of all supervisor features
DWORD64 EnabledSupervisorFeatures;
// Mask of features that require start address to be 64 byte aligned
DWORD64 AlignedFeatures;
// Total size of the save area for user and supervisor states
DWORD AllFeatureSize;
// List which holds size of each user and supervisor state supported by CPU
DWORD AllFeatures[MAXIMUM_XSTATE_FEATURES];
} XSTATE_CONFIGURATION, *PXSTATE_CONFIGURATION;
// begin_ntifs
typedef struct _MEMORY_BASIC_INFORMATION {
PVOID BaseAddress;
PVOID AllocationBase;
DWORD AllocationProtect;
SIZE_T RegionSize;
DWORD State;
DWORD Protect;
DWORD Type;
} MEMORY_BASIC_INFORMATION, *PMEMORY_BASIC_INFORMATION;
// end_ntifs
typedef struct _MEMORY_BASIC_INFORMATION32 {
DWORD BaseAddress;
DWORD AllocationBase;
DWORD AllocationProtect;
DWORD RegionSize;
DWORD State;
DWORD Protect;
DWORD Type;
} MEMORY_BASIC_INFORMATION32, *PMEMORY_BASIC_INFORMATION32;
typedef struct DECLSPEC_ALIGN(16) _MEMORY_BASIC_INFORMATION64 {
ULONGLONG BaseAddress;
ULONGLONG AllocationBase;
DWORD AllocationProtect;
DWORD __alignment1;
ULONGLONG RegionSize;
DWORD State;
DWORD Protect;
DWORD Type;
DWORD __alignment2;
} MEMORY_BASIC_INFORMATION64, *PMEMORY_BASIC_INFORMATION64;
//
// Define flags for setting process CFG valid call target entries.
//
//
// Call target should be made valid. If not set, the call target is made
// invalid. Input flag.
//
#define CFG_CALL_TARGET_VALID (0x00000001)
//
// Call target has been successfully processed. Used to report to the caller
// how much progress has been made. Output flag.
//
#define CFG_CALL_TARGET_PROCESSED (0x00000002)
typedef struct _CFG_CALL_TARGET_INFO {
ULONG_PTR Offset;
ULONG_PTR Flags;
} CFG_CALL_TARGET_INFO, *PCFG_CALL_TARGET_INFO;
#define SECTION_QUERY 0x0001
#define SECTION_MAP_WRITE 0x0002
#define SECTION_MAP_READ 0x0004
#define SECTION_MAP_EXECUTE 0x0008
#define SECTION_EXTEND_SIZE 0x0010
#define SECTION_MAP_EXECUTE_EXPLICIT 0x0020 // not included in SECTION_ALL_ACCESS
#define SECTION_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SECTION_QUERY|\
SECTION_MAP_WRITE | \
SECTION_MAP_READ | \
SECTION_MAP_EXECUTE | \
SECTION_EXTEND_SIZE)
//
// Session Specific Access Rights.
//
#define SESSION_QUERY_ACCESS 0x0001
#define SESSION_MODIFY_ACCESS 0x0002
#define SESSION_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED | \
SESSION_QUERY_ACCESS | \
SESSION_MODIFY_ACCESS)
//
// Partition Specific Access Rights.
//
#define MEMORY_PARTITION_QUERY_ACCESS 0x0001
#define MEMORY_PARTITION_MODIFY_ACCESS 0x0002
#define MEMORY_PARTITION_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED | \
SYNCHRONIZE | \
MEMORY_PARTITION_QUERY_ACCESS | \
MEMORY_PARTITION_MODIFY_ACCESS)
// end_access
#define PAGE_NOACCESS 0x01
#define PAGE_READONLY 0x02
#define PAGE_READWRITE 0x04
#define PAGE_WRITECOPY 0x08
#define PAGE_EXECUTE 0x10
#define PAGE_EXECUTE_READ 0x20
#define PAGE_EXECUTE_READWRITE 0x40
#define PAGE_EXECUTE_WRITECOPY 0x80
#define PAGE_GUARD 0x100
#define PAGE_NOCACHE 0x200
#define PAGE_WRITECOMBINE 0x400
#define PAGE_REVERT_TO_FILE_MAP 0x80000000
#define PAGE_ENCLAVE_THREAD_CONTROL 0x80000000
#define PAGE_TARGETS_NO_UPDATE 0x40000000
#define PAGE_TARGETS_INVALID 0x40000000
#define PAGE_ENCLAVE_UNVALIDATED 0x20000000
#define MEM_COMMIT 0x00001000
#define MEM_RESERVE 0x00002000
#define MEM_DECOMMIT 0x00004000
#define MEM_RELEASE 0x00008000
#define MEM_FREE 0x00010000
#define MEM_PRIVATE 0x00020000
#define MEM_MAPPED 0x00040000
#define MEM_RESET 0x00080000
#define MEM_TOP_DOWN 0x00100000
#define MEM_WRITE_WATCH 0x00200000
#define MEM_PHYSICAL 0x00400000
#define MEM_ROTATE 0x00800000
#define MEM_DIFFERENT_IMAGE_BASE_OK 0x00800000
#define MEM_RESET_UNDO 0x01000000
#define MEM_LARGE_PAGES 0x20000000
#define MEM_4MB_PAGES 0x80000000
#define MEM_64K_PAGES (MEM_LARGE_PAGES | MEM_PHYSICAL)
#define SEC_64K_PAGES 0x00080000
#define SEC_FILE 0x00800000
#define SEC_IMAGE 0x01000000
#define SEC_PROTECTED_IMAGE 0x02000000
#define SEC_RESERVE 0x04000000
#define SEC_COMMIT 0x08000000
#define SEC_NOCACHE 0x10000000
#define SEC_WRITECOMBINE 0x40000000
#define SEC_LARGE_PAGES 0x80000000
#define SEC_IMAGE_NO_EXECUTE (SEC_IMAGE | SEC_NOCACHE)
#define MEM_IMAGE SEC_IMAGE
#define WRITE_WATCH_FLAG_RESET 0x01
#define MEM_UNMAP_WITH_TRANSIENT_BOOST 0x01
#define ENCLAVE_TYPE_SGX 0x00000001
typedef struct _ENCLAVE_CREATE_INFO_SGX {
BYTE Secs[4096];
} ENCLAVE_CREATE_INFO_SGX, *PENCLAVE_CREATE_INFO_SGX;
typedef struct _ENCLAVE_INIT_INFO_SGX {
BYTE SigStruct[1808];
BYTE Reserved1[240];
BYTE EInitToken[304];
BYTE Reserved2[1744];
} ENCLAVE_INIT_INFO_SGX, *PENCLAVE_INIT_INFO_SGX;
// begin_access
//
// Define access rights to files and directories
//
//
// The FILE_READ_DATA and FILE_WRITE_DATA constants are also defined in
// devioctl.h as FILE_READ_ACCESS and FILE_WRITE_ACCESS. The values for these
// constants *MUST* always be in sync.
// The values are redefined in devioctl.h because they must be available to
// both DOS and NT.
//
#define FILE_READ_DATA ( 0x0001 ) // file & pipe
#define FILE_LIST_DIRECTORY ( 0x0001 ) // directory
#define FILE_WRITE_DATA ( 0x0002 ) // file & pipe
#define FILE_ADD_FILE ( 0x0002 ) // directory
#define FILE_APPEND_DATA ( 0x0004 ) // file
#define FILE_ADD_SUBDIRECTORY ( 0x0004 ) // directory
#define FILE_CREATE_PIPE_INSTANCE ( 0x0004 ) // named pipe
#define FILE_READ_EA ( 0x0008 ) // file & directory
#define FILE_WRITE_EA ( 0x0010 ) // file & directory
#define FILE_EXECUTE ( 0x0020 ) // file
#define FILE_TRAVERSE ( 0x0020 ) // directory
#define FILE_DELETE_CHILD ( 0x0040 ) // directory
#define FILE_READ_ATTRIBUTES ( 0x0080 ) // all
#define FILE_WRITE_ATTRIBUTES ( 0x0100 ) // all
#define FILE_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED | SYNCHRONIZE | 0x1FF)
#define FILE_GENERIC_READ (STANDARD_RIGHTS_READ |\
FILE_READ_DATA |\
FILE_READ_ATTRIBUTES |\
FILE_READ_EA |\
SYNCHRONIZE)
#define FILE_GENERIC_WRITE (STANDARD_RIGHTS_WRITE |\
FILE_WRITE_DATA |\
FILE_WRITE_ATTRIBUTES |\
FILE_WRITE_EA |\
FILE_APPEND_DATA |\
SYNCHRONIZE)
#define FILE_GENERIC_EXECUTE (STANDARD_RIGHTS_EXECUTE |\
FILE_READ_ATTRIBUTES |\
FILE_EXECUTE |\
SYNCHRONIZE)
// end_access
#define FILE_SHARE_READ 0x00000001
#define FILE_SHARE_WRITE 0x00000002
#define FILE_SHARE_DELETE 0x00000004
#define FILE_ATTRIBUTE_READONLY 0x00000001
#define FILE_ATTRIBUTE_HIDDEN 0x00000002
#define FILE_ATTRIBUTE_SYSTEM 0x00000004
#define FILE_ATTRIBUTE_DIRECTORY 0x00000010
#define FILE_ATTRIBUTE_ARCHIVE 0x00000020
#define FILE_ATTRIBUTE_DEVICE 0x00000040
#define FILE_ATTRIBUTE_NORMAL 0x00000080
#define FILE_ATTRIBUTE_TEMPORARY 0x00000100
#define FILE_ATTRIBUTE_SPARSE_FILE 0x00000200
#define FILE_ATTRIBUTE_REPARSE_POINT 0x00000400
#define FILE_ATTRIBUTE_COMPRESSED 0x00000800
#define FILE_ATTRIBUTE_OFFLINE 0x00001000
#define FILE_ATTRIBUTE_NOT_CONTENT_INDEXED 0x00002000
#define FILE_ATTRIBUTE_ENCRYPTED 0x00004000
#define FILE_ATTRIBUTE_INTEGRITY_STREAM 0x00008000
#define FILE_ATTRIBUTE_VIRTUAL 0x00010000
#define FILE_ATTRIBUTE_NO_SCRUB_DATA 0x00020000
#define FILE_ATTRIBUTE_EA 0x00040000
#define FILE_NOTIFY_CHANGE_FILE_NAME 0x00000001
#define FILE_NOTIFY_CHANGE_DIR_NAME 0x00000002
#define FILE_NOTIFY_CHANGE_ATTRIBUTES 0x00000004
#define FILE_NOTIFY_CHANGE_SIZE 0x00000008
#define FILE_NOTIFY_CHANGE_LAST_WRITE 0x00000010
#define FILE_NOTIFY_CHANGE_LAST_ACCESS 0x00000020
#define FILE_NOTIFY_CHANGE_CREATION 0x00000040
#define FILE_NOTIFY_CHANGE_SECURITY 0x00000100
#define FILE_ACTION_ADDED 0x00000001
#define FILE_ACTION_REMOVED 0x00000002
#define FILE_ACTION_MODIFIED 0x00000003
#define FILE_ACTION_RENAMED_OLD_NAME 0x00000004
#define FILE_ACTION_RENAMED_NEW_NAME 0x00000005
#define MAILSLOT_NO_MESSAGE ((DWORD)-1)
#define MAILSLOT_WAIT_FOREVER ((DWORD)-1)
#define FILE_CASE_SENSITIVE_SEARCH 0x00000001
#define FILE_CASE_PRESERVED_NAMES 0x00000002
#define FILE_UNICODE_ON_DISK 0x00000004
#define FILE_PERSISTENT_ACLS 0x00000008
#define FILE_FILE_COMPRESSION 0x00000010
#define FILE_VOLUME_QUOTAS 0x00000020
#define FILE_SUPPORTS_SPARSE_FILES 0x00000040
#define FILE_SUPPORTS_REPARSE_POINTS 0x00000080
#define FILE_SUPPORTS_REMOTE_STORAGE 0x00000100
#define FILE_VOLUME_IS_COMPRESSED 0x00008000
#define FILE_SUPPORTS_OBJECT_IDS 0x00010000
#define FILE_SUPPORTS_ENCRYPTION 0x00020000
#define FILE_NAMED_STREAMS 0x00040000
#define FILE_READ_ONLY_VOLUME 0x00080000
#define FILE_SEQUENTIAL_WRITE_ONCE 0x00100000
#define FILE_SUPPORTS_TRANSACTIONS 0x00200000
#define FILE_SUPPORTS_HARD_LINKS 0x00400000
#define FILE_SUPPORTS_EXTENDED_ATTRIBUTES 0x00800000
#define FILE_SUPPORTS_OPEN_BY_FILE_ID 0x01000000
#define FILE_SUPPORTS_USN_JOURNAL 0x02000000
#define FILE_SUPPORTS_INTEGRITY_STREAMS 0x04000000
#define FILE_SUPPORTS_BLOCK_REFCOUNTING 0x08000000
#define FILE_SUPPORTS_SPARSE_VDL 0x10000000
#define FILE_DAX_VOLUME 0x20000000
#define FILE_SUPPORTS_GHOSTING 0x40000000
#define FILE_INVALID_FILE_ID ((LONGLONG)-1LL)
typedef struct _FILE_ID_128 {
BYTE Identifier[16];
} FILE_ID_128, *PFILE_ID_128;
//
// Define the file notification information structure
//
typedef struct _FILE_NOTIFY_INFORMATION {
DWORD NextEntryOffset;
DWORD Action;
DWORD FileNameLength;
WCHAR FileName[1];
} FILE_NOTIFY_INFORMATION, *PFILE_NOTIFY_INFORMATION;
//
// Define segement buffer structure for scatter/gather read/write.
//
typedef union _FILE_SEGMENT_ELEMENT {
PVOID64 Buffer;
ULONGLONG Alignment;
}FILE_SEGMENT_ELEMENT, *PFILE_SEGMENT_ELEMENT;
#if (NTDDI_VERSION >= NTDDI_WIN8)
//
// Flag defintions for NtFlushBuffersFileEx
//
// If none of the below flags are specified the following will occur for a
// given file handle:
// - Write any modified data for the given file from the Windows in-memory
// cache.
// - Commit all pending metadata changes for the given file from the
// Windows in-memory cache.
// - Send a SYNC command to the underlying storage device to commit all
// written data in the devices cache to persistent storage.
//
// If a volume handle is specified:
// - Write all modified data for all files on the volume from the Windows
// in-memory cache.
// - Commit all pending metadata changes for all files on the volume from
// the Windows in-memory cache.
// - Send a SYNC command to the underlying storage device to commit all
// written data in the devices cache to persistent storage.
//
// This is equivalent to how NtFlushBuffersFile has always worked.
//
//
// If set, this operation will write the data for the given file from the
// Windows in-memory cache. This will NOT commit any associated metadata
// changes. This will NOT send a SYNC to the storage device to flush its
// cache. Not supported on volume handles. Only supported by the NTFS
// filesystem.
//
#define FLUSH_FLAGS_FILE_DATA_ONLY 0x00000001
//
// If set, this operation will commit both the data and metadata changes for
// the given file from the Windows in-memory cache. This will NOT send a SYNC
// to the storage device to flush its cache. Not supported on volume handles.
// Only supported by the NTFS filesystem.
//
#define FLUSH_FLAGS_NO_SYNC 0x00000002
#endif // (NTDDI_VERSION >= NTDDI_WIN8)
#if (NTDDI_VERSION >= NTDDI_WIN10_RS1)
//
// If set, this operation will write the data for the given file from the
// Windows in-memory cache. It will also try to skip updating the timestamp
// as much as possible. This will send a SYNC to the storage device to flush its
// cache. Not supported on volume or directory handles. Only supported by the NTFS
// filesystem.
//
#define FLUSH_FLAGS_FILE_DATA_SYNC_ONLY 0x00000004
#endif // (NTDDI_VERSION >= NTDDI_WIN10_RS1)
//
// The reparse GUID structure is used by all 3rd party layered drivers to
// store data in a reparse point. For non-Microsoft tags, The GUID field
// cannot be GUID_NULL.
// The constraints on reparse tags are defined below.
// Microsoft tags can also be used with this format of the reparse point buffer.
//
typedef struct _REPARSE_GUID_DATA_BUFFER {
DWORD ReparseTag;
WORD ReparseDataLength;
WORD Reserved;
GUID ReparseGuid;
struct {
BYTE DataBuffer[1];
} GenericReparseBuffer;
} REPARSE_GUID_DATA_BUFFER, *PREPARSE_GUID_DATA_BUFFER;
#define REPARSE_GUID_DATA_BUFFER_HEADER_SIZE UFIELD_OFFSET(REPARSE_GUID_DATA_BUFFER, GenericReparseBuffer)
//
// Maximum allowed size of the reparse data.
//
#define MAXIMUM_REPARSE_DATA_BUFFER_SIZE ( 16 * 1024 )
//
// Predefined reparse tags.
// These tags need to avoid conflicting with IO_REMOUNT defined in ntos\inc\io.h
//
#define IO_REPARSE_TAG_RESERVED_ZERO (0)
#define IO_REPARSE_TAG_RESERVED_ONE (1)
#define IO_REPARSE_TAG_RESERVED_TWO (2)
//
// The value of the following constant needs to satisfy the following conditions:
// (1) Be at least as large as the largest of the reserved tags.
// (2) Be strictly smaller than all the tags in use.
//
#define IO_REPARSE_TAG_RESERVED_RANGE IO_REPARSE_TAG_RESERVED_TWO
//
// The reparse tags are a DWORD. The 32 bits are laid out as follows:
//
// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
// +-+-+-+-+-----------------------+-------------------------------+
// |M|R|N|D| Reserved bits | Reparse Tag Value |
// +-+-+-+-+-----------------------+-------------------------------+
//
// M is the Microsoft bit. When set to 1, it denotes a tag owned by Microsoft.
// All ISVs must use a tag with a 0 in this position.
// Note: If a Microsoft tag is used by non-Microsoft software, the
// behavior is not defined.
//
// R is reserved. Must be zero for non-Microsoft tags.
//
// N is name surrogate. When set to 1, the file represents another named
// entity in the system.
//
// D is the directory bit. When set to 1, indicates that any directory
// with this reparse tag can have children. Has no special meaning when used
// on a non-directory file. Not compatible with the name surrogate bit.
//
// The M and N bits are OR-able.
// The following macros check for the M and N bit values:
//
//
// Macro to determine whether a reparse point tag corresponds to a tag
// owned by Microsoft.
//
#define IsReparseTagMicrosoft(_tag) ( \
((_tag) & 0x80000000) \
)
//
// Macro to determine whether a reparse point tag is a name surrogate
//
#define IsReparseTagNameSurrogate(_tag) ( \
((_tag) & 0x20000000) \
)
//
// Macro to determine whether a directory with this reparse point can have
// children.
//
#define IsReparseTagDirectory(_tag) ( \
((_tag) & 0x10000000) \
)
#define IO_REPARSE_TAG_MOUNT_POINT (0xA0000003L)
#define IO_REPARSE_TAG_HSM (0xC0000004L)
#define IO_REPARSE_TAG_HSM2 (0x80000006L)
#define IO_REPARSE_TAG_SIS (0x80000007L)
#define IO_REPARSE_TAG_WIM (0x80000008L)
#define IO_REPARSE_TAG_CSV (0x80000009L)
#define IO_REPARSE_TAG_DFS (0x8000000AL)
#define IO_REPARSE_TAG_SYMLINK (0xA000000CL)
#define IO_REPARSE_TAG_DFSR (0x80000012L)
#define IO_REPARSE_TAG_DEDUP (0x80000013L)
#define IO_REPARSE_TAG_NFS (0x80000014L)
#define IO_REPARSE_TAG_FILE_PLACEHOLDER (0x80000015L)
#define IO_REPARSE_TAG_WOF (0x80000017L)
#define IO_REPARSE_TAG_WCI (0x80000018L)
#define IO_REPARSE_TAG_GLOBAL_REPARSE (0x80000019L)
#define IO_REPARSE_TAG_CLOUD (0x9000001AL)
#define IO_REPARSE_TAG_APPEXECLINK (0x8000001BL)
#define IO_REPARSE_TAG_GVFS (0x9000001CL)
#if (_WIN32_WINNT >= _WIN32_WINNT_WIN8)
//======================= FSCTL_SCRUB_DATA =============================
#define SCRUB_DATA_INPUT_FLAG_RESUME 0x00000001
#define SCRUB_DATA_INPUT_FLAG_SKIP_IN_SYNC 0x00000002
#define SCRUB_DATA_INPUT_FLAG_SKIP_NON_INTEGRITY_DATA 0x00000004
#define SCRUB_DATA_OUTPUT_FLAG_INCOMPLETE 0x00000001
#define SCRUB_DATA_OUTPUT_FLAG_NON_USER_DATA_RANGE 0x00010000
#if (_WIN32_WINNT >= _WIN32_WINNT_WINBLUE)
#define SCRUB_DATA_OUTPUT_FLAG_PARITY_EXTENT_DATA_RETURNED 0x00020000
#define SCRUB_DATA_OUTPUT_FLAG_RESUME_CONTEXT_LENGTH_SPECIFIED 0x00040000
#endif /* _WIN32_WINNT >= _WIN32_WINNT_WINBLUE */
typedef struct _SCRUB_DATA_INPUT {
//
// sizeof(SCRUB_DATA_INPUT)
//
DWORD Size;
//
// Zero for the initial call.
//
// SCRUB_DATA_INPUT_FLAG_RESUME has to be specified when
// ResumeContext is provided from the previous call
//
DWORD Flags;
//
// Maximum number of IOs in a single call. This is a hint to a
// file system to halt the operation with a restart context if the
// operation takes too long.
//
DWORD MaximumIos;
//
// Reserved
//
DWORD Reserved[17];
//
// Opaque data returned from the previous call to restart the
// operation. Only valid when SCRUB_DATA_FLAG_RESUME is set
// at Flags field.
//
BYTE ResumeContext[816];
} SCRUB_DATA_INPUT, *PSCRUB_DATA_INPUT;
#if (_WIN32_WINNT >= _WIN32_WINNT_WINBLUE)
typedef struct _SCRUB_PARITY_EXTENT {
LONGLONG Offset;
ULONGLONG Length;
} SCRUB_PARITY_EXTENT, *PSCRUB_PARITY_EXTENT;
typedef struct _SCRUB_PARITY_EXTENT_DATA {
//
// sizeof(SCRUB_PARITY_EXTENT_DATA)
//
WORD Size;
//
// Reserved
//
WORD Flags;
//
// Number of parity extents
//
WORD NumberOfParityExtents;
//
// Maximum number of parity extents in ParityExtents buffer
//
WORD MaximumNumberOfParityExtents;
//
// Output buffer for parity extents
//
SCRUB_PARITY_EXTENT ParityExtents[ANYSIZE_ARRAY];
} SCRUB_PARITY_EXTENT_DATA, *PSCRUB_PARITY_EXTENT_DATA;
#endif /* (_WIN32_WINNT >= _WIN32_WINNT_WINBLUE) */
typedef struct _SCRUB_DATA_OUTPUT {
//
// sizeof(SCRUB_DATA_OUTPUT)
//
DWORD Size;
//
// Output Flags
//
// SCRUB_DATA_OUTPUT_FLAG_INCOMPLETE will be set if there are
// remaining ranges. ResumeContext provided for the subsequent
// call.
//
DWORD Flags;
//
// Operational status
//
DWORD Status;
//
// Offset of the error range of the user data where the operational errors were found.
// This value may be -1 if the error were found in non-user data area
//
ULONGLONG ErrorFileOffset;
//
// Length of the error range of the user data where the operational errors were found.
// This value may be 0 if the error were found in non-user data area
//
ULONGLONG ErrorLength;
//
// Number of bytes successfully repaired in the operational error range
//
ULONGLONG NumberOfBytesRepaired;
//
// Number of bytes failed due to an error in the operational error range
//
ULONGLONG NumberOfBytesFailed;
//
// Reference number for the file system specific internal file
//
ULONGLONG InternalFileReference;
#if (_WIN32_WINNT >= _WIN32_WINNT_WINBLUE)
//
// Resume context length
//
// Only valid if SCRUB_DATA_OUTPUT_FLAG_RESUME_CONTEXT_LENGTH_SPECIFIED
// is specified in the Flags.
//
WORD ResumeContextLength;
//
// Offset for the parity extent data in the output buffer
// Only valid if SCRUB_DATA_OUTPUT_FLAG_PARITY_EXTENT_DATA_RETURNED
// is specified in the Flags.
//
WORD ParityExtentDataOffset;
//
// Reserved
//
DWORD Reserved[5];
#else /* (_WIN32_WINNT >= _WIN32_WINNT_WINBLUE) */
//
// Reserved
//
DWORD Reserved[6];
#endif /* (_WIN32_WINNT >= _WIN32_WINNT_WINBLUE) */
//
// Opaque data that the file system returns to the user so that
// subsequent call can use this data to resume from the previous
// point for the operation.
//
// Resume operation can be requested on a different handle and
// across the reboot. However, file system may not honor the
// resume context if not feasible and start from the beginning.
//
// This field is only valid when SCRUB_DATA_OUTPUT_FLAG_INCOMPLETE
// is set.
//
BYTE ResumeContext[816];
} SCRUB_DATA_OUTPUT, *PSCRUB_DATA_OUTPUT;
#endif /*_WIN32_WINNT >= _WIN32_WINNT_WIN8 */
#if (_WIN32_WINNT >= _WIN32_WINNT_WINBLUE)
//
//=============== FSCTL_QUERY_SHARED_VIRTUAL_DISK_SUPPORT ====================
//
//
// Whether the file system supports shared virtual disks.
//
typedef enum _SharedVirtualDiskSupportType
{
//
// Shared virtual disks are not supported.
//
SharedVirtualDisksUnsupported = 0,
//
// Shared virtual disks are supported.
//
SharedVirtualDisksSupported = 1,
//
// The target device supports taking virtual disk
// snapshots.
//
SharedVirtualDiskSnapshotsSupported = 3,
//
// The target device supports Continuous Data
// Protection (log based) snapshots.
//
SharedVirtualDiskCDPSnapshotsSupported = 7
} SharedVirtualDiskSupportType;
typedef enum _SharedVirtualDiskHandleState
{
//
// The file handle is not related to a shared virtual disk.
//
SharedVirtualDiskHandleStateNone = 0,
//
// This handle is for the same file where at least one handle is
// accessing the file in shared mode.
//
SharedVirtualDiskHandleStateFileShared = 1,
//
// This handle is currently being used to access a shared
// virtual disk.
//
SharedVirtualDiskHandleStateHandleShared = 3
} SharedVirtualDiskHandleState;
//
// Response to FSCTL_QUERY_SHARED_VIRTUAL_DISK_SUPPORT that indicates the level
// of support for shared virtual disks on the target file system.
//
typedef struct _SHARED_VIRTUAL_DISK_SUPPORT {
//
// One or more of the above SharedVirtualDiskSupportType flags that indicate the
// level of shared virtual disk support on this file system.
//
SharedVirtualDiskSupportType SharedVirtualDiskSupport;
//
// The state of the current shared virtual disk handle. This is one or more of the
// above SharedVirtualDiskHandleState flags.
//
SharedVirtualDiskHandleState HandleState;
} SHARED_VIRTUAL_DISK_SUPPORT, *PSHARED_VIRTUAL_DISK_SUPPORT;
//
// Determines if the provided virtual disk handle state, from FSCTL_QUERY_SHARED_VIRTUAL_DISK_SUPPORT,
// indicates that the target virtual disk file is opened in shared mode.
//
#define IsVirtualDiskFileShared(HandleState) (((HandleState) & SharedVirtualDiskHandleStateFileShared) != 0)
#endif // (_WIN32_WINNT >= _WIN32_WINNT_WINBLUE)
// begin_access
//
// I/O Completion Specific Access Rights.
//
#define IO_COMPLETION_MODIFY_STATE 0x0002
#define IO_COMPLETION_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x3)
#define IO_QOS_MAX_RESERVATION 1000000000ULL
//
// Some applications include both ntioapi_x.h and winioctl.h
//
#ifndef SMB_CCF_APP_INSTANCE_EA_NAME
#define SMB_CCF_APP_INSTANCE_EA_NAME "ClusteredApplicationInstance"
#endif //SMB_CCF_APP_INSTANCE_EA_NAME
#ifndef _NETWORK_APP_INSTANCE_EA_DEFINED
#define _NETWORK_APP_INSTANCE_EA_DEFINED
#if (NTDDI_VERSION >= NTDDI_WIN10)
//
// Define the SMB Cluster Client Failover AppInstance Extended Attribute name
// newer version of input payload assumes that EA is not just a GUID,
// but instead is a structure that contains additional information
//
//
// Is used only when file is opened directly on CSVFS. This flag is ignored when file
// is opened over SMB.
// Tells CSVFS that this file open should be valid only on coordinating node.
// If open comes to CSVFS, and this node is not a coordinating then open would fail.
// If file is opened, and coordinating node is moved then file open will be invalidated
//
#ifndef NETWORK_APP_INSTANCE_CSV_FLAGS_VALID_ONLY_IF_CSV_COORDINATOR
#define NETWORK_APP_INSTANCE_CSV_FLAGS_VALID_ONLY_IF_CSV_COORDINATOR 0x00000001
#endif //NETWORK_APP_INSTANCE_CSV_FLAGS_VALID_ONLY_IF_CSV_COORDINATOR
typedef struct _NETWORK_APP_INSTANCE_EA {
//
// The caller places a GUID that should always be unique for a single instance of
// the application.
//
GUID AppInstanceID;
//
// Combination of the NETWORK_APP_INSTANCE_CSV_FLAGS_* flags
//
DWORD CsvFlags;
} NETWORK_APP_INSTANCE_EA, *PNETWORK_APP_INSTANCE_EA;
#endif // (NTDDI_VERSION >= NTDDI_WIN10)
#endif //_NETWORK_APP_INSTANCE_EA_DEFINED
// begin_access
//
// Object Manager Symbolic Link Specific Access Rights.
//
#define DUPLICATE_CLOSE_SOURCE 0x00000001
#define DUPLICATE_SAME_ACCESS 0x00000002
//
// =========================================
// Define GUIDs which represent well-known power schemes
// =========================================
//
//
// Maximum Power Savings - indicates that very aggressive power savings measures will be used to help
// stretch battery life.
//
// {a1841308-3541-4fab-bc81-f71556f20b4a}
//
DEFINE_GUID( GUID_MAX_POWER_SAVINGS, 0xA1841308, 0x3541, 0x4FAB, 0xBC, 0x81, 0xF7, 0x15, 0x56, 0xF2, 0x0B, 0x4A );
//
// No Power Savings - indicates that almost no power savings measures will be used.
//
// {8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c}
//
DEFINE_GUID( GUID_MIN_POWER_SAVINGS, 0x8C5E7FDA, 0xE8BF, 0x4A96, 0x9A, 0x85, 0xA6, 0xE2, 0x3A, 0x8C, 0x63, 0x5C );
//
// Typical Power Savings - indicates that fairly aggressive power savings measures will be used.
//
// {381b4222-f694-41f0-9685-ff5bb260df2e}
//
DEFINE_GUID( GUID_TYPICAL_POWER_SAVINGS, 0x381B4222, 0xF694, 0x41F0, 0x96, 0x85, 0xFF, 0x5B, 0xB2, 0x60, 0xDF, 0x2E );
//
// This is a special GUID that represents "no subgroup" of settings. That is, it indicates
// that settings that are in the root of the power policy hierarchy as opposed to settings
// that are buried under a subgroup of settings. This should be used when querying for
// power settings that may not fall into a subgroup.
//
DEFINE_GUID( NO_SUBGROUP_GUID, 0xFEA3413E, 0x7E05, 0x4911, 0x9A, 0x71, 0x70, 0x03, 0x31, 0xF1, 0xC2, 0x94 );
//
// This is a special GUID that represents "every power scheme". That is, it indicates
// that any write to this power scheme should be reflected to every scheme present.
// This allows users to write a single setting once and have it apply to all schemes. They
// can then apply custom settings to specific power schemes that they care about.
//
DEFINE_GUID( ALL_POWERSCHEMES_GUID, 0x68A1E95E, 0x13EA, 0x41E1, 0x80, 0x11, 0x0C, 0x49, 0x6C, 0xA4, 0x90, 0xB0 );
//
// This is a special GUID that represents a 'personality' that each power scheme will have.
// In other words, each power scheme will have this key indicating "I'm most like *this* base
// power scheme." This individual setting will have one of three settings:
// GUID_MAX_POWER_SAVINGS
// GUID_MIN_POWER_SAVINGS
// GUID_TYPICAL_POWER_SAVINGS
//
// This allows several features:
// 1. Drivers and applications can register for notification of this GUID. So when this power
// scheme is activiated, this GUID's setting will be sent across the system and drivers/applications
// can see "GUID_MAX_POWER_SAVINGS" which will tell them in a generic fashion "get real aggressive
// about conserving power".
// 2. UserB may install a driver or application which creates power settings, and UserB may modify
// those power settings. Now UserA logs in. How does he see those settings? They simply don't
// exist in his private power key. Well they do exist over in the system power key. When we
// enumerate all the power settings in this system power key and don't find a corresponding entry
// in the user's private power key, then we can go look at this "personality" key in the users
// power scheme. We can then go get a default value for the power setting, depending on which
// "personality" power scheme is being operated on. Here's an example:
// A. UserB installs an application that creates a power setting Seetting1
// B. UserB changes Setting1 to have a value of 50 because that's one of the possible settings
// available for setting1.
// C. UserB logs out
// D. UserA logs in and his active power scheme is some custom scheme that was derived from
// the GUID_TYPICAL_POWER_SAVINGS. But remember that UserA has no setting1 in his
// private power key.
// E. When activating UserA's selected power scheme, all power settings in the system power key will
// be enumerated (including Setting1).
// F. The power manager will see that UserA has no Setting1 power setting in his private power scheme.
// G. The power manager will query UserA's power scheme for its personality and retrieve
// GUID_TYPICAL_POWER_SAVINGS.
// H. The power manager then looks in Setting1 in the system power key and looks in its set of default
// values for the corresponding value for GUID_TYPICAL_POWER_SAVINGS power schemes.
// I. This derived power setting is applied.
DEFINE_GUID( GUID_POWERSCHEME_PERSONALITY, 0x245D8541, 0x3943, 0x4422, 0xB0, 0x25, 0x13, 0xA7, 0x84, 0xF6, 0x79, 0xB7 );
//
// Define a special GUID which will be used to define the active power scheme.
// User will register for this power setting GUID, and when the active power
// scheme changes, they'll get a callback where the payload is the GUID
// representing the active powerscheme.
// ( 31F9F286-5084-42FE-B720-2B0264993763 }
//
DEFINE_GUID( GUID_ACTIVE_POWERSCHEME, 0x31F9F286, 0x5084, 0x42FE, 0xB7, 0x20, 0x2B, 0x02, 0x64, 0x99, 0x37, 0x63 );
//
// =========================================
// Define GUIDs which represent well-known power settings
// =========================================
//
// Idle resiliency settings
// -------------------------
//
// Specifies the subgroup which will contain all of the idle resiliency
// settings for a single policy.
//
// {2E601130-5351-4d9d-8E04-252966BAD054}
DEFINE_GUID(GUID_IDLE_RESILIENCY_SUBGROUP, 0x2e601130, 0x5351, 0x4d9d, 0x8e, 0x4, 0x25, 0x29, 0x66, 0xba, 0xd0, 0x54);
//
// Specifies the maximum clock interrupt period (in ms)
//
// N.B. This power setting is DEPRECATED.
//
// {C42B79AA-AA3A-484b-A98F-2CF32AA90A28}
DEFINE_GUID(GUID_IDLE_RESILIENCY_PERIOD, 0xc42b79aa, 0xaa3a, 0x484b, 0xa9, 0x8f, 0x2c, 0xf3, 0x2a, 0xa9, 0xa, 0x28);
//
// Specifies the deep sleep policy setting.
// This is intended to override the GUID_IDLE_RESILIENCY_PERIOD
// {d502f7ee-1dc7-4efd-a55d-f04b6f5c0545}
DEFINE_GUID(GUID_DEEP_SLEEP_ENABLED, 0xd502f7ee, 0x1dc7, 0x4efd, 0xa5, 0x5d, 0xf0, 0x4b, 0x6f, 0x5c, 0x5, 0x45);
//
// Specifies the platform idle state index associated with idle resiliency
// period.
//
// N.B. This power setting is DEPRECATED.
//
// {D23F2FB8-9536-4038-9C94-1CE02E5C2152}
DEFINE_GUID(GUID_DEEP_SLEEP_PLATFORM_STATE, 0xd23f2fb8, 0x9536, 0x4038, 0x9c, 0x94, 0x1c, 0xe0, 0x2e, 0x5c, 0x21, 0x52);
//
// Specifies (in milliseconds) how long we wait after the last disk access
// before we power off the disk in case when IO coalescing is active.
//
// {C36F0EB4-2988-4a70-8EEE-0884FC2C2433}
DEFINE_GUID(GUID_DISK_COALESCING_POWERDOWN_TIMEOUT, 0xc36f0eb4, 0x2988, 0x4a70, 0x8e, 0xee, 0x8, 0x84, 0xfc, 0x2c, 0x24, 0x33);
//
// Specifies (in seconds) how long we wait after the CS Enter before
// we deactivate execution required request.
//
// 0 : implies execution power requests are disabled and have no effect
// -1 : implies execution power requests are never deactivated
//
// Note: Execution required power requests are mapped into system required
// power requests on non-AoAc machines and this value has no effect.
//
// {3166BC41-7E98-4e03-B34E-EC0F5F2B218E}
DEFINE_GUID(GUID_EXECUTION_REQUIRED_REQUEST_TIMEOUT, 0x3166bc41, 0x7e98, 0x4e03, 0xb3, 0x4e, 0xec, 0xf, 0x5f, 0x2b, 0x21, 0x8e);
// Video settings
// --------------
//
// Specifies the subgroup which will contain all of the video
// settings for a single policy.
//
DEFINE_GUID( GUID_VIDEO_SUBGROUP, 0x7516B95F, 0xF776, 0x4464, 0x8C, 0x53, 0x06, 0x16, 0x7F, 0x40, 0xCC, 0x99 );
//
// Specifies (in seconds) how long we wait after the last user input has been
// recieved before we power off the video.
//
DEFINE_GUID( GUID_VIDEO_POWERDOWN_TIMEOUT, 0x3C0BC021, 0xC8A8, 0x4E07, 0xA9, 0x73, 0x6B, 0x14, 0xCB, 0xCB, 0x2B, 0x7E );
//
// Specifies whether adaptive display dimming is turned on or off.
// 82DBCF2D-CD67-40C5-BFDC-9F1A5CCD4663
//
// N.B. This setting is DEPRECATED in Windows 8.1
//
DEFINE_GUID( GUID_VIDEO_ANNOYANCE_TIMEOUT, 0x82DBCF2D, 0xCD67, 0x40C5, 0xBF, 0xDC, 0x9F, 0x1A, 0x5C, 0xCD, 0x46, 0x63 );
//
// Specifies how much adaptive dim time out will be increased by.
// EED904DF-B142-4183-B10B-5A1197A37864
//
// N.B. This setting is DEPRECATED in Windows 8.1
//
DEFINE_GUID( GUID_VIDEO_ADAPTIVE_PERCENT_INCREASE, 0xEED904DF, 0xB142, 0x4183, 0xB1, 0x0B, 0x5A, 0x11, 0x97, 0xA3, 0x78, 0x64 );
//
// Specifies (in seconds) how long we wait after the last user input has been
// recieved before we dim the video.
//
DEFINE_GUID( GUID_VIDEO_DIM_TIMEOUT, 0x17aaa29b, 0x8b43, 0x4b94, 0xaa, 0xfe, 0x35, 0xf6, 0x4d, 0xaa, 0xf1, 0xee);
//
// Specifies if the operating system should use adaptive timers (based on
// previous behavior) to power down the video,
//
DEFINE_GUID( GUID_VIDEO_ADAPTIVE_POWERDOWN, 0x90959D22, 0xD6A1, 0x49B9, 0xAF, 0x93, 0xBC, 0xE8, 0x85, 0xAD, 0x33, 0x5B );
//
// Specifies a maximum power consumption level.
//
DEFINE_GUID(GUID_DISK_MAX_POWER, 0x51dea550, 0xbb38, 0x4bc4, 0x99, 0x1b, 0xea, 0xcf, 0x37, 0xbe, 0x5e, 0xc8);
//
// Specifies if the monitor is currently being powered or not.
// 02731015-4510-4526-99E6-E5A17EBD1AEA
//
DEFINE_GUID( GUID_MONITOR_POWER_ON, 0x02731015, 0x4510, 0x4526, 0x99, 0xE6, 0xE5, 0xA1, 0x7E, 0xBD, 0x1A, 0xEA );
//
// Monitor brightness policy when in normal state
// {aded5e82-b909-4619-9949-f5d71dac0bcb}
DEFINE_GUID(GUID_DEVICE_POWER_POLICY_VIDEO_BRIGHTNESS, 0xaded5e82L, 0xb909, 0x4619, 0x99, 0x49, 0xf5, 0xd7, 0x1d, 0xac, 0x0b, 0xcb);
//
//
// Monitor brightness policy when in dim state
// {f1fbfde2-a960-4165-9f88-50667911ce96}
DEFINE_GUID(GUID_DEVICE_POWER_POLICY_VIDEO_DIM_BRIGHTNESS, 0xf1fbfde2, 0xa960, 0x4165, 0x9f, 0x88, 0x50, 0x66, 0x79, 0x11, 0xce, 0x96);
//
// Current Monitor brightness
// {8ffee2c6-2d01-46be-adb9-398addc5b4ff}
DEFINE_GUID(GUID_VIDEO_CURRENT_MONITOR_BRIGHTNESS, 0x8ffee2c6, 0x2d01, 0x46be, 0xad, 0xb9, 0x39, 0x8a, 0xdd, 0xc5, 0xb4, 0xff);
//
// Specifies if the operating system should use ambient light sensor to change
// disply brightness adatively.
// {FBD9AA66-9553-4097-BA44-ED6E9D65EAB8}
DEFINE_GUID(GUID_VIDEO_ADAPTIVE_DISPLAY_BRIGHTNESS, 0xFBD9AA66, 0x9553, 0x4097, 0xBA, 0x44, 0xED, 0x6E, 0x9D, 0x65, 0xEA, 0xB8);
//
// Specifies a change in the current monitor's display state.
// 6fe69556-704a-47a0-8f24-c28d936fda47
//
DEFINE_GUID(GUID_CONSOLE_DISPLAY_STATE, 0x6fe69556, 0x704a, 0x47a0, 0x8f, 0x24, 0xc2, 0x8d, 0x93, 0x6f, 0xda, 0x47);
//
// Defines a guid for enabling/disabling the ability to create display required
// power requests.
//
// {A9CEB8DA-CD46-44FB-A98B-02AF69DE4623}
//
DEFINE_GUID( GUID_ALLOW_DISPLAY_REQUIRED, 0xA9CEB8DA, 0xCD46, 0x44FB, 0xA9, 0x8B, 0x02, 0xAF, 0x69, 0xDE, 0x46, 0x23 );
//
// Specifies the video power down timeout (in seconds) after the interactive
// console is locked (and sensors indicate UserNotPresent). Value 0
// effectively disables this feature.
//
// {8EC4B3A5-6868-48c2-BE75-4F3044BE88A7}
DEFINE_GUID(GUID_VIDEO_CONSOLE_LOCK_TIMEOUT, 0x8ec4b3a5, 0x6868, 0x48c2, 0xbe, 0x75, 0x4f, 0x30, 0x44, 0xbe, 0x88, 0xa7);
// Adaptive power behavior settings
// --------------------------------
//
// {8619B916-E004-4dd8-9B66-DAE86F806698}
DEFINE_GUID(GUID_ADAPTIVE_POWER_BEHAVIOR_SUBGROUP, 0x8619b916, 0xe004, 0x4dd8, 0x9b, 0x66, 0xda, 0xe8, 0x6f, 0x80, 0x66, 0x98);
//
// Specifies the input timeout (in seconds) to be used to indicate UserUnkown.
// Value 0 effectively disables this feature.
//
// {5ADBBFBC-074E-4da1-BA38-DB8B36B2C8F3}
DEFINE_GUID(GUID_NON_ADAPTIVE_INPUT_TIMEOUT, 0x5adbbfbc, 0x74e, 0x4da1, 0xba, 0x38, 0xdb, 0x8b, 0x36, 0xb2, 0xc8, 0xf3);
// Harddisk settings
// -----------------
//
// Specifies the subgroup which will contain all of the harddisk
// settings for a single policy.
//
DEFINE_GUID( GUID_DISK_SUBGROUP, 0x0012EE47, 0x9041, 0x4B5D, 0x9B, 0x77, 0x53, 0x5F, 0xBA, 0x8B, 0x14, 0x42 );
//
// Specifies (in seconds) how long we wait after the last disk access
// before we power off the disk.
//
DEFINE_GUID( GUID_DISK_POWERDOWN_TIMEOUT, 0x6738E2C4, 0xE8A5, 0x4A42, 0xB1, 0x6A, 0xE0, 0x40, 0xE7, 0x69, 0x75, 0x6E );
//
// Specifies (in milliseconds) how long we wait after the last disk access
// before we power off the disk taking into account if IO coalescing is active.
//
// {58E39BA8-B8E6-4EF6-90D0-89AE32B258D6}
DEFINE_GUID( GUID_DISK_IDLE_TIMEOUT, 0x58E39BA8, 0xB8E6, 0x4EF6, 0x90, 0xD0, 0x89, 0xAE, 0x32, 0xB2, 0x58, 0xD6 );
//
// Specifies the amount of contiguous disk activity time to ignore when
// calculating disk idleness.
//
// 80e3c60e-bb94-4ad8-bbe0-0d3195efc663
//
DEFINE_GUID( GUID_DISK_BURST_IGNORE_THRESHOLD, 0x80e3c60e, 0xbb94, 0x4ad8, 0xbb, 0xe0, 0x0d, 0x31, 0x95, 0xef, 0xc6, 0x63 );
//
// Specifies if the operating system should use adaptive timers (based on
// previous behavior) to power down the disk,
//
DEFINE_GUID( GUID_DISK_ADAPTIVE_POWERDOWN, 0x396A32E1, 0x499A, 0x40B2, 0x91, 0x24, 0xA9, 0x6A, 0xFE, 0x70, 0x76, 0x67 );
// System sleep settings
// ---------------------
//
// Specifies the subgroup which will contain all of the sleep
// settings for a single policy.
// { 238C9FA8-0AAD-41ED-83F4-97BE242C8F20 }
//
DEFINE_GUID( GUID_SLEEP_SUBGROUP, 0x238C9FA8, 0x0AAD, 0x41ED, 0x83, 0xF4, 0x97, 0xBE, 0x24, 0x2C, 0x8F, 0x20 );
//
// Specifies an idle treshold percentage (0-100). The system must be this idle
// over a period of time in order to idle to sleep.
//
// N.B. DEPRECATED IN WINDOWS 6.1
//
DEFINE_GUID( GUID_SLEEP_IDLE_THRESHOLD, 0x81cd32e0, 0x7833, 0x44f3, 0x87, 0x37, 0x70, 0x81, 0xf3, 0x8d, 0x1f, 0x70 );
//
// Specifies (in seconds) how long we wait after the system is deemed
// "idle" before moving to standby (S1, S2 or S3).
//
DEFINE_GUID( GUID_STANDBY_TIMEOUT, 0x29F6C1DB, 0x86DA, 0x48C5, 0x9F, 0xDB, 0xF2, 0xB6, 0x7B, 0x1F, 0x44, 0xDA );
//
// Specifies (in seconds) how long the system should go back to sleep after
// waking unattended. 0 indicates that the standard standby/hibernate idle
// policy should be used instead.
//
// {7bc4a2f9-d8fc-4469-b07b-33eb785aaca0}
//
DEFINE_GUID( GUID_UNATTEND_SLEEP_TIMEOUT, 0x7bc4a2f9, 0xd8fc, 0x4469, 0xb0, 0x7b, 0x33, 0xeb, 0x78, 0x5a, 0xac, 0xa0 );
//
// Specifies (in seconds) how long we wait after the system is deemed
// "idle" before moving to hibernate (S4).
//
DEFINE_GUID( GUID_HIBERNATE_TIMEOUT, 0x9D7815A6, 0x7EE4, 0x497E, 0x88, 0x88, 0x51, 0x5A, 0x05, 0xF0, 0x23, 0x64 );
//
// Specifies whether or not Fast S4 should be enabled if the system supports it
// 94AC6D29-73CE-41A6-809F-6363BA21B47E
//
DEFINE_GUID( GUID_HIBERNATE_FASTS4_POLICY, 0x94AC6D29, 0x73CE, 0x41A6, 0x80, 0x9F, 0x63, 0x63, 0xBA, 0x21, 0xB4, 0x7E );
//
// Define a GUID for controlling the criticality of sleep state transitions.
// Critical sleep transitions do not query applications, services or drivers
// before transitioning the platform to a sleep state.
//
// {B7A27025-E569-46c2-A504-2B96CAD225A1}
//
DEFINE_GUID( GUID_CRITICAL_POWER_TRANSITION, 0xB7A27025, 0xE569, 0x46c2, 0xA5, 0x04, 0x2B, 0x96, 0xCA, 0xD2, 0x25, 0xA1);
//
// Specifies if the system is entering or exiting 'away mode'.
// 98A7F580-01F7-48AA-9C0F-44352C29E5C0
//
DEFINE_GUID( GUID_SYSTEM_AWAYMODE, 0x98A7F580, 0x01F7, 0x48AA, 0x9C, 0x0F, 0x44, 0x35, 0x2C, 0x29, 0xE5, 0xC0 );
//
// Specify whether away mode is allowed
//
// {25DFA149-5DD1-4736-B5AB-E8A37B5B8187}
//
DEFINE_GUID( GUID_ALLOW_AWAYMODE, 0x25dfa149, 0x5dd1, 0x4736, 0xb5, 0xab, 0xe8, 0xa3, 0x7b, 0x5b, 0x81, 0x87 );
//
// Defines a guid to control User Presence Prediction mode.
//
// {82011705-FB95-4D46-8D35-4042B1D20DEF}
//
DEFINE_GUID( GUID_USER_PRESENCE_PREDICTION, 0x82011705, 0xfb95, 0x4d46, 0x8d, 0x35, 0x40, 0x42, 0xb1, 0xd2, 0xd, 0xef );
//
// Defines a guid to control Standby Budget Grace Period.
//
// {60C07FE1-0556-45CF-9903-D56E32210242}
//
DEFINE_GUID( GUID_STANDBY_BUDGET_GRACE_PERIOD, 0x60c07fe1, 0x0556, 0x45cf, 0x99, 0x03, 0xd5, 0x6e, 0x32, 0x21, 0x2, 0x42 );
//
// Defines a guid to control Standby Budget Percent.
//
// {9FE527BE-1B70-48DA-930D-7BCF17B44990}
//
DEFINE_GUID( GUID_STANDBY_BUDGET_PERCENT, 0x9fe527be, 0x1b70, 0x48da, 0x93, 0x0d, 0x7b, 0xcf, 0x17, 0xb4, 0x49, 0x90 );
//
// Defines a guid to control Standby Reserve Grace Period.
//
// {C763EE92-71E8-4127-84EB-F6ED043A3E3D}
//
DEFINE_GUID( GUID_STANDBY_RESERVE_GRACE_PERIOD, 0xc763ee92, 0x71e8, 0x4127, 0x84, 0xeb, 0xf6, 0xed, 0x04, 0x3a, 0x3e, 0x3d );
//
// Defines a guid to control Standby Reserve Time.
//
// {468FE7E5-1158-46EC-88BC-5B96C9E44FD0}
//
DEFINE_GUID( GUID_STANDBY_RESERVE_TIME, 0x468FE7E5, 0x1158, 0x46EC, 0x88, 0xbc, 0x5b, 0x96, 0xc9, 0xe4, 0x4f, 0xd0 );
//
// Defines a guid to control Standby Reset Percentage.
//
// {49CB11A5-56E2-4AFB-9D38-3DF47872E21B}
//
DEFINE_GUID(GUID_STANDBY_RESET_PERCENT, 0x49cb11a5, 0x56e2, 0x4afb, 0x9d, 0x38, 0x3d, 0xf4, 0x78, 0x72, 0xe2, 0x1b);
//
// Defines a guid for enabling/disabling standby (S1-S3) states. This does not
// affect hibernation (S4).
//
// {abfc2519-3608-4c2a-94ea-171b0ed546ab}
//
DEFINE_GUID( GUID_ALLOW_STANDBY_STATES, 0xabfc2519, 0x3608, 0x4c2a, 0x94, 0xea, 0x17, 0x1b, 0x0e, 0xd5, 0x46, 0xab );
//
// Defines a guid for enabling/disabling the ability to wake via RTC.
//
// {BD3B718A-0680-4D9D-8AB2-E1D2B4AC806D}
//
DEFINE_GUID( GUID_ALLOW_RTC_WAKE, 0xBD3B718A, 0x0680, 0x4D9D, 0x8A, 0xB2, 0xE1, 0xD2, 0xB4, 0xAC, 0x80, 0x6D );
//
// Defines a guid for enabling/disabling the ability to create system required
// power requests.
//
// {A4B195F5-8225-47D8-8012-9D41369786E2}
//
DEFINE_GUID( GUID_ALLOW_SYSTEM_REQUIRED, 0xA4B195F5, 0x8225, 0x47D8, 0x80, 0x12, 0x9D, 0x41, 0x36, 0x97, 0x86, 0xE2 );
// Energy Saver settings
// ---------------------
//
// Indicates if Enegry Saver is ON or OFF.
//
// {E00958C0-C213-4ACE-AC77-FECCED2EEEA5}
//
DEFINE_GUID( GUID_POWER_SAVING_STATUS, 0xe00958c0, 0xc213, 0x4ace, 0xac, 0x77, 0xfe, 0xcc, 0xed, 0x2e, 0xee, 0xa5);
//
// Specifies the subgroup which will contain all of the Energy Saver settings
// for a single policy.
//
// {DE830923-A562-41AF-A086-E3A2C6BAD2DA}
//
DEFINE_GUID( GUID_ENERGY_SAVER_SUBGROUP, 0xDE830923, 0xA562, 0x41AF, 0xA0, 0x86, 0xE3, 0xA2, 0xC6, 0xBA, 0xD2, 0xDA );
//
// Defines a guid to engage Energy Saver at specific battery charge level
//
// {E69653CA-CF7F-4F05-AA73-CB833FA90AD4}
//
DEFINE_GUID( GUID_ENERGY_SAVER_BATTERY_THRESHOLD, 0xE69653CA, 0xCF7F, 0x4F05, 0xAA, 0x73, 0xCB, 0x83, 0x3F, 0xA9, 0x0A, 0xD4 );
//
// Defines a guid to specify display brightness weight when Energy Saver is engaged
//
// {13D09884-F74E-474A-A852-B6BDE8AD03A8}
//
DEFINE_GUID( GUID_ENERGY_SAVER_BRIGHTNESS, 0x13D09884, 0xF74E, 0x474A, 0xA8, 0x52, 0xB6, 0xBD, 0xE8, 0xAD, 0x03, 0xA8 );
//
// Defines a guid to specify the Energy Saver policy
//
// {5C5BB349-AD29-4ee2-9D0B-2B25270F7A81}
//
DEFINE_GUID( GUID_ENERGY_SAVER_POLICY, 0x5c5bb349, 0xad29, 0x4ee2, 0x9d, 0xb, 0x2b, 0x25, 0x27, 0xf, 0x7a, 0x81 );
// System button actions
// ---------------------
//
//
// Specifies the subgroup which will contain all of the system button
// settings for a single policy.
//
DEFINE_GUID( GUID_SYSTEM_BUTTON_SUBGROUP, 0x4F971E89, 0xEEBD, 0x4455, 0xA8, 0xDE, 0x9E, 0x59, 0x04, 0x0E, 0x73, 0x47 );
#define POWERBUTTON_ACTION_INDEX_NOTHING 0
#define POWERBUTTON_ACTION_INDEX_SLEEP 1
#define POWERBUTTON_ACTION_INDEX_HIBERNATE 2
#define POWERBUTTON_ACTION_INDEX_SHUTDOWN 3
#define POWERBUTTON_ACTION_INDEX_TURN_OFF_THE_DISPLAY 4
//
// System button values which contain the PowerAction* value for each action.
//
#define POWERBUTTON_ACTION_VALUE_NOTHING 0
#define POWERBUTTON_ACTION_VALUE_SLEEP 2
#define POWERBUTTON_ACTION_VALUE_HIBERNATE 3
#define POWERBUTTON_ACTION_VALUE_SHUTDOWN 6
#define POWERBUTTON_ACTION_VALUE_TURN_OFF_THE_DISPLAY 8
// Specifies (in a POWER_ACTION_POLICY structure) the appropriate action to
// take when the system power button is pressed.
//
DEFINE_GUID( GUID_POWERBUTTON_ACTION, 0x7648EFA3, 0xDD9C, 0x4E3E, 0xB5, 0x66, 0x50, 0xF9, 0x29, 0x38, 0x62, 0x80 );
//
// Specifies (in a POWER_ACTION_POLICY structure) the appropriate action to
// take when the system sleep button is pressed.
//
DEFINE_GUID( GUID_SLEEPBUTTON_ACTION, 0x96996BC0, 0xAD50, 0x47EC, 0x92, 0x3B, 0x6F, 0x41, 0x87, 0x4D, 0xD9, 0xEB );
//
// Specifies (in a POWER_ACTION_POLICY structure) the appropriate action to
// take when the system sleep button is pressed.
// { A7066653-8D6C-40A8-910E-A1F54B84C7E5 }
//
DEFINE_GUID( GUID_USERINTERFACEBUTTON_ACTION, 0xA7066653, 0x8D6C, 0x40A8, 0x91, 0x0E, 0xA1, 0xF5, 0x4B, 0x84, 0xC7, 0xE5 );
//
// Specifies (in a POWER_ACTION_POLICY structure) the appropriate action to
// take when the system lid is closed.
//
DEFINE_GUID( GUID_LIDCLOSE_ACTION, 0x5CA83367, 0x6E45, 0x459F, 0xA2, 0x7B, 0x47, 0x6B, 0x1D, 0x01, 0xC9, 0x36 );
DEFINE_GUID( GUID_LIDOPEN_POWERSTATE, 0x99FF10E7, 0x23B1, 0x4C07, 0xA9, 0xD1, 0x5C, 0x32, 0x06, 0xD7, 0x41, 0xB4 );
// Battery Discharge Settings
// --------------------------
//
// Specifies the subgroup which will contain all of the battery discharge
// settings for a single policy.
//
DEFINE_GUID( GUID_BATTERY_SUBGROUP, 0xE73A048D, 0xBF27, 0x4F12, 0x97, 0x31, 0x8B, 0x20, 0x76, 0xE8, 0x89, 0x1F );
//
// 4 battery discharge alarm settings.
//
// GUID_BATTERY_DISCHARGE_ACTION_x - This is the action to take. It is a value
// of type POWER_ACTION
// GUID_BATTERY_DISCHARGE_LEVEL_x - This is the battery level (%)
// GUID_BATTERY_DISCHARGE_FLAGS_x - Flags defined below:
// POWER_ACTION_POLICY->EventCode flags
// BATTERY_DISCHARGE_FLAGS_EVENTCODE_MASK
// BATTERY_DISCHARGE_FLAGS_ENABLE
DEFINE_GUID( GUID_BATTERY_DISCHARGE_ACTION_0, 0x637EA02F, 0xBBCB, 0x4015, 0x8E, 0x2C, 0xA1, 0xC7, 0xB9, 0xC0, 0xB5, 0x46 );
DEFINE_GUID( GUID_BATTERY_DISCHARGE_LEVEL_0, 0x9A66D8D7, 0x4FF7, 0x4EF9, 0xB5, 0xA2, 0x5A, 0x32, 0x6C, 0xA2, 0xA4, 0x69 );
DEFINE_GUID( GUID_BATTERY_DISCHARGE_FLAGS_0, 0x5dbb7c9f, 0x38e9, 0x40d2, 0x97, 0x49, 0x4f, 0x8a, 0x0e, 0x9f, 0x64, 0x0f );
DEFINE_GUID( GUID_BATTERY_DISCHARGE_ACTION_1, 0xD8742DCB, 0x3E6A, 0x4B3C, 0xB3, 0xFE, 0x37, 0x46, 0x23, 0xCD, 0xCF, 0x06 );
DEFINE_GUID( GUID_BATTERY_DISCHARGE_LEVEL_1, 0x8183BA9A, 0xE910, 0x48DA, 0x87, 0x69, 0x14, 0xAE, 0x6D, 0xC1, 0x17, 0x0A );
DEFINE_GUID( GUID_BATTERY_DISCHARGE_FLAGS_1, 0xbcded951, 0x187b, 0x4d05, 0xbc, 0xcc, 0xf7, 0xe5, 0x19, 0x60, 0xc2, 0x58 );
DEFINE_GUID( GUID_BATTERY_DISCHARGE_ACTION_2, 0x421CBA38, 0x1A8E, 0x4881, 0xAC, 0x89, 0xE3, 0x3A, 0x8B, 0x04, 0xEC, 0xE4 );
DEFINE_GUID( GUID_BATTERY_DISCHARGE_LEVEL_2, 0x07A07CA2, 0xADAF, 0x40D7, 0xB0, 0x77, 0x53, 0x3A, 0xAD, 0xED, 0x1B, 0xFA );
DEFINE_GUID( GUID_BATTERY_DISCHARGE_FLAGS_2, 0x7fd2f0c4, 0xfeb7, 0x4da3, 0x81, 0x17, 0xe3, 0xfb, 0xed, 0xc4, 0x65, 0x82 );
DEFINE_GUID( GUID_BATTERY_DISCHARGE_ACTION_3, 0x80472613, 0x9780, 0x455E, 0xB3, 0x08, 0x72, 0xD3, 0x00, 0x3C, 0xF2, 0xF8 );
DEFINE_GUID( GUID_BATTERY_DISCHARGE_LEVEL_3, 0x58AFD5A6, 0xC2DD, 0x47D2, 0x9F, 0xBF, 0xEF, 0x70, 0xCC, 0x5C, 0x59, 0x65 );
DEFINE_GUID( GUID_BATTERY_DISCHARGE_FLAGS_3, 0x73613ccf, 0xdbfa, 0x4279, 0x83, 0x56, 0x49, 0x35, 0xf6, 0xbf, 0x62, 0xf3 );
// Processor power settings
// ------------------------
//
// Specifies the subgroup which will contain all of the processor
// settings for a single policy.
//
// {54533251-82be-4824-96c1-47b60b740d00}
//
DEFINE_GUID( GUID_PROCESSOR_SETTINGS_SUBGROUP, 0x54533251, 0x82BE, 0x4824, 0x96, 0xC1, 0x47, 0xB6, 0x0B, 0x74, 0x0D, 0x00 );
//
// Specifies various attributes that control processor performance/throttle
// states.
//
DEFINE_GUID( GUID_PROCESSOR_THROTTLE_POLICY, 0x57027304, 0x4AF6, 0x4104, 0x92, 0x60, 0xE3, 0xD9, 0x52, 0x48, 0xFC, 0x36 );
#define PERFSTATE_POLICY_CHANGE_IDEAL 0
#define PERFSTATE_POLICY_CHANGE_SINGLE 1
#define PERFSTATE_POLICY_CHANGE_ROCKET 2
#define PERFSTATE_POLICY_CHANGE_IDEAL_AGGRESSIVE 3
#define PERFSTATE_POLICY_CHANGE_DECREASE_MAX PERFSTATE_POLICY_CHANGE_ROCKET
#define PERFSTATE_POLICY_CHANGE_INCREASE_MAX PERFSTATE_POLICY_CHANGE_IDEAL_AGGRESSIVE
//
// Specifies a percentage (between 0 and 100) that the processor frequency
// should never go above. For example, if this value is set to 80, then
// the processor frequency will never be throttled above 80 percent of its
// maximum frequency by the system.
//
// {bc5038f7-23e0-4960-96da-33abaf5935ec}
//
DEFINE_GUID( GUID_PROCESSOR_THROTTLE_MAXIMUM, 0xBC5038F7, 0x23E0, 0x4960, 0x96, 0xDA, 0x33, 0xAB, 0xAF, 0x59, 0x35, 0xEC );
//
// Specifies a percentage (between 0 and 100) that the processor frequency
// should never go above for Processor Power Efficiency Class 1.
// For example, if this value is set to 80, then the processor frequency will
// never be throttled above 80 percent of its maximum frequency by the system.
//
// {bc5038f7-23e0-4960-96da-33abaf5935ed}
//
DEFINE_GUID( GUID_PROCESSOR_THROTTLE_MAXIMUM_1, 0xBC5038F7, 0x23E0, 0x4960, 0x96, 0xDA, 0x33, 0xAB, 0xAF, 0x59, 0x35, 0xED );
//
// Specifies a percentage (between 0 and 100) that the processor frequency
// should not drop below. For example, if this value is set to 50, then the
// processor frequency will never be throttled below 50 percent of its
// maximum frequency by the system.
//
// {893dee8e-2bef-41e0-89c6-b55d0929964c}
//
DEFINE_GUID( GUID_PROCESSOR_THROTTLE_MINIMUM, 0x893DEE8E, 0x2BEF, 0x41E0, 0x89, 0xC6, 0xB5, 0x5D, 0x09, 0x29, 0x96, 0x4C );
//
// Specifies a percentage (between 0 and 100) that the processor frequency
// should not drop below for Processor Power Efficiency Class 1.
// For example, if this value is set to 50, then the processor frequency will
// never be throttled below 50 percent of its maximum frequency by the system.
//
// {893dee8e-2bef-41e0-89c6-b55d0929964d}
//
DEFINE_GUID( GUID_PROCESSOR_THROTTLE_MINIMUM_1, 0x893DEE8E, 0x2BEF, 0x41E0, 0x89, 0xC6, 0xB5, 0x5D, 0x09, 0x29, 0x96, 0x4D );
//
// Specifies whether throttle states are allowed to be used even when
// performance states are available.
//
// {3b04d4fd-1cc7-4f23-ab1c-d1337819c4bb}
//
DEFINE_GUID( GUID_PROCESSOR_ALLOW_THROTTLING, 0x3b04d4fd, 0x1cc7, 0x4f23, 0xab, 0x1c, 0xd1, 0x33, 0x78, 0x19, 0xc4, 0xbb );
#define PROCESSOR_THROTTLE_DISABLED 0
#define PROCESSOR_THROTTLE_ENABLED 1
#define PROCESSOR_THROTTLE_AUTOMATIC 2
//
// Specifies processor power settings for CState policy data
// {68F262A7-F621-4069-B9A5-4874169BE23C}
//
DEFINE_GUID( GUID_PROCESSOR_IDLESTATE_POLICY, 0x68f262a7, 0xf621, 0x4069, 0xb9, 0xa5, 0x48, 0x74, 0x16, 0x9b, 0xe2, 0x3c);
//
// Specifies processor power settings for PerfState policy data
// {BBDC3814-18E9-4463-8A55-D197327C45C0}
//
DEFINE_GUID( GUID_PROCESSOR_PERFSTATE_POLICY, 0xBBDC3814, 0x18E9, 0x4463, 0x8A, 0x55, 0xD1, 0x97, 0x32, 0x7C, 0x45, 0xC0);
//
// Specifies the increase busy percentage threshold that must be met before
// increasing the processor performance state.
//
// {06cadf0e-64ed-448a-8927-ce7bf90eb35d}
//
DEFINE_GUID( GUID_PROCESSOR_PERF_INCREASE_THRESHOLD, 0x06cadf0e, 0x64ed, 0x448a, 0x89, 0x27, 0xce, 0x7b, 0xf9, 0x0e, 0xb3, 0x5d );
//
// Specifies the increase busy percentage threshold that must be met before
// increasing the processor performance state for Processor Power Efficiency
// Class 1.
//
// {06cadf0e-64ed-448a-8927-ce7bf90eb35e}
//
DEFINE_GUID( GUID_PROCESSOR_PERF_INCREASE_THRESHOLD_1, 0x06cadf0e, 0x64ed, 0x448a, 0x89, 0x27, 0xce, 0x7b, 0xf9, 0x0e, 0xb3, 0x5e );
//
// Specifies the decrease busy percentage threshold that must be met before
// decreasing the processor performance state.
//
// {12a0ab44-fe28-4fa9-b3bd-4b64f44960a6}
//
DEFINE_GUID( GUID_PROCESSOR_PERF_DECREASE_THRESHOLD, 0x12a0ab44, 0xfe28, 0x4fa9, 0xb3, 0xbd, 0x4b, 0x64, 0xf4, 0x49, 0x60, 0xa6 );
//
// Specifies the decrease busy percentage threshold that must be met before
// decreasing the processor performance state for Processor Power Efficiency
// Class 1.
//
// {12a0ab44-fe28-4fa9-b3bd-4b64f44960a7}
//
DEFINE_GUID( GUID_PROCESSOR_PERF_DECREASE_THRESHOLD_1, 0x12a0ab44, 0xfe28, 0x4fa9, 0xb3, 0xbd, 0x4b, 0x64, 0xf4, 0x49, 0x60, 0xa7 );
//
// Specifies, either as ideal, single or rocket, how aggressive performance
// states should be selected when increasing the processor performance state.
//
// {465E1F50-B610-473a-AB58-00D1077DC418}
//
DEFINE_GUID( GUID_PROCESSOR_PERF_INCREASE_POLICY, 0x465e1f50, 0xb610, 0x473a, 0xab, 0x58, 0x0, 0xd1, 0x7, 0x7d, 0xc4, 0x18);
//
// Specifies, either as ideal, single or rocket, how aggressive performance
// states should be selected when increasing the processor performance state
// for Processor Power Efficiency Class 1.
//
// {465E1F50-B610-473a-AB58-00D1077DC419}
//
DEFINE_GUID( GUID_PROCESSOR_PERF_INCREASE_POLICY_1, 0x465e1f50, 0xb610, 0x473a, 0xab, 0x58, 0x0, 0xd1, 0x7, 0x7d, 0xc4, 0x19);
//
// Specifies, either as ideal, single or rocket, how aggressive performance
// states should be selected when decreasing the processor performance state.
//
// {40FBEFC7-2E9D-4d25-A185-0CFD8574BAC6}
//
DEFINE_GUID( GUID_PROCESSOR_PERF_DECREASE_POLICY, 0x40fbefc7, 0x2e9d, 0x4d25, 0xa1, 0x85, 0xc, 0xfd, 0x85, 0x74, 0xba, 0xc6);
//
// Specifies, either as ideal, single or rocket, how aggressive performance
// states should be selected when decreasing the processor performance state for
// Processor Power Efficiency Class 1.
//
// {40FBEFC7-2E9D-4d25-A185-0CFD8574BAC7}
//
DEFINE_GUID( GUID_PROCESSOR_PERF_DECREASE_POLICY_1, 0x40fbefc7, 0x2e9d, 0x4d25, 0xa1, 0x85, 0xc, 0xfd, 0x85, 0x74, 0xba, 0xc7);
//
// Specifies, in milliseconds, the minimum amount of time that must elapse after
// the last processor performance state change before increasing the processor
// performance state.
//
// {984CF492-3BED-4488-A8F9-4286C97BF5AA}
//
DEFINE_GUID( GUID_PROCESSOR_PERF_INCREASE_TIME, 0x984cf492, 0x3bed, 0x4488, 0xa8, 0xf9, 0x42, 0x86, 0xc9, 0x7b, 0xf5, 0xaa);
//
// Specifies, in milliseconds, the minimum amount of time that must elapse after
// the last processor performance state change before increasing the processor
// performance state for Processor Power Efficiency Class 1.
//
// {984CF492-3BED-4488-A8F9-4286C97BF5AB}
//
DEFINE_GUID( GUID_PROCESSOR_PERF_INCREASE_TIME_1, 0x984cf492, 0x3bed, 0x4488, 0xa8, 0xf9, 0x42, 0x86, 0xc9, 0x7b, 0xf5, 0xab);
//
// Specifies, in milliseconds, the minimum amount of time that must elapse after
// the last processor performance state change before increasing the processor
// performance state.
//
// {D8EDEB9B-95CF-4f95-A73C-B061973693C8}
//
DEFINE_GUID( GUID_PROCESSOR_PERF_DECREASE_TIME, 0xd8edeb9b, 0x95cf, 0x4f95, 0xa7, 0x3c, 0xb0, 0x61, 0x97, 0x36, 0x93, 0xc8);
//
// Specifies, in milliseconds, the minimum amount of time that must elapse after
// the last processor performance state change before increasing the processor
// performance state for Processor Power Efficiency Class 1.
//
// {D8EDEB9B-95CF-4f95-A73C-B061973693C9}
//
DEFINE_GUID( GUID_PROCESSOR_PERF_DECREASE_TIME_1, 0xd8edeb9b, 0x95cf, 0x4f95, 0xa7, 0x3c, 0xb0, 0x61, 0x97, 0x36, 0x93, 0xc9);
//
// Specifies the time, in milliseconds, that must expire before considering
// a change in the processor performance states or parked core set.
//
// {4D2B0152-7D5C-498b-88E2-34345392A2C5}
//
DEFINE_GUID( GUID_PROCESSOR_PERF_TIME_CHECK, 0x4d2b0152, 0x7d5c, 0x498b, 0x88, 0xe2, 0x34, 0x34, 0x53, 0x92, 0xa2, 0xc5);
//
// Specifies how the processor should manage performance and efficiency
// tradeoffs when boosting frequency above the maximum.
//
// {45BCC044-D885-43e2-8605-EE0EC6E96B59}
//
DEFINE_GUID(GUID_PROCESSOR_PERF_BOOST_POLICY,
0x45bcc044, 0xd885, 0x43e2, 0x86, 0x5, 0xee, 0xe, 0xc6, 0xe9, 0x6b, 0x59);
#define PROCESSOR_PERF_BOOST_POLICY_DISABLED 0
#define PROCESSOR_PERF_BOOST_POLICY_MAX 100
//
// Specifies how a processor opportunistically increases frequency above
// the maximum when operating contitions allow it to do so safely.
//
// {BE337238-0D82-4146-A960-4F3749D470C7}
//
DEFINE_GUID(GUID_PROCESSOR_PERF_BOOST_MODE,
0xbe337238, 0xd82, 0x4146, 0xa9, 0x60, 0x4f, 0x37, 0x49, 0xd4, 0x70, 0xc7);
#define PROCESSOR_PERF_BOOST_MODE_DISABLED 0
#define PROCESSOR_PERF_BOOST_MODE_ENABLED 1
#define PROCESSOR_PERF_BOOST_MODE_AGGRESSIVE 2
#define PROCESSOR_PERF_BOOST_MODE_EFFICIENT_ENABLED 3
#define PROCESSOR_PERF_BOOST_MODE_EFFICIENT_AGGRESSIVE 4
#define PROCESSOR_PERF_BOOST_MODE_AGGRESSIVE_AT_GUARANTEED 5
#define PROCESSOR_PERF_BOOST_MODE_EFFICIENT_AGGRESSIVE_AT_GUARANTEED 6
#define PROCESSOR_PERF_BOOST_MODE_MAX PROCESSOR_PERF_BOOST_MODE_EFFICIENT_AGGRESSIVE_AT_GUARANTEED
//
// Specifies whether or not a procesor should autonomously select its
// operating performance state.
//
// {8BAA4A8A-14C6-4451-8E8B-14BDBD197537}
//
DEFINE_GUID(GUID_PROCESSOR_PERF_AUTONOMOUS_MODE,
0x8baa4a8a, 0x14c6, 0x4451, 0x8e, 0x8b, 0x14, 0xbd, 0xbd, 0x19, 0x75, 0x37);
#define PROCESSOR_PERF_AUTONOMOUS_MODE_DISABLED 0
#define PROCESSOR_PERF_AUTONOMOUS_MODE_ENABLED 1
//
// Specifies the tradeoff between performance and energy the processor should
// make when operating in autonomous mode.
//
// {36687F9E-E3A5-4dbf-B1DC-15EB381C6863}
DEFINE_GUID(GUID_PROCESSOR_PERF_ENERGY_PERFORMANCE_PREFERENCE,
0x36687f9e, 0xe3a5, 0x4dbf, 0xb1, 0xdc, 0x15, 0xeb, 0x38, 0x1c, 0x68, 0x63);
#define PROCESSOR_PERF_PERFORMANCE_PREFERENCE 0xff
#define PROCESSOR_PERF_ENERGY_PREFERENCE 0
//
// Specifies the window over which the processor should observe utilization when
// operating in autonomous mode, in microseconds.
//
// {CFEDA3D0-7697-4566-A922-A9086CD49DFA}
DEFINE_GUID(GUID_PROCESSOR_PERF_AUTONOMOUS_ACTIVITY_WINDOW,
0xcfeda3d0, 0x7697, 0x4566, 0xa9, 0x22, 0xa9, 0x8, 0x6c, 0xd4, 0x9d, 0xfa);
#define PROCESSOR_PERF_MINIMUM_ACTIVITY_WINDOW 0
#define PROCESSOR_PERF_MAXIMUM_ACTIVITY_WINDOW 1270000000
//
// Specifies whether the processor should perform duty cycling.
//
// {4E4450B3-6179-4e91-B8F1-5BB9938F81A1}
DEFINE_GUID(GUID_PROCESSOR_DUTY_CYCLING,
0x4e4450b3, 0x6179, 0x4e91, 0xb8, 0xf1, 0x5b, 0xb9, 0x93, 0x8f, 0x81, 0xa1);
#define PROCESSOR_DUTY_CYCLING_DISABLED 0
#define PROCESSOR_DUTY_CYCLING_ENABLED 1
//
// Specifies if idle state promotion and demotion values should be scaled based
// on the current peformance state.
//
// {6C2993B0-8F48-481f-BCC6-00DD2742AA06}
//
DEFINE_GUID( GUID_PROCESSOR_IDLE_ALLOW_SCALING, 0x6c2993b0, 0x8f48, 0x481f, 0xbc, 0xc6, 0x0, 0xdd, 0x27, 0x42, 0xaa, 0x6);
//
// Specifies if idle states should be disabled.
//
// {5D76A2CA-E8C0-402f-A133-2158492D58AD}
//
DEFINE_GUID( GUID_PROCESSOR_IDLE_DISABLE, 0x5d76a2ca, 0xe8c0, 0x402f, 0xa1, 0x33, 0x21, 0x58, 0x49, 0x2d, 0x58, 0xad);
//
// Specifies the deepest idle state type that should be used. If this value is
// set to zero, this setting is ignored. Values higher than supported by the
// processor then this setting has no effect.
//
// {9943e905-9a30-4ec1-9b99-44dd3b76f7a2}
//
DEFINE_GUID( GUID_PROCESSOR_IDLE_STATE_MAXIMUM, 0x9943e905, 0x9a30, 0x4ec1, 0x9b, 0x99, 0x44, 0xdd, 0x3b, 0x76, 0xf7, 0xa2);
//
// Specifies the time that elapsed since the last idle state promotion or
// demotion before idle states may be promoted or demoted again (in
// microseconds).
//
// {C4581C31-89AB-4597-8E2B-9C9CAB440E6B}
//
DEFINE_GUID( GUID_PROCESSOR_IDLE_TIME_CHECK, 0xc4581c31, 0x89ab, 0x4597, 0x8e, 0x2b, 0x9c, 0x9c, 0xab, 0x44, 0xe, 0x6b);
//
// Specifies the upper busy threshold that must be met before demoting the
// processor to a lighter idle state (in percentage).
//
// {4B92D758-5A24-4851-A470-815D78AEE119}
//
DEFINE_GUID( GUID_PROCESSOR_IDLE_DEMOTE_THRESHOLD, 0x4b92d758, 0x5a24, 0x4851, 0xa4, 0x70, 0x81, 0x5d, 0x78, 0xae, 0xe1, 0x19);
//
// Specifies the lower busy threshold that must be met before promoting the
// processor to a deeper idle state (in percentage).
//
// {7B224883-B3CC-4d79-819F-8374152CBE7C}
//
DEFINE_GUID( GUID_PROCESSOR_IDLE_PROMOTE_THRESHOLD, 0x7b224883, 0xb3cc, 0x4d79, 0x81, 0x9f, 0x83, 0x74, 0x15, 0x2c, 0xbe, 0x7c);
//
// Specifies the utilization threshold in percent that must be crossed in order to un-park cores.
//
// N.B. This power setting is DEPRECATED.
//
// {df142941-20f3-4edf-9a4a-9c83d3d717d1}
//
DEFINE_GUID( GUID_PROCESSOR_CORE_PARKING_INCREASE_THRESHOLD, 0xdf142941, 0x20f3, 0x4edf, 0x9a, 0x4a, 0x9c, 0x83, 0xd3, 0xd7, 0x17, 0xd1 );
//
// Specifies the utilization threshold in percent that must be crossed in order to park cores.
//
// N.B. This power setting is DEPRECATED.
//
// {68dd2f27-a4ce-4e11-8487-3794e4135dfa}
//
DEFINE_GUID( GUID_PROCESSOR_CORE_PARKING_DECREASE_THRESHOLD, 0x68dd2f27, 0xa4ce, 0x4e11, 0x84, 0x87, 0x37, 0x94, 0xe4, 0x13, 0x5d, 0xfa);
//
// Specifies, either as ideal, single or rocket, how aggressive core parking is when cores must be unparked.
//
// {c7be0679-2817-4d69-9d02-519a537ed0c6}
//
DEFINE_GUID( GUID_PROCESSOR_CORE_PARKING_INCREASE_POLICY, 0xc7be0679, 0x2817, 0x4d69, 0x9d, 0x02, 0x51, 0x9a, 0x53, 0x7e, 0xd0, 0xc6);
#define CORE_PARKING_POLICY_CHANGE_IDEAL 0
#define CORE_PARKING_POLICY_CHANGE_SINGLE 1
#define CORE_PARKING_POLICY_CHANGE_ROCKET 2
#define CORE_PARKING_POLICY_CHANGE_MULTISTEP 3
#define CORE_PARKING_POLICY_CHANGE_MAX CORE_PARKING_POLICY_CHANGE_MULTISTEP
//
// Specifies, either as ideal, single or rocket, how aggressive core parking is when cores must be parked.
//
// {71021b41-c749-4d21-be74-a00f335d582b}
//
DEFINE_GUID( GUID_PROCESSOR_CORE_PARKING_DECREASE_POLICY, 0x71021b41, 0xc749, 0x4d21, 0xbe, 0x74, 0xa0, 0x0f, 0x33, 0x5d, 0x58, 0x2b);
//
// Specifies, on a per processor group basis, the maximum number of cores that can be kept unparked.
//
// {ea062031-0e34-4ff1-9b6d-eb1059334028}
//
DEFINE_GUID( GUID_PROCESSOR_CORE_PARKING_MAX_CORES, 0xea062031, 0x0e34, 0x4ff1, 0x9b, 0x6d, 0xeb, 0x10, 0x59, 0x33, 0x40, 0x28);
//
// Specifies, on a per processor group basis, the maximum number of cores that
// can be kept unparked for Processor Power Efficiency Class 1.
//
// {ea062031-0e34-4ff1-9b6d-eb1059334029}
//
DEFINE_GUID( GUID_PROCESSOR_CORE_PARKING_MAX_CORES_1, 0xea062031, 0x0e34, 0x4ff1, 0x9b, 0x6d, 0xeb, 0x10, 0x59, 0x33, 0x40, 0x29);
//
// Specifies, on a per processor group basis, the minimum number of cores that must be kept unparked.
//
// {0cc5b647-c1df-4637-891a-dec35c318583}
//
DEFINE_GUID( GUID_PROCESSOR_CORE_PARKING_MIN_CORES, 0x0cc5b647, 0xc1df, 0x4637, 0x89, 0x1a, 0xde, 0xc3, 0x5c, 0x31, 0x85, 0x83);
//
// Specifies, on a per processor group basis, the minimum number of cores that
// must be kept unparked in Processor Power Efficiency Class 1.
//
// {0cc5b647-c1df-4637-891a-dec35c318584}
//
DEFINE_GUID( GUID_PROCESSOR_CORE_PARKING_MIN_CORES_1, 0x0cc5b647, 0xc1df, 0x4637, 0x89, 0x1a, 0xde, 0xc3, 0x5c, 0x31, 0x85, 0x84);
//
// Specifies, in milliseconds, the minimum amount of time a core must be parked before it can be unparked.
//
// {2ddd5a84-5a71-437e-912a-db0b8c788732}
//
DEFINE_GUID( GUID_PROCESSOR_CORE_PARKING_INCREASE_TIME, 0x2ddd5a84, 0x5a71, 0x437e, 0x91, 0x2a, 0xdb, 0x0b, 0x8c, 0x78, 0x87, 0x32);
//
// Specifies, in milliseconds, the minimum amount of time a core must be unparked before it can be parked.
//
// {dfd10d17-d5eb-45dd-877a-9a34ddd15c82}
//
DEFINE_GUID( GUID_PROCESSOR_CORE_PARKING_DECREASE_TIME, 0xdfd10d17, 0xd5eb, 0x45dd, 0x87, 0x7a, 0x9a, 0x34, 0xdd, 0xd1, 0x5c, 0x82);
//
// Specifies the factor by which to decrease affinity history on each core after each check.
//
// {8f7b45e3-c393-480a-878c-f67ac3d07082}
//
DEFINE_GUID( GUID_PROCESSOR_CORE_PARKING_AFFINITY_HISTORY_DECREASE_FACTOR, 0x8f7b45e3, 0xc393, 0x480a, 0x87, 0x8c, 0xf6, 0x7a, 0xc3, 0xd0, 0x70, 0x82);
//
// Specifies the threshold above which a core is considered to have had significant affinitized work scheduled to it while parked.
//
// {5b33697b-e89d-4d38-aa46-9e7dfb7cd2f9}
//
DEFINE_GUID( GUID_PROCESSOR_CORE_PARKING_AFFINITY_HISTORY_THRESHOLD, 0x5b33697b, 0xe89d, 0x4d38, 0xaa, 0x46, 0x9e, 0x7d, 0xfb, 0x7c, 0xd2, 0xf9);
//
// Specifies the weighting given to each occurence where affinitized work was scheduled to a parked core.
//
// {e70867f1-fa2f-4f4e-aea1-4d8a0ba23b20}
//
DEFINE_GUID( GUID_PROCESSOR_CORE_PARKING_AFFINITY_WEIGHTING, 0xe70867f1, 0xfa2f, 0x4f4e, 0xae, 0xa1, 0x4d, 0x8a, 0x0b, 0xa2, 0x3b, 0x20);
//
// Specifies the factor by which to decrease the over utilization history on each core after the current performance check.
//
// {1299023c-bc28-4f0a-81ec-d3295a8d815d}
//
DEFINE_GUID( GUID_PROCESSOR_CORE_PARKING_OVER_UTILIZATION_HISTORY_DECREASE_FACTOR, 0x1299023c, 0xbc28, 0x4f0a, 0x81, 0xec, 0xd3, 0x29, 0x5a, 0x8d, 0x81, 0x5d);
//
// Specifies the threshold above which a core is considered to have been recently over utilized while parked.
//
// {9ac18e92-aa3c-4e27-b307-01ae37307129}
//
DEFINE_GUID( GUID_PROCESSOR_CORE_PARKING_OVER_UTILIZATION_HISTORY_THRESHOLD, 0x9ac18e92, 0xaa3c, 0x4e27, 0xb3, 0x07, 0x01, 0xae, 0x37, 0x30, 0x71, 0x29);
//
// Specifies the weighting given to each occurence where a parked core is found to be over utilized.
//
// {8809c2d8-b155-42d4-bcda-0d345651b1db}
//
DEFINE_GUID( GUID_PROCESSOR_CORE_PARKING_OVER_UTILIZATION_WEIGHTING, 0x8809c2d8, 0xb155, 0x42d4, 0xbc, 0xda, 0x0d, 0x34, 0x56, 0x51, 0xb1, 0xdb);
//
// Specifies, in percentage, the busy threshold that must be met before a parked core is considered over utilized.
//
// {943c8cb6-6f93-4227-ad87-e9a3feec08d1}
//
DEFINE_GUID( GUID_PROCESSOR_CORE_PARKING_OVER_UTILIZATION_THRESHOLD, 0x943c8cb6, 0x6f93, 0x4227, 0xad, 0x87, 0xe9, 0xa3, 0xfe, 0xec, 0x08, 0xd1);
//
// Specifies if at least one processor per core should always remain unparked.
//
// {a55612aa-f624-42c6-a443-7397d064c04f}
//
DEFINE_GUID( GUID_PROCESSOR_PARKING_CORE_OVERRIDE, 0xa55612aa, 0xf624, 0x42c6, 0xa4, 0x43, 0x73, 0x97, 0xd0, 0x64, 0xc0, 0x4f);
//
// Specifies what performance state a processor should enter when first parked.
//
// {447235c7-6a8d-4cc0-8e24-9eaf70b96e2b}
//
DEFINE_GUID( GUID_PROCESSOR_PARKING_PERF_STATE, 0x447235c7, 0x6a8d, 0x4cc0, 0x8e, 0x24, 0x9e, 0xaf, 0x70, 0xb9, 0x6e, 0x2b);
//
// Specifies what performance state a processor should enter when first parked
// for Processor Power Efficiency Class 1.
//
// {447235c7-6a8d-4cc0-8e24-9eaf70b96e2c}
//
DEFINE_GUID( GUID_PROCESSOR_PARKING_PERF_STATE_1, 0x447235c7, 0x6a8d, 0x4cc0, 0x8e, 0x24, 0x9e, 0xaf, 0x70, 0xb9, 0x6e, 0x2c);
//
// Specify the busy threshold that must be met when calculating the concurrency of a node's workload.
//
// {2430ab6f-a520-44a2-9601-f7f23b5134b1}
//
DEFINE_GUID( GUID_PROCESSOR_PARKING_CONCURRENCY_THRESHOLD, 0x2430ab6f, 0xa520, 0x44a2, 0x96, 0x01, 0xf7, 0xf2, 0x3b, 0x51, 0x34, 0xb1);
//
// Specify the busy threshold that must be met by all cores in a concurrency set to unpark an extra core.
//
// {f735a673-2066-4f80-a0c5-ddee0cf1bf5d}
//
DEFINE_GUID( GUID_PROCESSOR_PARKING_HEADROOM_THRESHOLD, 0xf735a673, 0x2066, 0x4f80, 0xa0, 0xc5, 0xdd, 0xee, 0x0c, 0xf1, 0xbf, 0x5d);
//
// Specify the percentage utilization used to calculate the distribution concurrency.
//
// {4bdaf4e9-d103-46d7-a5f0-6280121616ef}
//
DEFINE_GUID( GUID_PROCESSOR_PARKING_DISTRIBUTION_THRESHOLD, 0x4bdaf4e9, 0xd103, 0x46d7, 0xa5, 0xf0, 0x62, 0x80, 0x12, 0x16, 0x16, 0xef);
//
// Specifies the number of perf time check intervals to average utility over.
//
// {7d24baa7-0b84-480f-840c-1b0743c00f5f}
//
DEFINE_GUID( GUID_PROCESSOR_PERF_HISTORY, 0x7d24baa7, 0x0b84, 0x480f, 0x84, 0x0c, 0x1b, 0x07, 0x43, 0xc0, 0x0f, 0x5f);
//
// Specifies the number of perf time check intervals to average utility over in
// Processor Power Efficiency Class 1.
//
// {7d24baa7-0b84-480f-840c-1b0743c00f60}
//
DEFINE_GUID( GUID_PROCESSOR_PERF_HISTORY_1, 0x7d24baa7, 0x0b84, 0x480f, 0x84, 0x0c, 0x1b, 0x07, 0x43, 0xc0, 0x0f, 0x60);
//
// Specifies the number of perf time check intervals to average utility over to
// determine performance increase.
//
// N.B. This power setting is DEPRECATED.
//
// {99B3EF01-752F-46a1-80FB-7730011F2354}
//
DEFINE_GUID( GUID_PROCESSOR_PERF_INCREASE_HISTORY, 0x99b3ef01, 0x752f, 0x46a1, 0x80, 0xfb, 0x77, 0x30, 0x1, 0x1f, 0x23, 0x54);
//
// Specifies the number of perf time check intervals to average utility over to
// determine performance decrease.
//
// N.B. This power setting is DEPRECATED.
//
// {0300F6F8-ABD6-45a9-B74F-4908691A40B5}
//
DEFINE_GUID( GUID_PROCESSOR_PERF_DECREASE_HISTORY, 0x300f6f8, 0xabd6, 0x45a9, 0xb7, 0x4f, 0x49, 0x8, 0x69, 0x1a, 0x40, 0xb5);
//
// Specifies the number of perf time check intervals to average utility over for
// core parking.
//
// N.B. This power setting is DEPRECATED.
//
// {77D7F282-8F1A-42cd-8537-45450A839BE8}
//
DEFINE_GUID( GUID_PROCESSOR_PERF_CORE_PARKING_HISTORY, 0x77d7f282, 0x8f1a, 0x42cd, 0x85, 0x37, 0x45, 0x45, 0xa, 0x83, 0x9b, 0xe8);
//
// Specifies whether latency sensitivity hints should be taken into account by
// the perf state engine.
//
// N.B. This power setting is DEPRECATED.
//
// {0822df31-9c83-441c-a079-0de4cf009c7b}
//
DEFINE_GUID( GUID_PROCESSOR_PERF_LATENCY_HINT, 0x0822df31, 0x9c83, 0x441c, 0xa0, 0x79, 0x0d, 0xe4, 0xcf, 0x00, 0x9c, 0x7b);
//
// Specifies the processor performance state in response to latency sensitivity hints.
//
// {619b7505-003b-4e82-b7a6-4dd29c300971}
//
DEFINE_GUID( GUID_PROCESSOR_PERF_LATENCY_HINT_PERF, 0x619b7505, 0x3b, 0x4e82, 0xb7, 0xa6, 0x4d, 0xd2, 0x9c, 0x30, 0x9, 0x71);
//
// Specifies the processor performance state in response to latency sensitivity
// hints for Processor Power Efficiency Class 1.
//
// {619b7505-003b-4e82-b7a6-4dd29c300972}
//
DEFINE_GUID( GUID_PROCESSOR_PERF_LATENCY_HINT_PERF_1, 0x619b7505, 0x3b, 0x4e82, 0xb7, 0xa6, 0x4d, 0xd2, 0x9c, 0x30, 0x9, 0x72);
//
// Specifies the minimum unparked processors when a latency hint is active
// (in a percentage).
//
// {616cdaa5-695e-4545-97ad-97dc2d1bdd88}
//
DEFINE_GUID( GUID_PROCESSOR_LATENCY_HINT_MIN_UNPARK, 0x616cdaa5, 0x695e, 0x4545, 0x97, 0xad, 0x97, 0xdc, 0x2d, 0x1b, 0xdd, 0x88);
//
// Specifies the minimum unparked processors when a latency hint is active
// for Processor Power Efficiency Class 1 (in a percentage).
//
// {616cdaa5-695e-4545-97ad-97dc2d1bdd89}
//
DEFINE_GUID( GUID_PROCESSOR_LATENCY_HINT_MIN_UNPARK_1, 0x616cdaa5, 0x695e, 0x4545, 0x97, 0xad, 0x97, 0xdc, 0x2d, 0x1b, 0xdd, 0x89);
//
// Specifies whether the core parking engine should distribute processor
// utility.
//
// {e0007330-f589-42ed-a401-5ddb10e785d3}
//
DEFINE_GUID( GUID_PROCESSOR_DISTRIBUTE_UTILITY, 0xe0007330, 0xf589, 0x42ed, 0xa4, 0x01, 0x5d, 0xdb, 0x10, 0xe7, 0x85, 0xd3);
//
// GUIDS to control PPM settings on computer system with more than one
// Processor Power Efficiency Classes (heterogeneous system).
// -----------------
//
// Specifies the current active heterogeneous policy.
//
// {7f2f5cfa-f10c-4823-b5e1-e93ae85f46b5}
//
DEFINE_GUID( GUID_PROCESSOR_HETEROGENEOUS_POLICY, 0x7f2f5cfa, 0xf10c, 0x4823, 0xb5, 0xe1, 0xe9, 0x3a, 0xe8, 0x5f, 0x46, 0xb5);
//
// Specifies the number of perf check cycles required to decrease the number of
// Processor Power Efficiency Class 1 processors.
//
// {7f2492b6-60b1-45e5-ae55-773f8cd5caec}
//
DEFINE_GUID( GUID_PROCESSOR_HETERO_DECREASE_TIME, 0x7f2492b6, 0x60b1, 0x45e5, 0xae, 0x55, 0x77, 0x3f, 0x8c, 0xd5, 0xca, 0xec);
//
// Specifies the number of perf check cycles required to increase the number of
// Processor Power Efficiency Class 1 processors.
//
// {4009efa7-e72d-4cba-9edf-91084ea8cbc3}
//
DEFINE_GUID( GUID_PROCESSOR_HETERO_INCREASE_TIME, 0x4009efa7, 0xe72d, 0x4cba, 0x9e, 0xdf, 0x91, 0x08, 0x4e, 0xa8, 0xcb, 0xc3);
//
// Specifies the performance level (in units of Processor Power Efficiency
// Class 0 processor performance) at which the number of Processor Power
// Efficiency Class 1 processors is decreased.
//
// {f8861c27-95e7-475c-865b-13c0cb3f9d6b}
//
DEFINE_GUID( GUID_PROCESSOR_HETERO_DECREASE_THRESHOLD, 0xf8861c27, 0x95e7, 0x475c, 0x86, 0x5b, 0x13, 0xc0, 0xcb, 0x3f, 0x9d, 0x6b);
//
// Specifies the performance level (in units of Processor Power Efficiency
// Class 0 processor performance) at which the number of Processor Power
// Efficiency Class 1 processors is increased.
//
// {b000397d-9b0b-483d-98c9-692a6060cfbf}
//
DEFINE_GUID( GUID_PROCESSOR_HETERO_INCREASE_THRESHOLD, 0xb000397d, 0x9b0b, 0x483d, 0x98, 0xc9, 0x69, 0x2a, 0x60, 0x60, 0xcf, 0xbf);
//
// Specifies the performance target floor of a Processor Power Efficiency
// Class 0 processor when the system unparks Processor Power Efficiency Class 1
// processor(s).
//
// {fddc842b-8364-4edc-94cf-c17f60de1c80}
//
DEFINE_GUID( GUID_PROCESSOR_CLASS0_FLOOR_PERF, 0xfddc842b, 0x8364, 0x4edc, 0x94, 0xcf, 0xc1, 0x7f, 0x60, 0xde, 0x1c, 0x80);
//
// Specifies the initial performance target of a Processor Power Efficiency
// Class 1 processor when the system makes a transition up from zero Processor
// Power Efficiency Class 1 processors.
//
// {1facfc65-a930-4bc5-9f38-504ec097bbc0}
//
DEFINE_GUID( GUID_PROCESSOR_CLASS1_INITIAL_PERF, 0x1facfc65, 0xa930, 0x4bc5, 0x9f, 0x38, 0x50, 0x4e, 0xc0, 0x97, 0xbb, 0xc0);
//
// Specifies active vs passive cooling. Although not directly related to
// processor settings, it is the processor that gets throttled if we're doing
// passive cooling, so it is fairly strongly related.
// {94D3A615-A899-4AC5-AE2B-E4D8F634367F}
//
DEFINE_GUID( GUID_SYSTEM_COOLING_POLICY, 0x94D3A615, 0xA899, 0x4AC5, 0xAE, 0x2B, 0xE4, 0xD8, 0xF6, 0x34, 0x36, 0x7F);
// Lock Console on Wake
// --------------------
//
// Specifies the behavior of the system when we wake from standby or
// hibernate. If this is set, then we will cause the console to lock
// after we resume.
//
DEFINE_GUID( GUID_LOCK_CONSOLE_ON_WAKE, 0x0E796BDB, 0x100D, 0x47D6, 0xA2, 0xD5, 0xF7, 0xD2, 0xDA, 0xA5, 0x1F, 0x51 );
// Device idle characteristics
// ---------------------------
//
// Specifies whether to use the "performance" or "conservative" timeouts for
// device idle management.
//
// 4faab71a-92e5-4726-b531-224559672d19
//
DEFINE_GUID( GUID_DEVICE_IDLE_POLICY, 0x4faab71a, 0x92e5, 0x4726, 0xb5, 0x31, 0x22, 0x45, 0x59, 0x67, 0x2d, 0x19 );
#define POWER_DEVICE_IDLE_POLICY_PERFORMANCE 0
#define POWER_DEVICE_IDLE_POLICY_CONSERVATIVE 1
//
// Specifies standby connectivity preference.
//
// F15576E8-98B7-4186-B944-EAFA664402D9
DEFINE_GUID( GUID_CONNECTIVITY_IN_STANDBY, 0xF15576E8, 0x98B7, 0x4186, 0xB9, 0x44, 0xEA, 0xFA, 0x66, 0x44, 0x02, 0xD9 );
#define POWER_CONNECTIVITY_IN_STANDBY_DISABLED 0
#define POWER_CONNECTIVITY_IN_STANDBY_ENABLED 1
// AC/DC power source
// ------------------
//
// Specifies the power source for the system. consumers may register for
// notification when the power source changes and will be notified with
// one of 3 values:
// 0 - Indicates the system is being powered by an AC power source.
// 1 - Indicates the system is being powered by a DC power source.
// 2 - Indicates the system is being powered by a short-term DC power
// source. For example, this would be the case if the system is
// being powed by a short-term battery supply in a backing UPS
// system. When this value is recieved, the consumer should make
// preparations for either a system hibernate or system shutdown.
//
// { 5D3E9A59-E9D5-4B00-A6BD-FF34FF516548 }
DEFINE_GUID( GUID_ACDC_POWER_SOURCE, 0x5D3E9A59, 0xE9D5, 0x4B00, 0xA6, 0xBD, 0xFF, 0x34, 0xFF, 0x51, 0x65, 0x48 );
// Lid state changes
// -----------------
//
// Specifies the current state of the lid (open or closed). The callback won't
// be called at all until a lid device is found and its current state is known.
//
// Values:
//
// 0 - closed
// 1 - opened
//
// { BA3E0F4D-B817-4094-A2D1-D56379E6A0F3 }
//
DEFINE_GUID( GUID_LIDSWITCH_STATE_CHANGE, 0xBA3E0F4D, 0xB817, 0x4094, 0xA2, 0xD1, 0xD5, 0x63, 0x79, 0xE6, 0xA0, 0xF3 );
// Battery status changes
// ----------------------
//
// Specifies the percentage of battery life remaining. The consumer
// may register for notification in order to track battery life in
// a fine-grained manner.
//
// Once registered, the consumer can expect to be notified as the battery
// life percentage changes.
//
// The consumer will recieve a value between 0 and 100 (inclusive) which
// indicates percent battery life remaining.
//
// { A7AD8041-B45A-4CAE-87A3-EECBB468A9E1 }
DEFINE_GUID( GUID_BATTERY_PERCENTAGE_REMAINING, 0xA7AD8041, 0xB45A, 0x4CAE, 0x87, 0xA3, 0xEE, 0xCB, 0xB4, 0x68, 0xA9, 0xE1 );
// Specifies change in number of batteries present on the system. The consumer
// may register for notification in order to track change in number of batteries
// available on a system.
//
// Once registered, the consumer can expect to be notified whenever the
// batteries are added or removed from the system.
//
// The consumer will recieve a value indicating number of batteries currently
// present on the system.
//
// {7D263F15-FCA4-49E5-854B-A9F2BFBD5C24}
DEFINE_GUID( GUID_BATTERY_COUNT, 0x7d263f15, 0xfca4, 0x49e5, 0x85, 0x4b, 0xa9, 0xf2, 0xbf, 0xbd, 0x5c, 0x24 );
//
// Global notification indicating to listeners user activity/presence accross
// all sessions in the system (Present, NotPresent, Inactive)
//
// {786E8A1D-B427-4344-9207-09E70BDCBEA9}
DEFINE_GUID( GUID_GLOBAL_USER_PRESENCE, 0x786e8a1d, 0xb427, 0x4344, 0x92, 0x7, 0x9, 0xe7, 0xb, 0xdc, 0xbe, 0xa9 );
//
// Session specific notification indicating to listeners whether or not the display
// related to the given session is on/off/dim
//
// N.B. This is a session-specific notification, sent only to interactive
// session registrants. Session 0 and kernel mode consumers do not receive
// this notification.
//
// {2B84C20E-AD23-4ddf-93DB-05FFBD7EFCA5}
DEFINE_GUID( GUID_SESSION_DISPLAY_STATUS, 0x2b84c20e, 0xad23, 0x4ddf, 0x93, 0xdb, 0x5, 0xff, 0xbd, 0x7e, 0xfc, 0xa5 );
//
// Session specific notification indicating to listeners user activity/presence
//(Present, NotPresent, Inactive)
//
// N.B. This is a session-specific notification, sent only to interactive
// session registrants. Session 0 and kernel mode consumers do not receive
// this notification.
// {3C0F4548-C03F-4c4d-B9F2-237EDE686376}
DEFINE_GUID( GUID_SESSION_USER_PRESENCE, 0x3c0f4548, 0xc03f, 0x4c4d, 0xb9, 0xf2, 0x23, 0x7e, 0xde, 0x68, 0x63, 0x76 );
// Notification to listeners that the system is fairly busy and won't be moving
// into an idle state any time soon. This can be used as a hint to listeners
// that now might be a good time to do background tasks.
//
DEFINE_GUID( GUID_IDLE_BACKGROUND_TASK, 0x515C31D8, 0xF734, 0x163D, 0xA0, 0xFD, 0x11, 0xA0, 0x8C, 0x91, 0xE8, 0xF1 );
// Notification to listeners that the system is fairly busy and won't be moving
// into an idle state any time soon. This can be used as a hint to listeners
// that now might be a good time to do background tasks.
//
// { CF23F240-2A54-48D8-B114-DE1518FF052E }
DEFINE_GUID( GUID_BACKGROUND_TASK_NOTIFICATION, 0xCF23F240, 0x2A54, 0x48D8, 0xB1, 0x14, 0xDE, 0x15, 0x18, 0xFF, 0x05, 0x2E );
// Define a GUID that will represent the action of a direct experience button
// on the platform. Users will register for this DPPE setting and recieve
// notification when the h/w button is pressed.
//
// { 1A689231-7399-4E9A-8F99-B71F999DB3FA }
//
DEFINE_GUID( GUID_APPLAUNCH_BUTTON, 0x1A689231, 0x7399, 0x4E9A, 0x8F, 0x99, 0xB7, 0x1F, 0x99, 0x9D, 0xB3, 0xFA );
// PCI Express power settings
// ------------------------
//
// Specifies the subgroup which will contain all of the PCI Express
// settings for a single policy.
//
// {501a4d13-42af-4429-9fd1-a8218c268e20}
//
DEFINE_GUID( GUID_PCIEXPRESS_SETTINGS_SUBGROUP, 0x501a4d13, 0x42af,0x4429, 0x9f, 0xd1, 0xa8, 0x21, 0x8c, 0x26, 0x8e, 0x20 );
// Specifies the PCI Express ASPM power policy.
//
// {ee12f906-d277-404b-b6da-e5fa1a576df5}
//
DEFINE_GUID( GUID_PCIEXPRESS_ASPM_POLICY, 0xee12f906, 0xd277, 0x404b, 0xb6, 0xda, 0xe5, 0xfa, 0x1a, 0x57, 0x6d, 0xf5 );
// POWER Shutdown settings
// ------------------------
//
// Specifies if forced shutdown should be used for all button and lid initiated
// shutdown actions.
//
// {833a6b62-dfa4-46d1-82f8-e09e34d029d6}
//
DEFINE_GUID( GUID_ENABLE_SWITCH_FORCED_SHUTDOWN, 0x833a6b62, 0xdfa4, 0x46d1, 0x82, 0xf8, 0xe0, 0x9e, 0x34, 0xd0, 0x29, 0xd6 );
// Interrupt Steering power settings
// ------------------------
//
// {48672F38-7A9A-4bb2-8BF8-3D85BE19DE4E}
DEFINE_GUID(GUID_INTSTEER_SUBGROUP,
0x48672f38, 0x7a9a, 0x4bb2, 0x8b, 0xf8, 0x3d, 0x85, 0xbe, 0x19, 0xde, 0x4e);
// {2BFC24F9-5EA2-4801-8213-3DBAE01AA39D}
DEFINE_GUID(GUID_INTSTEER_MODE,
0x2bfc24f9, 0x5ea2, 0x4801, 0x82, 0x13, 0x3d, 0xba, 0xe0, 0x1a, 0xa3, 0x9d);
// {73CDE64D-D720-4bb2-A860-C755AFE77EF2}
DEFINE_GUID(GUID_INTSTEER_LOAD_PER_PROC_TRIGGER,
0x73cde64d, 0xd720, 0x4bb2, 0xa8, 0x60, 0xc7, 0x55, 0xaf, 0xe7, 0x7e, 0xf2);
// {D6BA4903-386F-4c2c-8ADB-5C21B3328D25}
DEFINE_GUID(GUID_INTSTEER_TIME_UNPARK_TRIGGER,
0xd6ba4903, 0x386f, 0x4c2c, 0x8a, 0xdb, 0x5c, 0x21, 0xb3, 0x32, 0x8d, 0x25);
typedef enum _SYSTEM_POWER_STATE {
PowerSystemUnspecified = 0,
PowerSystemWorking = 1,
PowerSystemSleeping1 = 2,
PowerSystemSleeping2 = 3,
PowerSystemSleeping3 = 4,
PowerSystemHibernate = 5,
PowerSystemShutdown = 6,
PowerSystemMaximum = 7
} SYSTEM_POWER_STATE, *PSYSTEM_POWER_STATE;
#define POWER_SYSTEM_MAXIMUM 7
typedef enum {
PowerActionNone = 0,
PowerActionReserved,
PowerActionSleep,
PowerActionHibernate,
PowerActionShutdown,
PowerActionShutdownReset,
PowerActionShutdownOff,
PowerActionWarmEject,
PowerActionDisplayOff
} POWER_ACTION, *PPOWER_ACTION;
typedef enum _DEVICE_POWER_STATE {
PowerDeviceUnspecified = 0,
PowerDeviceD0,
PowerDeviceD1,
PowerDeviceD2,
PowerDeviceD3,
PowerDeviceMaximum
} DEVICE_POWER_STATE, *PDEVICE_POWER_STATE;
typedef enum _MONITOR_DISPLAY_STATE {
PowerMonitorOff = 0,
PowerMonitorOn,
PowerMonitorDim
} MONITOR_DISPLAY_STATE, *PMONITOR_DISPLAY_STATE;
typedef enum _USER_ACTIVITY_PRESENCE {
PowerUserPresent = 0,
PowerUserNotPresent,
PowerUserInactive,
PowerUserMaximum,
PowerUserInvalid = PowerUserMaximum
} USER_ACTIVITY_PRESENCE, *PUSER_ACTIVITY_PRESENCE;
#define ES_SYSTEM_REQUIRED ((DWORD)0x00000001)
#define ES_DISPLAY_REQUIRED ((DWORD)0x00000002)
#define ES_USER_PRESENT ((DWORD)0x00000004)
#define ES_AWAYMODE_REQUIRED ((DWORD)0x00000040)
#define ES_CONTINUOUS ((DWORD)0x80000000)
typedef DWORD EXECUTION_STATE, *PEXECUTION_STATE;
typedef enum {
LT_DONT_CARE,
LT_LOWEST_LATENCY
} LATENCY_TIME;
#define DIAGNOSTIC_REASON_VERSION 0
#define DIAGNOSTIC_REASON_SIMPLE_STRING 0x00000001
#define DIAGNOSTIC_REASON_DETAILED_STRING 0x00000002
#define DIAGNOSTIC_REASON_NOT_SPECIFIED 0x80000000
#define DIAGNOSTIC_REASON_INVALID_FLAGS (~0x80000007)
//
// Defines for power request APIs
//
#define POWER_REQUEST_CONTEXT_VERSION DIAGNOSTIC_REASON_VERSION
#define POWER_REQUEST_CONTEXT_SIMPLE_STRING DIAGNOSTIC_REASON_SIMPLE_STRING
#define POWER_REQUEST_CONTEXT_DETAILED_STRING DIAGNOSTIC_REASON_DETAILED_STRING
typedef enum _POWER_REQUEST_TYPE {
PowerRequestDisplayRequired,
PowerRequestSystemRequired,
PowerRequestAwayModeRequired,
PowerRequestExecutionRequired
} POWER_REQUEST_TYPE, *PPOWER_REQUEST_TYPE;
// end_ntminiport
#if (NTDDI_VERSION >= NTDDI_WINXP)
//-----------------------------------------------------------------------------
// Device Power Information
// Accessable via CM_Get_DevInst_Registry_Property_Ex(CM_DRP_DEVICE_POWER_DATA)
//-----------------------------------------------------------------------------
#define PDCAP_D0_SUPPORTED 0x00000001
#define PDCAP_D1_SUPPORTED 0x00000002
#define PDCAP_D2_SUPPORTED 0x00000004
#define PDCAP_D3_SUPPORTED 0x00000008
#define PDCAP_WAKE_FROM_D0_SUPPORTED 0x00000010
#define PDCAP_WAKE_FROM_D1_SUPPORTED 0x00000020
#define PDCAP_WAKE_FROM_D2_SUPPORTED 0x00000040
#define PDCAP_WAKE_FROM_D3_SUPPORTED 0x00000080
#define PDCAP_WARM_EJECT_SUPPORTED 0x00000100
typedef struct CM_Power_Data_s {
DWORD PD_Size;
DEVICE_POWER_STATE PD_MostRecentPowerState;
DWORD PD_Capabilities;
DWORD PD_D1Latency;
DWORD PD_D2Latency;
DWORD PD_D3Latency;
DEVICE_POWER_STATE PD_PowerStateMapping[POWER_SYSTEM_MAXIMUM];
SYSTEM_POWER_STATE PD_DeepestSystemWake;
} CM_POWER_DATA, *PCM_POWER_DATA;
#endif // (NTDDI_VERSION >= NTDDI_WINXP)
// begin_wdm
typedef enum {
SystemPowerPolicyAc,
SystemPowerPolicyDc,
VerifySystemPolicyAc,
VerifySystemPolicyDc,
SystemPowerCapabilities,
SystemBatteryState,
SystemPowerStateHandler,
ProcessorStateHandler,
SystemPowerPolicyCurrent,
AdministratorPowerPolicy,
SystemReserveHiberFile,
ProcessorInformation,
SystemPowerInformation,
ProcessorStateHandler2,
LastWakeTime, // Compare with KeQueryInterruptTime()
LastSleepTime, // Compare with KeQueryInterruptTime()
SystemExecutionState,
SystemPowerStateNotifyHandler,
ProcessorPowerPolicyAc,
ProcessorPowerPolicyDc,
VerifyProcessorPowerPolicyAc,
VerifyProcessorPowerPolicyDc,
ProcessorPowerPolicyCurrent,
SystemPowerStateLogging,
SystemPowerLoggingEntry,
SetPowerSettingValue,
NotifyUserPowerSetting,
PowerInformationLevelUnused0,
SystemMonitorHiberBootPowerOff,
SystemVideoState,
TraceApplicationPowerMessage,
TraceApplicationPowerMessageEnd,
ProcessorPerfStates,
ProcessorIdleStates,
ProcessorCap,
SystemWakeSource,
SystemHiberFileInformation,
TraceServicePowerMessage,
ProcessorLoad,
PowerShutdownNotification,
MonitorCapabilities,
SessionPowerInit,
SessionDisplayState,
PowerRequestCreate,
PowerRequestAction,
GetPowerRequestList,
ProcessorInformationEx,
NotifyUserModeLegacyPowerEvent,
GroupPark,
ProcessorIdleDomains,
WakeTimerList,
SystemHiberFileSize,
ProcessorIdleStatesHv,
ProcessorPerfStatesHv,
ProcessorPerfCapHv,
ProcessorSetIdle,
LogicalProcessorIdling,
UserPresence,
PowerSettingNotificationName,
GetPowerSettingValue,
IdleResiliency,
SessionRITState,
SessionConnectNotification,
SessionPowerCleanup,
SessionLockState,
SystemHiberbootState,
PlatformInformation,
PdcInvocation,
MonitorInvocation,
FirmwareTableInformationRegistered,
SetShutdownSelectedTime,
SuspendResumeInvocation,
PlmPowerRequestCreate,
ScreenOff,
CsDeviceNotification,
PlatformRole,
LastResumePerformance,
DisplayBurst,
ExitLatencySamplingPercentage,
RegisterSpmPowerSettings,
PlatformIdleStates,
ProcessorIdleVeto,
PlatformIdleVeto,
SystemBatteryStatePrecise,
ThermalEvent,
PowerRequestActionInternal,
BatteryDeviceState,
PowerInformationInternal,
ThermalStandby,
SystemHiberFileType,
PhysicalPowerButtonPress,
PowerInformationLevelMaximum
} POWER_INFORMATION_LEVEL;
//
// User Presence Values
//
typedef enum {
UserNotPresent = 0,
UserPresent = 1,
UserUnknown = 0xff
} POWER_USER_PRESENCE_TYPE, *PPOWER_USER_PRESENCE_TYPE;
typedef struct _POWER_USER_PRESENCE {
POWER_USER_PRESENCE_TYPE UserPresence;
} POWER_USER_PRESENCE, *PPOWER_USER_PRESENCE;
//
// Session Connect/Disconnect
//
typedef struct _POWER_SESSION_CONNECT {
BOOLEAN Connected; // TRUE - connected, FALSE - disconnected
BOOLEAN Console; // TRUE - console, FALSE - TS (not used for Connected = FALSE)
} POWER_SESSION_CONNECT, *PPOWER_SESSION_CONNECT;
typedef struct _POWER_SESSION_TIMEOUTS {
DWORD InputTimeout;
DWORD DisplayTimeout;
} POWER_SESSION_TIMEOUTS, *PPOWER_SESSION_TIMEOUTS;
//
// Session RIT State
//
typedef struct _POWER_SESSION_RIT_STATE {
BOOLEAN Active; // TRUE - RIT input received, FALSE - RIT timeout
DWORD LastInputTime; // last input time held for this session
} POWER_SESSION_RIT_STATE, *PPOWER_SESSION_RIT_STATE;
//
// Winlogon notifications
//
typedef struct _POWER_SESSION_WINLOGON {
DWORD SessionId; // the Win32k session identifier
BOOLEAN Console; // TRUE - for console session, FALSE - for remote session
BOOLEAN Locked; // TRUE - lock, FALSE - unlock
} POWER_SESSION_WINLOGON, *PPOWER_SESSION_WINLOGON;
//
// Idle resiliency
//
typedef struct _POWER_IDLE_RESILIENCY {
DWORD CoalescingTimeout;
DWORD IdleResiliencyPeriod;
} POWER_IDLE_RESILIENCY, *PPOWER_IDLE_RESILIENCY;
//
// Monitor on/off reasons
//
typedef enum {
MonitorRequestReasonUnknown,
MonitorRequestReasonPowerButton,
MonitorRequestReasonRemoteConnection,
MonitorRequestReasonScMonitorpower,
MonitorRequestReasonUserInput,
MonitorRequestReasonAcDcDisplayBurst,
MonitorRequestReasonUserDisplayBurst,
MonitorRequestReasonPoSetSystemState,
MonitorRequestReasonSetThreadExecutionState,
MonitorRequestReasonFullWake,
MonitorRequestReasonSessionUnlock,
MonitorRequestReasonScreenOffRequest,
MonitorRequestReasonIdleTimeout,
MonitorRequestReasonPolicyChange,
MonitorRequestReasonSleepButton,
MonitorRequestReasonLid,
MonitorRequestReasonBatteryCountChange,
MonitorRequestReasonGracePeriod,
MonitorRequestReasonPnP,
MonitorRequestReasonDP,
MonitorRequestReasonSxTransition,
MonitorRequestReasonSystemIdle,
MonitorRequestReasonNearProximity,
MonitorRequestReasonThermalStandby,
MonitorRequestReasonResumePdc,
MonitorRequestReasonResumeS4,
MonitorRequestReasonTerminal,
MonitorRequestReasonPdcSignal,
MonitorRequestReasonMax
} POWER_MONITOR_REQUEST_REASON;
typedef enum _POWER_MONITOR_REQUEST_TYPE {
MonitorRequestTypeOff,
MonitorRequestTypeOnAndPresent,
MonitorRequestTypeToggleOn
} POWER_MONITOR_REQUEST_TYPE;
//
// Monitor invocation
//
typedef struct _POWER_MONITOR_INVOCATION {
BOOLEAN Console;
POWER_MONITOR_REQUEST_REASON RequestReason;
} POWER_MONITOR_INVOCATION, *PPOWER_MONITOR_INVOCATION;
//
// Last resume performance structure
//
typedef struct _RESUME_PERFORMANCE {
DWORD PostTimeMs;
ULONGLONG TotalResumeTimeMs;
ULONGLONG ResumeCompleteTimestamp;
} RESUME_PERFORMANCE, *PRESUME_PERFORMANCE;
//
// Power Setting definitions
//
typedef enum {
PoAc,
PoDc,
PoHot,
PoConditionMaximum
} SYSTEM_POWER_CONDITION;
typedef struct {
//
// Version of this structure. Currently should be set to
// POWER_SETTING_VALUE_VERSION.
//
DWORD Version;
//
// GUID representing the power setting being applied.
//
GUID Guid;
//
// What power state should this setting be applied to? E.g.
// AC, DC, thermal, ...
//
SYSTEM_POWER_CONDITION PowerCondition;
//
// Length (in bytes) of the 'Data' member.
//
DWORD DataLength;
//
// Data which contains the actual setting value.
//
BYTE Data[ANYSIZE_ARRAY];
} SET_POWER_SETTING_VALUE, *PSET_POWER_SETTING_VALUE;
#define POWER_SETTING_VALUE_VERSION (0x1)
typedef struct {
GUID Guid;
} NOTIFY_USER_POWER_SETTING, *PNOTIFY_USER_POWER_SETTING;
//
// Package definition for an experience button device notification. When
// someone registers for GUID_EXPERIENCE_BUTTON, this is the definition of
// the setting data they'll get.
//
typedef struct _APPLICATIONLAUNCH_SETTING_VALUE {
//
// System time when the most recent button press ocurred. Note that this is
// specified in 100ns internvals since January 1, 1601.
//
LARGE_INTEGER ActivationTime;
//
// Reserved for internal use.
//
DWORD Flags;
//
// which instance of this device was pressed?
//
DWORD ButtonInstanceID;
} APPLICATIONLAUNCH_SETTING_VALUE, *PAPPLICATIONLAUNCH_SETTING_VALUE;
//
// define platform roles
//
typedef enum _POWER_PLATFORM_ROLE {
PlatformRoleUnspecified = 0,
PlatformRoleDesktop,
PlatformRoleMobile,
PlatformRoleWorkstation,
PlatformRoleEnterpriseServer,
PlatformRoleSOHOServer,
PlatformRoleAppliancePC,
PlatformRolePerformanceServer, // v1 last supported
PlatformRoleSlate, // v2 last supported
PlatformRoleMaximum
} POWER_PLATFORM_ROLE, *PPOWER_PLATFORM_ROLE;
#define POWER_PLATFORM_ROLE_V1 (0x00000001)
#define POWER_PLATFORM_ROLE_V1_MAX (PlatformRolePerformanceServer + 1)
#define POWER_PLATFORM_ROLE_V2 (0x00000002)
#define POWER_PLATFORM_ROLE_V2_MAX (PlatformRoleSlate + 1)
#if (NTDDI_VERSION >= NTDDI_WIN8)
#define POWER_PLATFORM_ROLE_VERSION POWER_PLATFORM_ROLE_V2
#define POWER_PLATFORM_ROLE_VERSION_MAX POWER_PLATFORM_ROLE_V2_MAX
#else
#define POWER_PLATFORM_ROLE_VERSION POWER_PLATFORM_ROLE_V1
#define POWER_PLATFORM_ROLE_VERSION_MAX POWER_PLATFORM_ROLE_V1_MAX
#endif
typedef struct _POWER_PLATFORM_INFORMATION {
BOOLEAN AoAc;
} POWER_PLATFORM_INFORMATION, *PPOWER_PLATFORM_INFORMATION;
//
// System power manager capabilities
//
#if (NTDDI_VERSION >= NTDDI_WINXP) || !defined(_BATCLASS_)
typedef struct {
DWORD Granularity;
DWORD Capacity;
} BATTERY_REPORTING_SCALE, *PBATTERY_REPORTING_SCALE;
#endif // (NTDDI_VERSION >= NTDDI_WINXP) || !defined(_BATCLASS_)
//
typedef struct {
DWORD Frequency;
DWORD Flags;
DWORD PercentFrequency;
} PPM_WMI_LEGACY_PERFSTATE, *PPPM_WMI_LEGACY_PERFSTATE;
typedef struct {
DWORD Latency;
DWORD Power;
DWORD TimeCheck;
BYTE PromotePercent;
BYTE DemotePercent;
BYTE StateType;
BYTE Reserved;
DWORD StateFlags;
DWORD Context;
DWORD IdleHandler;
DWORD Reserved1; // reserved for future use
} PPM_WMI_IDLE_STATE, *PPPM_WMI_IDLE_STATE;
typedef struct {
DWORD Type;
DWORD Count;
DWORD TargetState; // current idle state
DWORD OldState; // previous idle state
DWORD64 TargetProcessors;
PPM_WMI_IDLE_STATE State[ANYSIZE_ARRAY];
} PPM_WMI_IDLE_STATES, *PPPM_WMI_IDLE_STATES;
typedef struct {
DWORD Type;
DWORD Count;
DWORD TargetState; // current idle state
DWORD OldState; // previous idle state
PVOID TargetProcessors;
PPM_WMI_IDLE_STATE State[ANYSIZE_ARRAY];
} PPM_WMI_IDLE_STATES_EX, *PPPM_WMI_IDLE_STATES_EX;
typedef struct {
DWORD Frequency; // in Mhz
DWORD Power; // in milliwatts
BYTE PercentFrequency;
BYTE IncreaseLevel; // goto higher state
BYTE DecreaseLevel; // goto lower state
BYTE Type; // performance or throttle
DWORD IncreaseTime; // in tick counts
DWORD DecreaseTime; // in tick counts
DWORD64 Control; // control value
DWORD64 Status; // control value
DWORD HitCount;
DWORD Reserved1; // reserved for future use
DWORD64 Reserved2;
DWORD64 Reserved3;
} PPM_WMI_PERF_STATE, *PPPM_WMI_PERF_STATE;
typedef struct {
DWORD Count;
DWORD MaxFrequency;
DWORD CurrentState; // current state
DWORD MaxPerfState; // fastest state considering policy restrictions
DWORD MinPerfState; // slowest state considering policy restrictions
DWORD LowestPerfState; // slowest perf state, fixed, aka the "knee"
DWORD ThermalConstraint;
BYTE BusyAdjThreshold;
BYTE PolicyType; // domain coordination
BYTE Type;
BYTE Reserved;
DWORD TimerInterval;
DWORD64 TargetProcessors; // domain affinity
DWORD PStateHandler;
DWORD PStateContext;
DWORD TStateHandler;
DWORD TStateContext;
DWORD FeedbackHandler;
DWORD Reserved1;
DWORD64 Reserved2;
PPM_WMI_PERF_STATE State[ANYSIZE_ARRAY];
} PPM_WMI_PERF_STATES, *PPPM_WMI_PERF_STATES;
typedef struct {
DWORD Count;
DWORD MaxFrequency;
DWORD CurrentState; // current state
DWORD MaxPerfState; // fastest state considering policy restrictions
DWORD MinPerfState; // slowest state considering policy restrictions
DWORD LowestPerfState; // slowest perf state, fixed, aka the "knee"
DWORD ThermalConstraint;
BYTE BusyAdjThreshold;
BYTE PolicyType; // domain coordination
BYTE Type;
BYTE Reserved;
DWORD TimerInterval;
PVOID TargetProcessors; // domain affinity
DWORD PStateHandler;
DWORD PStateContext;
DWORD TStateHandler;
DWORD TStateContext;
DWORD FeedbackHandler;
DWORD Reserved1;
DWORD64 Reserved2;
PPM_WMI_PERF_STATE State[ANYSIZE_ARRAY];
} PPM_WMI_PERF_STATES_EX, *PPPM_WMI_PERF_STATES_EX;
//
// Legacy processor idle accounting.
//
#define PROC_IDLE_BUCKET_COUNT 6
typedef struct {
DWORD IdleTransitions;
DWORD FailedTransitions;
DWORD InvalidBucketIndex;
DWORD64 TotalTime;
DWORD IdleTimeBuckets[PROC_IDLE_BUCKET_COUNT];
} PPM_IDLE_STATE_ACCOUNTING, *PPPM_IDLE_STATE_ACCOUNTING;
typedef struct {
DWORD StateCount;
DWORD TotalTransitions;
DWORD ResetCount;
DWORD64 StartTime;
PPM_IDLE_STATE_ACCOUNTING State[ANYSIZE_ARRAY];
} PPM_IDLE_ACCOUNTING, *PPPM_IDLE_ACCOUNTING;
//
// Processor idle accounting.
//
#define PROC_IDLE_BUCKET_COUNT_EX 16
typedef struct {
DWORD64 TotalTimeUs;
DWORD MinTimeUs;
DWORD MaxTimeUs;
DWORD Count;
} PPM_IDLE_STATE_BUCKET_EX, *PPPM_IDLE_STATE_BUCKET_EX;
typedef struct {
DWORD64 TotalTime;
DWORD IdleTransitions;
DWORD FailedTransitions;
DWORD InvalidBucketIndex;
DWORD MinTimeUs;
DWORD MaxTimeUs;
DWORD CancelledTransitions;
PPM_IDLE_STATE_BUCKET_EX IdleTimeBuckets[PROC_IDLE_BUCKET_COUNT_EX];
} PPM_IDLE_STATE_ACCOUNTING_EX, *PPPM_IDLE_STATE_ACCOUNTING_EX;
typedef struct {
DWORD StateCount;
DWORD TotalTransitions;
DWORD ResetCount;
DWORD AbortCount;
DWORD64 StartTime;
_Field_size_(StateCount) PPM_IDLE_STATE_ACCOUNTING_EX State[ANYSIZE_ARRAY];
} PPM_IDLE_ACCOUNTING_EX, *PPPM_IDLE_ACCOUNTING_EX;
//
// Definitions of coordination types for _PSD, _TSD, and _CSD BIOS objects from
// the Acpi 3.0 specification
//
#define ACPI_PPM_SOFTWARE_ALL 0xFC
#define ACPI_PPM_SOFTWARE_ANY 0xFD
#define ACPI_PPM_HARDWARE_ALL 0xFE
//
// Definition of Microsoft PPM coordination types.
//
#define MS_PPM_SOFTWARE_ALL 0x1
//
// Processor firmware rundown feature bit definitions.
//
#define PPM_FIRMWARE_ACPI1C2 0x00000001
#define PPM_FIRMWARE_ACPI1C3 0x00000002
#define PPM_FIRMWARE_ACPI1TSTATES 0x00000004
#define PPM_FIRMWARE_CST 0x00000008
#define PPM_FIRMWARE_CSD 0x00000010
#define PPM_FIRMWARE_PCT 0x00000020
#define PPM_FIRMWARE_PSS 0x00000040
#define PPM_FIRMWARE_XPSS 0x00000080
#define PPM_FIRMWARE_PPC 0x00000100
#define PPM_FIRMWARE_PSD 0x00000200
#define PPM_FIRMWARE_PTC 0x00000400
#define PPM_FIRMWARE_TSS 0x00000800
#define PPM_FIRMWARE_TPC 0x00001000
#define PPM_FIRMWARE_TSD 0x00002000
#define PPM_FIRMWARE_PCCH 0x00004000
#define PPM_FIRMWARE_PCCP 0x00008000
#define PPM_FIRMWARE_OSC 0x00010000
#define PPM_FIRMWARE_PDC 0x00020000
#define PPM_FIRMWARE_CPC 0x00040000
//
// Processor performance and idle controls implementations.
//
#define PPM_PERFORMANCE_IMPLEMENTATION_NONE 0x00000000
#define PPM_PERFORMANCE_IMPLEMENTATION_PSTATES 0x00000001
#define PPM_PERFORMANCE_IMPLEMENTATION_PCCV1 0x00000002
#define PPM_PERFORMANCE_IMPLEMENTATION_CPPC 0x00000003
#define PPM_PERFORMANCE_IMPLEMENTATION_PEP 0x00000004
#define PPM_IDLE_IMPLEMENTATION_NONE 0x00000000
#define PPM_IDLE_IMPLEMENTATION_CSTATES 0x00000001
#define PPM_IDLE_IMPLEMENTATION_PEP 0x00000002
#define PPM_IDLE_IMPLEMENTATION_MICROPEP 0x00000003
//
// Processor Power Management WMI interface.
//
// {A5B32DDD-7F39-4abc-B892-900E43B59EBB}
DEFINE_GUID(PPM_PERFSTATE_CHANGE_GUID,
0xa5b32ddd, 0x7f39, 0x4abc, 0xb8, 0x92, 0x90, 0xe, 0x43, 0xb5, 0x9e, 0xbb);
// {995e6b7f-d653-497a-b978-36a30c29bf01}
DEFINE_GUID(PPM_PERFSTATE_DOMAIN_CHANGE_GUID,
0x995e6b7f, 0xd653, 0x497a, 0xb9, 0x78, 0x36, 0xa3, 0xc, 0x29, 0xbf, 0x1);
// {4838fe4f-f71c-4e51-9ecc-8430a7ac4c6c}
DEFINE_GUID(PPM_IDLESTATE_CHANGE_GUID,
0x4838fe4f, 0xf71c, 0x4e51, 0x9e, 0xcc, 0x84, 0x30, 0xa7, 0xac, 0x4c, 0x6c);
// {5708cc20-7d40-4bf4-b4aa-2b01338d0126}
DEFINE_GUID(PPM_PERFSTATES_DATA_GUID,
0x5708cc20, 0x7d40, 0x4bf4, 0xb4, 0xaa, 0x2b, 0x01, 0x33, 0x8d, 0x01, 0x26);
// {ba138e10-e250-4ad7-8616-cf1a7ad410e7}
DEFINE_GUID(PPM_IDLESTATES_DATA_GUID,
0xba138e10, 0xe250, 0x4ad7, 0x86, 0x16, 0xcf, 0x1a, 0x7a, 0xd4, 0x10, 0xe7);
// {e2a26f78-ae07-4ee0-a30f-ce354f5a94cd}
DEFINE_GUID(PPM_IDLE_ACCOUNTING_GUID,
0xe2a26f78, 0xae07, 0x4ee0, 0xa3, 0x0f, 0xce, 0x54, 0xf5, 0x5a, 0x94, 0xcd);
// {d67abd39-81f8-4a5e-8152-72e31ec912ee}
DEFINE_GUID(PPM_IDLE_ACCOUNTING_EX_GUID,
0xd67abd39, 0x81f8, 0x4a5e, 0x81, 0x52, 0x72, 0xe3, 0x1e, 0xc9, 0x12, 0xee);
// {a852c2c8-1a4c-423b-8c2c-f30d82931a88}
DEFINE_GUID(PPM_THERMALCONSTRAINT_GUID,
0xa852c2c8, 0x1a4c, 0x423b, 0x8c, 0x2c, 0xf3, 0x0d, 0x82, 0x93, 0x1a, 0x88);
// {7fd18652-0cfe-40d2-b0a1-0b066a87759e}
DEFINE_GUID(PPM_PERFMON_PERFSTATE_GUID,
0x7fd18652, 0xcfe, 0x40d2, 0xb0, 0xa1, 0xb, 0x6, 0x6a, 0x87, 0x75, 0x9e);
// {48f377b8-6880-4c7b-8bdc-380176c6654d}
DEFINE_GUID(PPM_THERMAL_POLICY_CHANGE_GUID,
0x48f377b8, 0x6880, 0x4c7b, 0x8b, 0xdc, 0x38, 0x1, 0x76, 0xc6, 0x65, 0x4d);
typedef struct {
DWORD State;
DWORD Status;
DWORD Latency;
DWORD Speed;
DWORD Processor;
} PPM_PERFSTATE_EVENT, *PPPM_PERFSTATE_EVENT;
typedef struct {
DWORD State;
DWORD Latency;
DWORD Speed;
DWORD64 Processors;
} PPM_PERFSTATE_DOMAIN_EVENT, *PPPM_PERFSTATE_DOMAIN_EVENT;
typedef struct {
DWORD NewState;
DWORD OldState;
DWORD64 Processors;
} PPM_IDLESTATE_EVENT, *PPPM_IDLESTATE_EVENT;
typedef struct {
DWORD ThermalConstraint;
DWORD64 Processors;
} PPM_THERMALCHANGE_EVENT, *PPPM_THERMALCHANGE_EVENT;
#pragma warning(push)
#pragma warning(disable:4121)
typedef struct {
BYTE Mode;
DWORD64 Processors;
} PPM_THERMAL_POLICY_EVENT, *PPPM_THERMAL_POLICY_EVENT;
#pragma warning(pop)
// Power Policy Management interfaces
//
typedef struct {
POWER_ACTION Action;
DWORD Flags;
DWORD EventCode;
} POWER_ACTION_POLICY, *PPOWER_ACTION_POLICY;
// POWER_ACTION_POLICY->Flags:
#define POWER_ACTION_QUERY_ALLOWED 0x00000001
#define POWER_ACTION_UI_ALLOWED 0x00000002
#define POWER_ACTION_OVERRIDE_APPS 0x00000004
#define POWER_ACTION_HIBERBOOT 0x00000008
#define POWER_ACTION_USER_NOTIFY 0x00000010 // Indicate User-mode of an impending action.
#define POWER_ACTION_PSEUDO_TRANSITION 0x08000000
#define POWER_ACTION_LIGHTEST_FIRST 0x10000000
#define POWER_ACTION_LOCK_CONSOLE 0x20000000
#define POWER_ACTION_DISABLE_WAKES 0x40000000
#define POWER_ACTION_CRITICAL 0x80000000
// POWER_ACTION_POLICY->EventCode flags
#define POWER_LEVEL_USER_NOTIFY_TEXT 0x00000001
#define POWER_LEVEL_USER_NOTIFY_SOUND 0x00000002
#define POWER_LEVEL_USER_NOTIFY_EXEC 0x00000004
#define POWER_USER_NOTIFY_BUTTON 0x00000008
#define POWER_USER_NOTIFY_SHUTDOWN 0x00000010 // Application and Services are intimated of shutdown.
#define POWER_USER_NOTIFY_FORCED_SHUTDOWN 0x00000020 // Immediate shutdown - Application and Services are not intimated.
#define POWER_FORCE_TRIGGER_RESET 0x80000000
// Note: for battery alarm EventCodes, the ID of the battery alarm << 16 is ORed
// into the flags. For example: DISCHARGE_POLICY_LOW << 16
//
// The GUID_BATTERY_DISCHARGE_FLAGS_x power settings use a subset of EventCode
// flags. The POWER_FORCE_TRIGGER_RESET flag doesn't make sense for a battery
// alarm so it is overloaded for other purposes (gerneral enable/disable).
#define BATTERY_DISCHARGE_FLAGS_EVENTCODE_MASK 0x00000007
#define BATTERY_DISCHARGE_FLAGS_ENABLE 0x80000000
// system battery drain policies
typedef struct {
BOOLEAN Enable;
BYTE Spare[3];
DWORD BatteryLevel;
POWER_ACTION_POLICY PowerPolicy;
SYSTEM_POWER_STATE MinSystemState;
} SYSTEM_POWER_LEVEL, *PSYSTEM_POWER_LEVEL;
// Discharge policy constants
#define NUM_DISCHARGE_POLICIES 4
#define DISCHARGE_POLICY_CRITICAL 0
#define DISCHARGE_POLICY_LOW 1
// system power policies
typedef struct _SYSTEM_POWER_POLICY {
DWORD Revision; // 1
// events
POWER_ACTION_POLICY PowerButton;
POWER_ACTION_POLICY SleepButton;
POWER_ACTION_POLICY LidClose;
SYSTEM_POWER_STATE LidOpenWake;
DWORD Reserved;
// "system idle" detection
POWER_ACTION_POLICY Idle;
DWORD IdleTimeout;
BYTE IdleSensitivity;
BYTE DynamicThrottle;
BYTE Spare2[2];
// meaning of power action "sleep"
SYSTEM_POWER_STATE MinSleep;
SYSTEM_POWER_STATE MaxSleep;
SYSTEM_POWER_STATE ReducedLatencySleep;
DWORD WinLogonFlags;
DWORD Spare3;
// parameters for dozing
//
DWORD DozeS4Timeout;
// battery policies
DWORD BroadcastCapacityResolution;
SYSTEM_POWER_LEVEL DischargePolicy[NUM_DISCHARGE_POLICIES];
// video policies
DWORD VideoTimeout;
BOOLEAN VideoDimDisplay;
DWORD VideoReserved[3];
// hard disk policies
DWORD SpindownTimeout;
// processor policies
BOOLEAN OptimizeForPower;
BYTE FanThrottleTolerance;
BYTE ForcedThrottle;
BYTE MinThrottle;
POWER_ACTION_POLICY OverThrottled;
} SYSTEM_POWER_POLICY, *PSYSTEM_POWER_POLICY;
// processor power policy state
//
// Processor Idle State Policy.
//
#define PROCESSOR_IDLESTATE_POLICY_COUNT 0x3
typedef struct {
DWORD TimeCheck;
BYTE DemotePercent;
BYTE PromotePercent;
BYTE Spare[2];
} PROCESSOR_IDLESTATE_INFO, *PPROCESSOR_IDLESTATE_INFO;
typedef struct {
WORD Revision;
union {
WORD AsWORD ;
struct {
WORD AllowScaling : 1;
WORD Disabled : 1;
WORD Reserved : 14;
} DUMMYSTRUCTNAME;
} Flags;
DWORD PolicyCount;
PROCESSOR_IDLESTATE_INFO Policy[PROCESSOR_IDLESTATE_POLICY_COUNT];
} PROCESSOR_IDLESTATE_POLICY, *PPROCESSOR_IDLESTATE_POLICY;
//
// Legacy Processor Policy. This is only provided to allow legacy
// applications to compile. New applications must use
// PROCESSOR_IDLESTATE_POLICY.
//
#define PO_THROTTLE_NONE 0
#define PO_THROTTLE_CONSTANT 1
#define PO_THROTTLE_DEGRADE 2
#define PO_THROTTLE_ADAPTIVE 3
#define PO_THROTTLE_MAXIMUM 4 // not a policy, just a limit
typedef struct _PROCESSOR_POWER_POLICY_INFO {
// Time based information (will be converted to kernel units)
DWORD TimeCheck; // in US
DWORD DemoteLimit; // in US
DWORD PromoteLimit; // in US
// Percentage based information
BYTE DemotePercent;
BYTE PromotePercent;
BYTE Spare[2];
// Flags
DWORD AllowDemotion:1;
DWORD AllowPromotion:1;
DWORD Reserved:30;
} PROCESSOR_POWER_POLICY_INFO, *PPROCESSOR_POWER_POLICY_INFO;
// processor power policy
typedef struct _PROCESSOR_POWER_POLICY {
DWORD Revision; // 1
// Dynamic Throttling Policy
BYTE DynamicThrottle;
BYTE Spare[3];
// Flags
DWORD DisableCStates:1;
DWORD Reserved:31;
// System policy information
// The Array is last, in case it needs to be grown and the structure
// revision incremented.
DWORD PolicyCount;
PROCESSOR_POWER_POLICY_INFO Policy[3];
} PROCESSOR_POWER_POLICY, *PPROCESSOR_POWER_POLICY;
//
// Processor Perf State Policy.
//
typedef struct {
DWORD Revision;
BYTE MaxThrottle;
BYTE MinThrottle;
BYTE BusyAdjThreshold;
union {
BYTE Spare;
union {
BYTE AsBYTE ;
struct {
BYTE NoDomainAccounting : 1;
BYTE IncreasePolicy: 2;
BYTE DecreasePolicy: 2;
BYTE Reserved : 3;
} DUMMYSTRUCTNAME;
} Flags;
} DUMMYUNIONNAME;
DWORD TimeCheck;
DWORD IncreaseTime;
DWORD DecreaseTime;
DWORD IncreasePercent;
DWORD DecreasePercent;
} PROCESSOR_PERFSTATE_POLICY, *PPROCESSOR_PERFSTATE_POLICY;
// administrator power policy overrides
typedef struct _ADMINISTRATOR_POWER_POLICY {
// meaning of power action "sleep"
SYSTEM_POWER_STATE MinSleep;
SYSTEM_POWER_STATE MaxSleep;
// video policies
DWORD MinVideoTimeout;
DWORD MaxVideoTimeout;
// disk policies
DWORD MinSpindownTimeout;
DWORD MaxSpindownTimeout;
} ADMINISTRATOR_POWER_POLICY, *PADMINISTRATOR_POWER_POLICY;
typedef enum _HIBERFILE_BUCKET_SIZE {
HiberFileBucket1GB = 0,
HiberFileBucket2GB,
HiberFileBucket4GB,
HiberFileBucket8GB,
HiberFileBucket16GB,
HiberFileBucket32GB,
HiberFileBucketUnlimited,
HiberFileBucketMax
} HIBERFILE_BUCKET_SIZE, *PHIBERFILE_BUCKET_SIZE;
#define HIBERFILE_TYPE_NONE 0x00
#define HIBERFILE_TYPE_REDUCED 0x01
#define HIBERFILE_TYPE_FULL 0x02
#define HIBERFILE_TYPE_MAX 0x03
typedef struct _HIBERFILE_BUCKET {
DWORD64 MaxPhysicalMemory;
DWORD PhysicalMemoryPercent[HIBERFILE_TYPE_MAX];
} HIBERFILE_BUCKET, *PHIBERFILE_BUCKET;
typedef struct {
// Misc supported system features
BOOLEAN PowerButtonPresent;
BOOLEAN SleepButtonPresent;
BOOLEAN LidPresent;
BOOLEAN SystemS1;
BOOLEAN SystemS2;
BOOLEAN SystemS3;
BOOLEAN SystemS4; // hibernate
BOOLEAN SystemS5; // off
BOOLEAN HiberFilePresent;
BOOLEAN FullWake;
BOOLEAN VideoDimPresent;
BOOLEAN ApmPresent;
BOOLEAN UpsPresent;
// Processors
BOOLEAN ThermalControl;
BOOLEAN ProcessorThrottle;
BYTE ProcessorMinThrottle;
#if (NTDDI_VERSION < NTDDI_WINXP)
BYTE ProcessorThrottleScale;
BYTE spare2[4];
#else
BYTE ProcessorMaxThrottle;
BOOLEAN FastSystemS4;
BOOLEAN Hiberboot;
BOOLEAN WakeAlarmPresent;
BOOLEAN AoAc;
#endif // (NTDDI_VERSION < NTDDI_WINXP)
// Disk
BOOLEAN DiskSpinDown;
#if (NTDDI_VERSION < NTDDI_WINTHRESHOLD)
BYTE spare3[8];
# else
// HiberFile
BYTE HiberFileType;
BOOLEAN AoAcConnectivitySupported;
BYTE spare3[6];
#endif // (NTDDI_VERSION < NTDDI_WINTHRESHOLD)
// System Battery
BOOLEAN SystemBatteriesPresent;
BOOLEAN BatteriesAreShortTerm;
BATTERY_REPORTING_SCALE BatteryScale[3];
// Wake
SYSTEM_POWER_STATE AcOnLineWake;
SYSTEM_POWER_STATE SoftLidWake;
SYSTEM_POWER_STATE RtcWake;
SYSTEM_POWER_STATE MinDeviceWakeState; // note this may change on driver load
SYSTEM_POWER_STATE DefaultLowLatencyWake;
} SYSTEM_POWER_CAPABILITIES, *PSYSTEM_POWER_CAPABILITIES;
typedef struct {
BOOLEAN AcOnLine;
BOOLEAN BatteryPresent;
BOOLEAN Charging;
BOOLEAN Discharging;
BOOLEAN Spare1[3];
BYTE Tag;
DWORD MaxCapacity;
DWORD RemainingCapacity;
DWORD Rate;
DWORD EstimatedTime;
DWORD DefaultAlert1;
DWORD DefaultAlert2;
} SYSTEM_BATTERY_STATE, *PSYSTEM_BATTERY_STATE;
//
// Image Format
//
#ifndef _MAC
#include "pshpack4.h" // 4 byte packing is the default
#define IMAGE_DOS_SIGNATURE 0x5A4D // MZ
#define IMAGE_OS2_SIGNATURE 0x454E // NE
#define IMAGE_OS2_SIGNATURE_LE 0x454C // LE
#define IMAGE_VXD_SIGNATURE 0x454C // LE
#define IMAGE_NT_SIGNATURE 0x00004550 // PE00
#include "pshpack2.h" // 16 bit headers are 2 byte packed
#else
#include "pshpack1.h"
#define IMAGE_DOS_SIGNATURE 0x4D5A // MZ
#define IMAGE_OS2_SIGNATURE 0x4E45 // NE
#define IMAGE_OS2_SIGNATURE_LE 0x4C45 // LE
#define IMAGE_NT_SIGNATURE 0x50450000 // PE00
#endif
typedef struct _IMAGE_DOS_HEADER { // DOS .EXE header
WORD e_magic; // Magic number
WORD e_cblp; // Bytes on last page of file
WORD e_cp; // Pages in file
WORD e_crlc; // Relocations
WORD e_cparhdr; // Size of header in paragraphs
WORD e_minalloc; // Minimum extra paragraphs needed
WORD e_maxalloc; // Maximum extra paragraphs needed
WORD e_ss; // Initial (relative) SS value
WORD e_sp; // Initial SP value
WORD e_csum; // Checksum
WORD e_ip; // Initial IP value
WORD e_cs; // Initial (relative) CS value
WORD e_lfarlc; // File address of relocation table
WORD e_ovno; // Overlay number
WORD e_res[4]; // Reserved words
WORD e_oemid; // OEM identifier (for e_oeminfo)
WORD e_oeminfo; // OEM information; e_oemid specific
WORD e_res2[10]; // Reserved words
LONG e_lfanew; // File address of new exe header
} IMAGE_DOS_HEADER, *PIMAGE_DOS_HEADER;
typedef struct _IMAGE_OS2_HEADER { // OS/2 .EXE header
WORD ne_magic; // Magic number
CHAR ne_ver; // Version number
CHAR ne_rev; // Revision number
WORD ne_enttab; // Offset of Entry Table
WORD ne_cbenttab; // Number of bytes in Entry Table
LONG ne_crc; // Checksum of whole file
WORD ne_flags; // Flag word
WORD ne_autodata; // Automatic data segment number
WORD ne_heap; // Initial heap allocation
WORD ne_stack; // Initial stack allocation
LONG ne_csip; // Initial CS:IP setting
LONG ne_sssp; // Initial SS:SP setting
WORD ne_cseg; // Count of file segments
WORD ne_cmod; // Entries in Module Reference Table
WORD ne_cbnrestab; // Size of non-resident name table
WORD ne_segtab; // Offset of Segment Table
WORD ne_rsrctab; // Offset of Resource Table
WORD ne_restab; // Offset of resident name table
WORD ne_modtab; // Offset of Module Reference Table
WORD ne_imptab; // Offset of Imported Names Table
LONG ne_nrestab; // Offset of Non-resident Names Table
WORD ne_cmovent; // Count of movable entries
WORD ne_align; // Segment alignment shift count
WORD ne_cres; // Count of resource segments
BYTE ne_exetyp; // Target Operating system
BYTE ne_flagsothers; // Other .EXE flags
WORD ne_pretthunks; // offset to return thunks
WORD ne_psegrefbytes; // offset to segment ref. bytes
WORD ne_swaparea; // Minimum code swap area size
WORD ne_expver; // Expected Windows version number
} IMAGE_OS2_HEADER, *PIMAGE_OS2_HEADER;
typedef struct _IMAGE_VXD_HEADER { // Windows VXD header
WORD e32_magic; // Magic number
BYTE e32_border; // The byte ordering for the VXD
BYTE e32_worder; // The word ordering for the VXD
DWORD e32_level; // The EXE format level for now = 0
WORD e32_cpu; // The CPU type
WORD e32_os; // The OS type
DWORD e32_ver; // Module version
DWORD e32_mflags; // Module flags
DWORD e32_mpages; // Module # pages
DWORD e32_startobj; // Object # for instruction pointer
DWORD e32_eip; // Extended instruction pointer
DWORD e32_stackobj; // Object # for stack pointer
DWORD e32_esp; // Extended stack pointer
DWORD e32_pagesize; // VXD page size
DWORD e32_lastpagesize; // Last page size in VXD
DWORD e32_fixupsize; // Fixup section size
DWORD e32_fixupsum; // Fixup section checksum
DWORD e32_ldrsize; // Loader section size
DWORD e32_ldrsum; // Loader section checksum
DWORD e32_objtab; // Object table offset
DWORD e32_objcnt; // Number of objects in module
DWORD e32_objmap; // Object page map offset
DWORD e32_itermap; // Object iterated data map offset
DWORD e32_rsrctab; // Offset of Resource Table
DWORD e32_rsrccnt; // Number of resource entries
DWORD e32_restab; // Offset of resident name table
DWORD e32_enttab; // Offset of Entry Table
DWORD e32_dirtab; // Offset of Module Directive Table
DWORD e32_dircnt; // Number of module directives
DWORD e32_fpagetab; // Offset of Fixup Page Table
DWORD e32_frectab; // Offset of Fixup Record Table
DWORD e32_impmod; // Offset of Import Module Name Table
DWORD e32_impmodcnt; // Number of entries in Import Module Name Table
DWORD e32_impproc; // Offset of Import Procedure Name Table
DWORD e32_pagesum; // Offset of Per-Page Checksum Table
DWORD e32_datapage; // Offset of Enumerated Data Pages
DWORD e32_preload; // Number of preload pages
DWORD e32_nrestab; // Offset of Non-resident Names Table
DWORD e32_cbnrestab; // Size of Non-resident Name Table
DWORD e32_nressum; // Non-resident Name Table Checksum
DWORD e32_autodata; // Object # for automatic data object
DWORD e32_debuginfo; // Offset of the debugging information
DWORD e32_debuglen; // The length of the debugging info. in bytes
DWORD e32_instpreload; // Number of instance pages in preload section of VXD file
DWORD e32_instdemand; // Number of instance pages in demand load section of VXD file
DWORD e32_heapsize; // Size of heap - for 16-bit apps
BYTE e32_res3[12]; // Reserved words
DWORD e32_winresoff;
DWORD e32_winreslen;
WORD e32_devid; // Device ID for VxD
WORD e32_ddkver; // DDK version for VxD
} IMAGE_VXD_HEADER, *PIMAGE_VXD_HEADER;
#ifndef _MAC
#include "poppack.h" // Back to 4 byte packing
#endif
//
// File header format.
//
typedef struct _IMAGE_FILE_HEADER {
WORD Machine;
WORD NumberOfSections;
DWORD TimeDateStamp;
DWORD PointerToSymbolTable;
DWORD NumberOfSymbols;
WORD SizeOfOptionalHeader;
WORD Characteristics;
} IMAGE_FILE_HEADER, *PIMAGE_FILE_HEADER;
#define IMAGE_SIZEOF_FILE_HEADER 20
#define IMAGE_FILE_RELOCS_STRIPPED 0x0001 // Relocation info stripped from file.
#define IMAGE_FILE_EXECUTABLE_IMAGE 0x0002 // File is executable (i.e. no unresolved external references).
#define IMAGE_FILE_LINE_NUMS_STRIPPED 0x0004 // Line nunbers stripped from file.
#define IMAGE_FILE_LOCAL_SYMS_STRIPPED 0x0008 // Local symbols stripped from file.
#define IMAGE_FILE_AGGRESIVE_WS_TRIM 0x0010 // Aggressively trim working set
#define IMAGE_FILE_LARGE_ADDRESS_AWARE 0x0020 // App can handle >2gb addresses
#define IMAGE_FILE_BYTES_REVERSED_LO 0x0080 // Bytes of machine word are reversed.
#define IMAGE_FILE_32BIT_MACHINE 0x0100 // 32 bit word machine.
#define IMAGE_FILE_DEBUG_STRIPPED 0x0200 // Debugging info stripped from file in .DBG file
#define IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP 0x0400 // If Image is on removable media, copy and run from the swap file.
#define IMAGE_FILE_NET_RUN_FROM_SWAP 0x0800 // If Image is on Net, copy and run from the swap file.
#define IMAGE_FILE_SYSTEM 0x1000 // System File.
#define IMAGE_FILE_DLL 0x2000 // File is a DLL.
#define IMAGE_FILE_UP_SYSTEM_ONLY 0x4000 // File should only be run on a UP machine
#define IMAGE_FILE_BYTES_REVERSED_HI 0x8000 // Bytes of machine word are reversed.
#define IMAGE_FILE_MACHINE_UNKNOWN 0
#define IMAGE_FILE_MACHINE_TARGET_HOST 0x0001 // Useful for indicating we want to interact with the host and not a WoW guest.
#define IMAGE_FILE_MACHINE_I386 0x014c // Intel 386.
#define IMAGE_FILE_MACHINE_R3000 0x0162 // MIPS little-endian, 0x160 big-endian
#define IMAGE_FILE_MACHINE_R4000 0x0166 // MIPS little-endian
#define IMAGE_FILE_MACHINE_R10000 0x0168 // MIPS little-endian
#define IMAGE_FILE_MACHINE_WCEMIPSV2 0x0169 // MIPS little-endian WCE v2
#define IMAGE_FILE_MACHINE_ALPHA 0x0184 // Alpha_AXP
#define IMAGE_FILE_MACHINE_SH3 0x01a2 // SH3 little-endian
#define IMAGE_FILE_MACHINE_SH3DSP 0x01a3
#define IMAGE_FILE_MACHINE_SH3E 0x01a4 // SH3E little-endian
#define IMAGE_FILE_MACHINE_SH4 0x01a6 // SH4 little-endian
#define IMAGE_FILE_MACHINE_SH5 0x01a8 // SH5
#define IMAGE_FILE_MACHINE_ARM 0x01c0 // ARM Little-Endian
#define IMAGE_FILE_MACHINE_THUMB 0x01c2 // ARM Thumb/Thumb-2 Little-Endian
#define IMAGE_FILE_MACHINE_ARMNT 0x01c4 // ARM Thumb-2 Little-Endian
#define IMAGE_FILE_MACHINE_AM33 0x01d3
#define IMAGE_FILE_MACHINE_POWERPC 0x01F0 // IBM PowerPC Little-Endian
#define IMAGE_FILE_MACHINE_POWERPCFP 0x01f1
#define IMAGE_FILE_MACHINE_IA64 0x0200 // Intel 64
#define IMAGE_FILE_MACHINE_MIPS16 0x0266 // MIPS
#define IMAGE_FILE_MACHINE_ALPHA64 0x0284 // ALPHA64
#define IMAGE_FILE_MACHINE_MIPSFPU 0x0366 // MIPS
#define IMAGE_FILE_MACHINE_MIPSFPU16 0x0466 // MIPS
#define IMAGE_FILE_MACHINE_AXP64 IMAGE_FILE_MACHINE_ALPHA64
#define IMAGE_FILE_MACHINE_TRICORE 0x0520 // Infineon
#define IMAGE_FILE_MACHINE_CEF 0x0CEF
#define IMAGE_FILE_MACHINE_EBC 0x0EBC // EFI Byte Code
#define IMAGE_FILE_MACHINE_AMD64 0x8664 // AMD64 (K8)
#define IMAGE_FILE_MACHINE_M32R 0x9041 // M32R little-endian
#define IMAGE_FILE_MACHINE_ARM64 0xAA64 // ARM64 Little-Endian
#define IMAGE_FILE_MACHINE_CEE 0xC0EE
//
// Directory format.
//
typedef struct _IMAGE_DATA_DIRECTORY {
DWORD VirtualAddress;
DWORD Size;
} IMAGE_DATA_DIRECTORY, *PIMAGE_DATA_DIRECTORY;
#define IMAGE_NUMBEROF_DIRECTORY_ENTRIES 16
//
// Optional header format.
//
typedef struct _IMAGE_OPTIONAL_HEADER {
//
// Standard fields.
//
WORD Magic;
BYTE MajorLinkerVersion;
BYTE MinorLinkerVersion;
DWORD SizeOfCode;
DWORD SizeOfInitializedData;
DWORD SizeOfUninitializedData;
DWORD AddressOfEntryPoint;
DWORD BaseOfCode;
DWORD BaseOfData;
//
// NT additional fields.
//
DWORD ImageBase;
DWORD SectionAlignment;
DWORD FileAlignment;
WORD MajorOperatingSystemVersion;
WORD MinorOperatingSystemVersion;
WORD MajorImageVersion;
WORD MinorImageVersion;
WORD MajorSubsystemVersion;
WORD MinorSubsystemVersion;
DWORD Win32VersionValue;
DWORD SizeOfImage;
DWORD SizeOfHeaders;
DWORD CheckSum;
WORD Subsystem;
WORD DllCharacteristics;
DWORD SizeOfStackReserve;
DWORD SizeOfStackCommit;
DWORD SizeOfHeapReserve;
DWORD SizeOfHeapCommit;
DWORD LoaderFlags;
DWORD NumberOfRvaAndSizes;
IMAGE_DATA_DIRECTORY DataDirectory[IMAGE_NUMBEROF_DIRECTORY_ENTRIES];
} IMAGE_OPTIONAL_HEADER32, *PIMAGE_OPTIONAL_HEADER32;
typedef struct _IMAGE_ROM_OPTIONAL_HEADER {
WORD Magic;
BYTE MajorLinkerVersion;
BYTE MinorLinkerVersion;
DWORD SizeOfCode;
DWORD SizeOfInitializedData;
DWORD SizeOfUninitializedData;
DWORD AddressOfEntryPoint;
DWORD BaseOfCode;
DWORD BaseOfData;
DWORD BaseOfBss;
DWORD GprMask;
DWORD CprMask[4];
DWORD GpValue;
} IMAGE_ROM_OPTIONAL_HEADER, *PIMAGE_ROM_OPTIONAL_HEADER;
typedef struct _IMAGE_OPTIONAL_HEADER64 {
WORD Magic;
BYTE MajorLinkerVersion;
BYTE MinorLinkerVersion;
DWORD SizeOfCode;
DWORD SizeOfInitializedData;
DWORD SizeOfUninitializedData;
DWORD AddressOfEntryPoint;
DWORD BaseOfCode;
ULONGLONG ImageBase;
DWORD SectionAlignment;
DWORD FileAlignment;
WORD MajorOperatingSystemVersion;
WORD MinorOperatingSystemVersion;
WORD MajorImageVersion;
WORD MinorImageVersion;
WORD MajorSubsystemVersion;
WORD MinorSubsystemVersion;
DWORD Win32VersionValue;
DWORD SizeOfImage;
DWORD SizeOfHeaders;
DWORD CheckSum;
WORD Subsystem;
WORD DllCharacteristics;
ULONGLONG SizeOfStackReserve;
ULONGLONG SizeOfStackCommit;
ULONGLONG SizeOfHeapReserve;
ULONGLONG SizeOfHeapCommit;
DWORD LoaderFlags;
DWORD NumberOfRvaAndSizes;
IMAGE_DATA_DIRECTORY DataDirectory[IMAGE_NUMBEROF_DIRECTORY_ENTRIES];
} IMAGE_OPTIONAL_HEADER64, *PIMAGE_OPTIONAL_HEADER64;
#define IMAGE_NT_OPTIONAL_HDR32_MAGIC 0x10b
#define IMAGE_NT_OPTIONAL_HDR64_MAGIC 0x20b
#define IMAGE_ROM_OPTIONAL_HDR_MAGIC 0x107
#ifdef _WIN64
typedef IMAGE_OPTIONAL_HEADER64 IMAGE_OPTIONAL_HEADER;
typedef PIMAGE_OPTIONAL_HEADER64 PIMAGE_OPTIONAL_HEADER;
#define IMAGE_NT_OPTIONAL_HDR_MAGIC IMAGE_NT_OPTIONAL_HDR64_MAGIC
#else
typedef IMAGE_OPTIONAL_HEADER32 IMAGE_OPTIONAL_HEADER;
typedef PIMAGE_OPTIONAL_HEADER32 PIMAGE_OPTIONAL_HEADER;
#define IMAGE_NT_OPTIONAL_HDR_MAGIC IMAGE_NT_OPTIONAL_HDR32_MAGIC
#endif
typedef struct _IMAGE_NT_HEADERS64 {
DWORD Signature;
IMAGE_FILE_HEADER FileHeader;
IMAGE_OPTIONAL_HEADER64 OptionalHeader;
} IMAGE_NT_HEADERS64, *PIMAGE_NT_HEADERS64;
typedef struct _IMAGE_NT_HEADERS {
DWORD Signature;
IMAGE_FILE_HEADER FileHeader;
IMAGE_OPTIONAL_HEADER32 OptionalHeader;
} IMAGE_NT_HEADERS32, *PIMAGE_NT_HEADERS32;
typedef struct _IMAGE_ROM_HEADERS {
IMAGE_FILE_HEADER FileHeader;
IMAGE_ROM_OPTIONAL_HEADER OptionalHeader;
} IMAGE_ROM_HEADERS, *PIMAGE_ROM_HEADERS;
#ifdef _WIN64
typedef IMAGE_NT_HEADERS64 IMAGE_NT_HEADERS;
typedef PIMAGE_NT_HEADERS64 PIMAGE_NT_HEADERS;
#else
typedef IMAGE_NT_HEADERS32 IMAGE_NT_HEADERS;
typedef PIMAGE_NT_HEADERS32 PIMAGE_NT_HEADERS;
#endif
// IMAGE_FIRST_SECTION doesn't need 32/64 versions since the file header is the same either way.
#define IMAGE_FIRST_SECTION( ntheader ) ((PIMAGE_SECTION_HEADER) \
((ULONG_PTR)(ntheader) + \
FIELD_OFFSET( IMAGE_NT_HEADERS, OptionalHeader ) + \
((ntheader))->FileHeader.SizeOfOptionalHeader \
))
// Subsystem Values
#define IMAGE_SUBSYSTEM_UNKNOWN 0 // Unknown subsystem.
#define IMAGE_SUBSYSTEM_NATIVE 1 // Image doesn't require a subsystem.
#define IMAGE_SUBSYSTEM_WINDOWS_GUI 2 // Image runs in the Windows GUI subsystem.
#define IMAGE_SUBSYSTEM_WINDOWS_CUI 3 // Image runs in the Windows character subsystem.
#define IMAGE_SUBSYSTEM_OS2_CUI 5 // image runs in the OS/2 character subsystem.
#define IMAGE_SUBSYSTEM_POSIX_CUI 7 // image runs in the Posix character subsystem.
#define IMAGE_SUBSYSTEM_NATIVE_WINDOWS 8 // image is a native Win9x driver.
#define IMAGE_SUBSYSTEM_WINDOWS_CE_GUI 9 // Image runs in the Windows CE subsystem.
#define IMAGE_SUBSYSTEM_EFI_APPLICATION 10 //
#define IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER 11 //
#define IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER 12 //
#define IMAGE_SUBSYSTEM_EFI_ROM 13
#define IMAGE_SUBSYSTEM_XBOX 14
#define IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION 16
#define IMAGE_SUBSYSTEM_XBOX_CODE_CATALOG 17
// DllCharacteristics Entries
// IMAGE_LIBRARY_PROCESS_INIT 0x0001 // Reserved.
// IMAGE_LIBRARY_PROCESS_TERM 0x0002 // Reserved.
// IMAGE_LIBRARY_THREAD_INIT 0x0004 // Reserved.
// IMAGE_LIBRARY_THREAD_TERM 0x0008 // Reserved.
#define IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA 0x0020 // Image can handle a high entropy 64-bit virtual address space.
#define IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE 0x0040 // DLL can move.
#define IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY 0x0080 // Code Integrity Image
#define IMAGE_DLLCHARACTERISTICS_NX_COMPAT 0x0100 // Image is NX compatible
#define IMAGE_DLLCHARACTERISTICS_NO_ISOLATION 0x0200 // Image understands isolation and doesn't want it
#define IMAGE_DLLCHARACTERISTICS_NO_SEH 0x0400 // Image does not use SEH. No SE handler may reside in this image
#define IMAGE_DLLCHARACTERISTICS_NO_BIND 0x0800 // Do not bind this image.
#define IMAGE_DLLCHARACTERISTICS_APPCONTAINER 0x1000 // Image should execute in an AppContainer
#define IMAGE_DLLCHARACTERISTICS_WDM_DRIVER 0x2000 // Driver uses WDM model
#define IMAGE_DLLCHARACTERISTICS_GUARD_CF 0x4000 // Image supports Control Flow Guard.
#define IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE 0x8000
// Directory Entries
#define IMAGE_DIRECTORY_ENTRY_EXPORT 0 // Export Directory
#define IMAGE_DIRECTORY_ENTRY_IMPORT 1 // Import Directory
#define IMAGE_DIRECTORY_ENTRY_RESOURCE 2 // Resource Directory
#define IMAGE_DIRECTORY_ENTRY_EXCEPTION 3 // Exception Directory
#define IMAGE_DIRECTORY_ENTRY_SECURITY 4 // Security Directory
#define IMAGE_DIRECTORY_ENTRY_BASERELOC 5 // Base Relocation Table
#define IMAGE_DIRECTORY_ENTRY_DEBUG 6 // Debug Directory
// IMAGE_DIRECTORY_ENTRY_COPYRIGHT 7 // (X86 usage)
#define IMAGE_DIRECTORY_ENTRY_ARCHITECTURE 7 // Architecture Specific Data
#define IMAGE_DIRECTORY_ENTRY_GLOBALPTR 8 // RVA of GP
#define IMAGE_DIRECTORY_ENTRY_TLS 9 // TLS Directory
#define IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG 10 // Load Configuration Directory
#define IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT 11 // Bound Import Directory in headers
#define IMAGE_DIRECTORY_ENTRY_IAT 12 // Import Address Table
#define IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT 13 // Delay Load Import Descriptors
#define IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR 14 // COM Runtime descriptor
//
// Non-COFF Object file header
//
typedef struct ANON_OBJECT_HEADER {
WORD Sig1; // Must be IMAGE_FILE_MACHINE_UNKNOWN
WORD Sig2; // Must be 0xffff
WORD Version; // >= 1 (implies the CLSID field is present)
WORD Machine;
DWORD TimeDateStamp;
CLSID ClassID; // Used to invoke CoCreateInstance
DWORD SizeOfData; // Size of data that follows the header
} ANON_OBJECT_HEADER;
typedef struct ANON_OBJECT_HEADER_V2 {
WORD Sig1; // Must be IMAGE_FILE_MACHINE_UNKNOWN
WORD Sig2; // Must be 0xffff
WORD Version; // >= 2 (implies the Flags field is present - otherwise V1)
WORD Machine;
DWORD TimeDateStamp;
CLSID ClassID; // Used to invoke CoCreateInstance
DWORD SizeOfData; // Size of data that follows the header
DWORD Flags; // 0x1 -> contains metadata
DWORD MetaDataSize; // Size of CLR metadata
DWORD MetaDataOffset; // Offset of CLR metadata
} ANON_OBJECT_HEADER_V2;
typedef struct ANON_OBJECT_HEADER_BIGOBJ {
/* same as ANON_OBJECT_HEADER_V2 */
WORD Sig1; // Must be IMAGE_FILE_MACHINE_UNKNOWN
WORD Sig2; // Must be 0xffff
WORD Version; // >= 2 (implies the Flags field is present)
WORD Machine; // Actual machine - IMAGE_FILE_MACHINE_xxx
DWORD TimeDateStamp;
CLSID ClassID; // {D1BAA1C7-BAEE-4ba9-AF20-FAF66AA4DCB8}
DWORD SizeOfData; // Size of data that follows the header
DWORD Flags; // 0x1 -> contains metadata
DWORD MetaDataSize; // Size of CLR metadata
DWORD MetaDataOffset; // Offset of CLR metadata
/* bigobj specifics */
DWORD NumberOfSections; // extended from WORD
DWORD PointerToSymbolTable;
DWORD NumberOfSymbols;
} ANON_OBJECT_HEADER_BIGOBJ;
//
// Section header format.
//
#define IMAGE_SIZEOF_SHORT_NAME 8
typedef struct _IMAGE_SECTION_HEADER {
BYTE Name[IMAGE_SIZEOF_SHORT_NAME];
union {
DWORD PhysicalAddress;
DWORD VirtualSize;
} Misc;
DWORD VirtualAddress;
DWORD SizeOfRawData;
DWORD PointerToRawData;
DWORD PointerToRelocations;
DWORD PointerToLinenumbers;
WORD NumberOfRelocations;
WORD NumberOfLinenumbers;
DWORD Characteristics;
} IMAGE_SECTION_HEADER, *PIMAGE_SECTION_HEADER;
#define IMAGE_SIZEOF_SECTION_HEADER 40
//
// Section characteristics.
//
// IMAGE_SCN_TYPE_REG 0x00000000 // Reserved.
// IMAGE_SCN_TYPE_DSECT 0x00000001 // Reserved.
// IMAGE_SCN_TYPE_NOLOAD 0x00000002 // Reserved.
// IMAGE_SCN_TYPE_GROUP 0x00000004 // Reserved.
#define IMAGE_SCN_TYPE_NO_PAD 0x00000008 // Reserved.
// IMAGE_SCN_TYPE_COPY 0x00000010 // Reserved.
#define IMAGE_SCN_CNT_CODE 0x00000020 // Section contains code.
#define IMAGE_SCN_CNT_INITIALIZED_DATA 0x00000040 // Section contains initialized data.
#define IMAGE_SCN_CNT_UNINITIALIZED_DATA 0x00000080 // Section contains uninitialized data.
#define IMAGE_SCN_LNK_OTHER 0x00000100 // Reserved.
#define IMAGE_SCN_LNK_INFO 0x00000200 // Section contains comments or some other type of information.
// IMAGE_SCN_TYPE_OVER 0x00000400 // Reserved.
#define IMAGE_SCN_LNK_REMOVE 0x00000800 // Section contents will not become part of image.
#define IMAGE_SCN_LNK_COMDAT 0x00001000 // Section contents comdat.
// 0x00002000 // Reserved.
// IMAGE_SCN_MEM_PROTECTED - Obsolete 0x00004000
#define IMAGE_SCN_NO_DEFER_SPEC_EXC 0x00004000 // Reset speculative exceptions handling bits in the TLB entries for this section.
#define IMAGE_SCN_GPREL 0x00008000 // Section content can be accessed relative to GP
#define IMAGE_SCN_MEM_FARDATA 0x00008000
// IMAGE_SCN_MEM_SYSHEAP - Obsolete 0x00010000
#define IMAGE_SCN_MEM_PURGEABLE 0x00020000
#define IMAGE_SCN_MEM_16BIT 0x00020000
#define IMAGE_SCN_MEM_LOCKED 0x00040000
#define IMAGE_SCN_MEM_PRELOAD 0x00080000
#define IMAGE_SCN_ALIGN_1BYTES 0x00100000 //
#define IMAGE_SCN_ALIGN_2BYTES 0x00200000 //
#define IMAGE_SCN_ALIGN_4BYTES 0x00300000 //
#define IMAGE_SCN_ALIGN_8BYTES 0x00400000 //
#define IMAGE_SCN_ALIGN_16BYTES 0x00500000 // Default alignment if no others are specified.
#define IMAGE_SCN_ALIGN_32BYTES 0x00600000 //
#define IMAGE_SCN_ALIGN_64BYTES 0x00700000 //
#define IMAGE_SCN_ALIGN_128BYTES 0x00800000 //
#define IMAGE_SCN_ALIGN_256BYTES 0x00900000 //
#define IMAGE_SCN_ALIGN_512BYTES 0x00A00000 //
#define IMAGE_SCN_ALIGN_1024BYTES 0x00B00000 //
#define IMAGE_SCN_ALIGN_2048BYTES 0x00C00000 //
#define IMAGE_SCN_ALIGN_4096BYTES 0x00D00000 //
#define IMAGE_SCN_ALIGN_8192BYTES 0x00E00000 //
// Unused 0x00F00000
#define IMAGE_SCN_ALIGN_MASK 0x00F00000
#define IMAGE_SCN_LNK_NRELOC_OVFL 0x01000000 // Section contains extended relocations.
#define IMAGE_SCN_MEM_DISCARDABLE 0x02000000 // Section can be discarded.
#define IMAGE_SCN_MEM_NOT_CACHED 0x04000000 // Section is not cachable.
#define IMAGE_SCN_MEM_NOT_PAGED 0x08000000 // Section is not pageable.
#define IMAGE_SCN_MEM_SHARED 0x10000000 // Section is shareable.
#define IMAGE_SCN_MEM_EXECUTE 0x20000000 // Section is executable.
#define IMAGE_SCN_MEM_READ 0x40000000 // Section is readable.
#define IMAGE_SCN_MEM_WRITE 0x80000000 // Section is writeable.
//
// TLS Characteristic Flags
//
#define IMAGE_SCN_SCALE_INDEX 0x00000001 // Tls index is scaled
#ifndef _MAC
#include "pshpack2.h" // Symbols, relocs, and linenumbers are 2 byte packed
#endif
//
// Symbol format.
//
typedef struct _IMAGE_SYMBOL {
union {
BYTE ShortName[8];
struct {
DWORD Short; // if 0, use LongName
DWORD Long; // offset into string table
} Name;
DWORD LongName[2]; // PBYTE [2]
} N;
DWORD Value;
SHORT SectionNumber;
WORD Type;
BYTE StorageClass;
BYTE NumberOfAuxSymbols;
} IMAGE_SYMBOL;
typedef IMAGE_SYMBOL UNALIGNED *PIMAGE_SYMBOL;
#define IMAGE_SIZEOF_SYMBOL 18
typedef struct _IMAGE_SYMBOL_EX {
union {
BYTE ShortName[8];
struct {
DWORD Short; // if 0, use LongName
DWORD Long; // offset into string table
} Name;
DWORD LongName[2]; // PBYTE [2]
} N;
DWORD Value;
LONG SectionNumber;
WORD Type;
BYTE StorageClass;
BYTE NumberOfAuxSymbols;
} IMAGE_SYMBOL_EX;
typedef IMAGE_SYMBOL_EX UNALIGNED *PIMAGE_SYMBOL_EX;
//
// Section values.
//
// Symbols have a section number of the section in which they are
// defined. Otherwise, section numbers have the following meanings:
//
#define IMAGE_SYM_UNDEFINED (SHORT)0 // Symbol is undefined or is common.
#define IMAGE_SYM_ABSOLUTE (SHORT)-1 // Symbol is an absolute value.
#define IMAGE_SYM_DEBUG (SHORT)-2 // Symbol is a special debug item.
#define IMAGE_SYM_SECTION_MAX 0xFEFF // Values 0xFF00-0xFFFF are special
#define IMAGE_SYM_SECTION_MAX_EX MAXLONG
//
// Type (fundamental) values.
//
#define IMAGE_SYM_TYPE_NULL 0x0000 // no type.
#define IMAGE_SYM_TYPE_VOID 0x0001 //
#define IMAGE_SYM_TYPE_CHAR 0x0002 // type character.
#define IMAGE_SYM_TYPE_SHORT 0x0003 // type short integer.
#define IMAGE_SYM_TYPE_INT 0x0004 //
#define IMAGE_SYM_TYPE_LONG 0x0005 //
#define IMAGE_SYM_TYPE_FLOAT 0x0006 //
#define IMAGE_SYM_TYPE_DOUBLE 0x0007 //
#define IMAGE_SYM_TYPE_STRUCT 0x0008 //
#define IMAGE_SYM_TYPE_UNION 0x0009 //
#define IMAGE_SYM_TYPE_ENUM 0x000A // enumeration.
#define IMAGE_SYM_TYPE_MOE 0x000B // member of enumeration.
#define IMAGE_SYM_TYPE_BYTE 0x000C //
#define IMAGE_SYM_TYPE_WORD 0x000D //
#define IMAGE_SYM_TYPE_UINT 0x000E //
#define IMAGE_SYM_TYPE_DWORD 0x000F //
#define IMAGE_SYM_TYPE_PCODE 0x8000 //
//
// Type (derived) values.
//
#define IMAGE_SYM_DTYPE_NULL 0 // no derived type.
#define IMAGE_SYM_DTYPE_POINTER 1 // pointer.
#define IMAGE_SYM_DTYPE_FUNCTION 2 // function.
#define IMAGE_SYM_DTYPE_ARRAY 3 // array.
//
// Storage classes.
//
#define IMAGE_SYM_CLASS_END_OF_FUNCTION (BYTE )-1
#define IMAGE_SYM_CLASS_NULL 0x0000
#define IMAGE_SYM_CLASS_AUTOMATIC 0x0001
#define IMAGE_SYM_CLASS_EXTERNAL 0x0002
#define IMAGE_SYM_CLASS_STATIC 0x0003
#define IMAGE_SYM_CLASS_REGISTER 0x0004
#define IMAGE_SYM_CLASS_EXTERNAL_DEF 0x0005
#define IMAGE_SYM_CLASS_LABEL 0x0006
#define IMAGE_SYM_CLASS_UNDEFINED_LABEL 0x0007
#define IMAGE_SYM_CLASS_MEMBER_OF_STRUCT 0x0008
#define IMAGE_SYM_CLASS_ARGUMENT 0x0009
#define IMAGE_SYM_CLASS_STRUCT_TAG 0x000A
#define IMAGE_SYM_CLASS_MEMBER_OF_UNION 0x000B
#define IMAGE_SYM_CLASS_UNION_TAG 0x000C
#define IMAGE_SYM_CLASS_TYPE_DEFINITION 0x000D
#define IMAGE_SYM_CLASS_UNDEFINED_STATIC 0x000E
#define IMAGE_SYM_CLASS_ENUM_TAG 0x000F
#define IMAGE_SYM_CLASS_MEMBER_OF_ENUM 0x0010
#define IMAGE_SYM_CLASS_REGISTER_PARAM 0x0011
#define IMAGE_SYM_CLASS_BIT_FIELD 0x0012
#define IMAGE_SYM_CLASS_FAR_EXTERNAL 0x0044 //
#define IMAGE_SYM_CLASS_BLOCK 0x0064
#define IMAGE_SYM_CLASS_FUNCTION 0x0065
#define IMAGE_SYM_CLASS_END_OF_STRUCT 0x0066
#define IMAGE_SYM_CLASS_FILE 0x0067
// new
#define IMAGE_SYM_CLASS_SECTION 0x0068
#define IMAGE_SYM_CLASS_WEAK_EXTERNAL 0x0069
#define IMAGE_SYM_CLASS_CLR_TOKEN 0x006B
// type packing constants
#define N_BTMASK 0x000F
#define N_TMASK 0x0030
#define N_TMASK1 0x00C0
#define N_TMASK2 0x00F0
#define N_BTSHFT 4
#define N_TSHIFT 2
// MACROS
// Basic Type of x
#define BTYPE(x) ((x) & N_BTMASK)
// Is x a pointer?
#ifndef ISPTR
#define ISPTR(x) (((x) & N_TMASK) == (IMAGE_SYM_DTYPE_POINTER << N_BTSHFT))
#endif
// Is x a function?
#ifndef ISFCN
#define ISFCN(x) (((x) & N_TMASK) == (IMAGE_SYM_DTYPE_FUNCTION << N_BTSHFT))
#endif
// Is x an array?
#ifndef ISARY
#define ISARY(x) (((x) & N_TMASK) == (IMAGE_SYM_DTYPE_ARRAY << N_BTSHFT))
#endif
// Is x a structure, union, or enumeration TAG?
#ifndef ISTAG
#define ISTAG(x) ((x)==IMAGE_SYM_CLASS_STRUCT_TAG || (x)==IMAGE_SYM_CLASS_UNION_TAG || (x)==IMAGE_SYM_CLASS_ENUM_TAG)
#endif
#ifndef INCREF
#define INCREF(x) ((((x)&~N_BTMASK)<<N_TSHIFT)|(IMAGE_SYM_DTYPE_POINTER<<N_BTSHFT)|((x)&N_BTMASK))
#endif
#ifndef DECREF
#define DECREF(x) ((((x)>>N_TSHIFT)&~N_BTMASK)|((x)&N_BTMASK))
#endif
#include <pshpack2.h>
typedef struct IMAGE_AUX_SYMBOL_TOKEN_DEF {
BYTE bAuxType; // IMAGE_AUX_SYMBOL_TYPE
BYTE bReserved; // Must be 0
DWORD SymbolTableIndex;
BYTE rgbReserved[12]; // Must be 0
} IMAGE_AUX_SYMBOL_TOKEN_DEF;
typedef IMAGE_AUX_SYMBOL_TOKEN_DEF UNALIGNED *PIMAGE_AUX_SYMBOL_TOKEN_DEF;
#include <poppack.h>
//
// Auxiliary entry format.
//
typedef union _IMAGE_AUX_SYMBOL {
struct {
DWORD TagIndex; // struct, union, or enum tag index
union {
struct {
WORD Linenumber; // declaration line number
WORD Size; // size of struct, union, or enum
} LnSz;
DWORD TotalSize;
} Misc;
union {
struct { // if ISFCN, tag, or .bb
DWORD PointerToLinenumber;
DWORD PointerToNextFunction;
} Function;
struct { // if ISARY, up to 4 dimen.
WORD Dimension[4];
} Array;
} FcnAry;
WORD TvIndex; // tv index
} Sym;
struct {
BYTE Name[IMAGE_SIZEOF_SYMBOL];
} File;
struct {
DWORD Length; // section length
WORD NumberOfRelocations; // number of relocation entries
WORD NumberOfLinenumbers; // number of line numbers
DWORD CheckSum; // checksum for communal
SHORT Number; // section number to associate with
BYTE Selection; // communal selection type
BYTE bReserved;
SHORT HighNumber; // high bits of the section number
} Section;
IMAGE_AUX_SYMBOL_TOKEN_DEF TokenDef;
struct {
DWORD crc;
BYTE rgbReserved[14];
} CRC;
} IMAGE_AUX_SYMBOL;
typedef IMAGE_AUX_SYMBOL UNALIGNED *PIMAGE_AUX_SYMBOL;
typedef union _IMAGE_AUX_SYMBOL_EX {
struct {
DWORD WeakDefaultSymIndex; // the weak extern default symbol index
DWORD WeakSearchType;
BYTE rgbReserved[12];
} Sym;
struct {
BYTE Name[sizeof(IMAGE_SYMBOL_EX)];
} File;
struct {
DWORD Length; // section length
WORD NumberOfRelocations; // number of relocation entries
WORD NumberOfLinenumbers; // number of line numbers
DWORD CheckSum; // checksum for communal
SHORT Number; // section number to associate with
BYTE Selection; // communal selection type
BYTE bReserved;
SHORT HighNumber; // high bits of the section number
BYTE rgbReserved[2];
} Section;
struct{
IMAGE_AUX_SYMBOL_TOKEN_DEF TokenDef;
BYTE rgbReserved[2];
} DUMMYSTRUCTNAME;
struct {
DWORD crc;
BYTE rgbReserved[16];
} CRC;
} IMAGE_AUX_SYMBOL_EX;
typedef IMAGE_AUX_SYMBOL_EX UNALIGNED *PIMAGE_AUX_SYMBOL_EX;
typedef enum IMAGE_AUX_SYMBOL_TYPE {
IMAGE_AUX_SYMBOL_TYPE_TOKEN_DEF = 1,
} IMAGE_AUX_SYMBOL_TYPE;
//
// Communal selection types.
//
#define IMAGE_COMDAT_SELECT_NODUPLICATES 1
#define IMAGE_COMDAT_SELECT_ANY 2
#define IMAGE_COMDAT_SELECT_SAME_SIZE 3
#define IMAGE_COMDAT_SELECT_EXACT_MATCH 4
#define IMAGE_COMDAT_SELECT_ASSOCIATIVE 5
#define IMAGE_COMDAT_SELECT_LARGEST 6
#define IMAGE_COMDAT_SELECT_NEWEST 7
#define IMAGE_WEAK_EXTERN_SEARCH_NOLIBRARY 1
#define IMAGE_WEAK_EXTERN_SEARCH_LIBRARY 2
#define IMAGE_WEAK_EXTERN_SEARCH_ALIAS 3
//
// Relocation format.
//
typedef struct _IMAGE_RELOCATION {
union {
DWORD VirtualAddress;
DWORD RelocCount; // Set to the real count when IMAGE_SCN_LNK_NRELOC_OVFL is set
} DUMMYUNIONNAME;
DWORD SymbolTableIndex;
WORD Type;
} IMAGE_RELOCATION;
typedef IMAGE_RELOCATION UNALIGNED *PIMAGE_RELOCATION;
//
// I386 relocation types.
//
#define IMAGE_REL_I386_ABSOLUTE 0x0000 // Reference is absolute, no relocation is necessary
#define IMAGE_REL_I386_DIR16 0x0001 // Direct 16-bit reference to the symbols virtual address
#define IMAGE_REL_I386_REL16 0x0002 // PC-relative 16-bit reference to the symbols virtual address
#define IMAGE_REL_I386_DIR32 0x0006 // Direct 32-bit reference to the symbols virtual address
#define IMAGE_REL_I386_DIR32NB 0x0007 // Direct 32-bit reference to the symbols virtual address, base not included
#define IMAGE_REL_I386_SEG12 0x0009 // Direct 16-bit reference to the segment-selector bits of a 32-bit virtual address
#define IMAGE_REL_I386_SECTION 0x000A
#define IMAGE_REL_I386_SECREL 0x000B
#define IMAGE_REL_I386_TOKEN 0x000C // clr token
#define IMAGE_REL_I386_SECREL7 0x000D // 7 bit offset from base of section containing target
#define IMAGE_REL_I386_REL32 0x0014 // PC-relative 32-bit reference to the symbols virtual address
//
// MIPS relocation types.
//
#define IMAGE_REL_MIPS_ABSOLUTE 0x0000 // Reference is absolute, no relocation is necessary
#define IMAGE_REL_MIPS_REFHALF 0x0001
#define IMAGE_REL_MIPS_REFWORD 0x0002
#define IMAGE_REL_MIPS_JMPADDR 0x0003
#define IMAGE_REL_MIPS_REFHI 0x0004
#define IMAGE_REL_MIPS_REFLO 0x0005
#define IMAGE_REL_MIPS_GPREL 0x0006
#define IMAGE_REL_MIPS_LITERAL 0x0007
#define IMAGE_REL_MIPS_SECTION 0x000A
#define IMAGE_REL_MIPS_SECREL 0x000B
#define IMAGE_REL_MIPS_SECRELLO 0x000C // Low 16-bit section relative referemce (used for >32k TLS)
#define IMAGE_REL_MIPS_SECRELHI 0x000D // High 16-bit section relative reference (used for >32k TLS)
#define IMAGE_REL_MIPS_TOKEN 0x000E // clr token
#define IMAGE_REL_MIPS_JMPADDR16 0x0010
#define IMAGE_REL_MIPS_REFWORDNB 0x0022
#define IMAGE_REL_MIPS_PAIR 0x0025
//
// Alpha Relocation types.
//
#define IMAGE_REL_ALPHA_ABSOLUTE 0x0000
#define IMAGE_REL_ALPHA_REFLONG 0x0001
#define IMAGE_REL_ALPHA_REFQUAD 0x0002
#define IMAGE_REL_ALPHA_GPREL32 0x0003
#define IMAGE_REL_ALPHA_LITERAL 0x0004
#define IMAGE_REL_ALPHA_LITUSE 0x0005
#define IMAGE_REL_ALPHA_GPDISP 0x0006
#define IMAGE_REL_ALPHA_BRADDR 0x0007
#define IMAGE_REL_ALPHA_HINT 0x0008
#define IMAGE_REL_ALPHA_INLINE_REFLONG 0x0009
#define IMAGE_REL_ALPHA_REFHI 0x000A
#define IMAGE_REL_ALPHA_REFLO 0x000B
#define IMAGE_REL_ALPHA_PAIR 0x000C
#define IMAGE_REL_ALPHA_MATCH 0x000D
#define IMAGE_REL_ALPHA_SECTION 0x000E
#define IMAGE_REL_ALPHA_SECREL 0x000F
#define IMAGE_REL_ALPHA_REFLONGNB 0x0010
#define IMAGE_REL_ALPHA_SECRELLO 0x0011 // Low 16-bit section relative reference
#define IMAGE_REL_ALPHA_SECRELHI 0x0012 // High 16-bit section relative reference
#define IMAGE_REL_ALPHA_REFQ3 0x0013 // High 16 bits of 48 bit reference
#define IMAGE_REL_ALPHA_REFQ2 0x0014 // Middle 16 bits of 48 bit reference
#define IMAGE_REL_ALPHA_REFQ1 0x0015 // Low 16 bits of 48 bit reference
#define IMAGE_REL_ALPHA_GPRELLO 0x0016 // Low 16-bit GP relative reference
#define IMAGE_REL_ALPHA_GPRELHI 0x0017 // High 16-bit GP relative reference
//
// IBM PowerPC relocation types.
//
#define IMAGE_REL_PPC_ABSOLUTE 0x0000 // NOP
#define IMAGE_REL_PPC_ADDR64 0x0001 // 64-bit address
#define IMAGE_REL_PPC_ADDR32 0x0002 // 32-bit address
#define IMAGE_REL_PPC_ADDR24 0x0003 // 26-bit address, shifted left 2 (branch absolute)
#define IMAGE_REL_PPC_ADDR16 0x0004 // 16-bit address
#define IMAGE_REL_PPC_ADDR14 0x0005 // 16-bit address, shifted left 2 (load doubleword)
#define IMAGE_REL_PPC_REL24 0x0006 // 26-bit PC-relative offset, shifted left 2 (branch relative)
#define IMAGE_REL_PPC_REL14 0x0007 // 16-bit PC-relative offset, shifted left 2 (br cond relative)
#define IMAGE_REL_PPC_TOCREL16 0x0008 // 16-bit offset from TOC base
#define IMAGE_REL_PPC_TOCREL14 0x0009 // 16-bit offset from TOC base, shifted left 2 (load doubleword)
#define IMAGE_REL_PPC_ADDR32NB 0x000A // 32-bit addr w/o image base
#define IMAGE_REL_PPC_SECREL 0x000B // va of containing section (as in an image sectionhdr)
#define IMAGE_REL_PPC_SECTION 0x000C // sectionheader number
#define IMAGE_REL_PPC_IFGLUE 0x000D // substitute TOC restore instruction iff symbol is glue code
#define IMAGE_REL_PPC_IMGLUE 0x000E // symbol is glue code; virtual address is TOC restore instruction
#define IMAGE_REL_PPC_SECREL16 0x000F // va of containing section (limited to 16 bits)
#define IMAGE_REL_PPC_REFHI 0x0010
#define IMAGE_REL_PPC_REFLO 0x0011
#define IMAGE_REL_PPC_PAIR 0x0012
#define IMAGE_REL_PPC_SECRELLO 0x0013 // Low 16-bit section relative reference (used for >32k TLS)
#define IMAGE_REL_PPC_SECRELHI 0x0014 // High 16-bit section relative reference (used for >32k TLS)
#define IMAGE_REL_PPC_GPREL 0x0015
#define IMAGE_REL_PPC_TOKEN 0x0016 // clr token
#define IMAGE_REL_PPC_TYPEMASK 0x00FF // mask to isolate above values in IMAGE_RELOCATION.Type
// Flag bits in IMAGE_RELOCATION.TYPE
#define IMAGE_REL_PPC_NEG 0x0100 // subtract reloc value rather than adding it
#define IMAGE_REL_PPC_BRTAKEN 0x0200 // fix branch prediction bit to predict branch taken
#define IMAGE_REL_PPC_BRNTAKEN 0x0400 // fix branch prediction bit to predict branch not taken
#define IMAGE_REL_PPC_TOCDEFN 0x0800 // toc slot defined in file (or, data in toc)
//
// Hitachi SH3 relocation types.
//
#define IMAGE_REL_SH3_ABSOLUTE 0x0000 // No relocation
#define IMAGE_REL_SH3_DIRECT16 0x0001 // 16 bit direct
#define IMAGE_REL_SH3_DIRECT32 0x0002 // 32 bit direct
#define IMAGE_REL_SH3_DIRECT8 0x0003 // 8 bit direct, -128..255
#define IMAGE_REL_SH3_DIRECT8_WORD 0x0004 // 8 bit direct .W (0 ext.)
#define IMAGE_REL_SH3_DIRECT8_LONG 0x0005 // 8 bit direct .L (0 ext.)
#define IMAGE_REL_SH3_DIRECT4 0x0006 // 4 bit direct (0 ext.)
#define IMAGE_REL_SH3_DIRECT4_WORD 0x0007 // 4 bit direct .W (0 ext.)
#define IMAGE_REL_SH3_DIRECT4_LONG 0x0008 // 4 bit direct .L (0 ext.)
#define IMAGE_REL_SH3_PCREL8_WORD 0x0009 // 8 bit PC relative .W
#define IMAGE_REL_SH3_PCREL8_LONG 0x000A // 8 bit PC relative .L
#define IMAGE_REL_SH3_PCREL12_WORD 0x000B // 12 LSB PC relative .W
#define IMAGE_REL_SH3_STARTOF_SECTION 0x000C // Start of EXE section
#define IMAGE_REL_SH3_SIZEOF_SECTION 0x000D // Size of EXE section
#define IMAGE_REL_SH3_SECTION 0x000E // Section table index
#define IMAGE_REL_SH3_SECREL 0x000F // Offset within section
#define IMAGE_REL_SH3_DIRECT32_NB 0x0010 // 32 bit direct not based
#define IMAGE_REL_SH3_GPREL4_LONG 0x0011 // GP-relative addressing
#define IMAGE_REL_SH3_TOKEN 0x0012 // clr token
#define IMAGE_REL_SHM_PCRELPT 0x0013 // Offset from current
// instruction in longwords
// if not NOMODE, insert the
// inverse of the low bit at
// bit 32 to select PTA/PTB
#define IMAGE_REL_SHM_REFLO 0x0014 // Low bits of 32-bit address
#define IMAGE_REL_SHM_REFHALF 0x0015 // High bits of 32-bit address
#define IMAGE_REL_SHM_RELLO 0x0016 // Low bits of relative reference
#define IMAGE_REL_SHM_RELHALF 0x0017 // High bits of relative reference
#define IMAGE_REL_SHM_PAIR 0x0018 // offset operand for relocation
#define IMAGE_REL_SH_NOMODE 0x8000 // relocation ignores section mode
#define IMAGE_REL_ARM_ABSOLUTE 0x0000 // No relocation required
#define IMAGE_REL_ARM_ADDR32 0x0001 // 32 bit address
#define IMAGE_REL_ARM_ADDR32NB 0x0002 // 32 bit address w/o image base
#define IMAGE_REL_ARM_BRANCH24 0x0003 // 24 bit offset << 2 & sign ext.
#define IMAGE_REL_ARM_BRANCH11 0x0004 // Thumb: 2 11 bit offsets
#define IMAGE_REL_ARM_TOKEN 0x0005 // clr token
#define IMAGE_REL_ARM_GPREL12 0x0006 // GP-relative addressing (ARM)
#define IMAGE_REL_ARM_GPREL7 0x0007 // GP-relative addressing (Thumb)
#define IMAGE_REL_ARM_BLX24 0x0008
#define IMAGE_REL_ARM_BLX11 0x0009
#define IMAGE_REL_ARM_SECTION 0x000E // Section table index
#define IMAGE_REL_ARM_SECREL 0x000F // Offset within section
#define IMAGE_REL_ARM_MOV32A 0x0010 // ARM: MOVW/MOVT
#define IMAGE_REL_ARM_MOV32 0x0010 // ARM: MOVW/MOVT (deprecated)
#define IMAGE_REL_ARM_MOV32T 0x0011 // Thumb: MOVW/MOVT
#define IMAGE_REL_THUMB_MOV32 0x0011 // Thumb: MOVW/MOVT (deprecated)
#define IMAGE_REL_ARM_BRANCH20T 0x0012 // Thumb: 32-bit conditional B
#define IMAGE_REL_THUMB_BRANCH20 0x0012 // Thumb: 32-bit conditional B (deprecated)
#define IMAGE_REL_ARM_BRANCH24T 0x0014 // Thumb: 32-bit B or BL
#define IMAGE_REL_THUMB_BRANCH24 0x0014 // Thumb: 32-bit B or BL (deprecated)
#define IMAGE_REL_ARM_BLX23T 0x0015 // Thumb: BLX immediate
#define IMAGE_REL_THUMB_BLX23 0x0015 // Thumb: BLX immediate (deprecated)
#define IMAGE_REL_AM_ABSOLUTE 0x0000
#define IMAGE_REL_AM_ADDR32 0x0001
#define IMAGE_REL_AM_ADDR32NB 0x0002
#define IMAGE_REL_AM_CALL32 0x0003
#define IMAGE_REL_AM_FUNCINFO 0x0004
#define IMAGE_REL_AM_REL32_1 0x0005
#define IMAGE_REL_AM_REL32_2 0x0006
#define IMAGE_REL_AM_SECREL 0x0007
#define IMAGE_REL_AM_SECTION 0x0008
#define IMAGE_REL_AM_TOKEN 0x0009
//
// ARM64 relocations types.
//
#define IMAGE_REL_ARM64_ABSOLUTE 0x0000 // No relocation required
#define IMAGE_REL_ARM64_ADDR32 0x0001 // 32 bit address. Review! do we need it?
#define IMAGE_REL_ARM64_ADDR32NB 0x0002 // 32 bit address w/o image base (RVA: for Data/PData/XData)
#define IMAGE_REL_ARM64_BRANCH26 0x0003 // 26 bit offset << 2 & sign ext. for B & BL
#define IMAGE_REL_ARM64_PAGEBASE_REL21 0x0004 // ADRP
#define IMAGE_REL_ARM64_REL21 0x0005 // ADR
#define IMAGE_REL_ARM64_PAGEOFFSET_12A 0x0006 // ADD/ADDS (immediate) with zero shift, for page offset
#define IMAGE_REL_ARM64_PAGEOFFSET_12L 0x0007 // LDR (indexed, unsigned immediate), for page offset
#define IMAGE_REL_ARM64_SECREL 0x0008 // Offset within section
#define IMAGE_REL_ARM64_SECREL_LOW12A 0x0009 // ADD/ADDS (immediate) with zero shift, for bit 0:11 of section offset
#define IMAGE_REL_ARM64_SECREL_HIGH12A 0x000A // ADD/ADDS (immediate) with zero shift, for bit 12:23 of section offset
#define IMAGE_REL_ARM64_SECREL_LOW12L 0x000B // LDR (indexed, unsigned immediate), for bit 0:11 of section offset
#define IMAGE_REL_ARM64_TOKEN 0x000C
#define IMAGE_REL_ARM64_SECTION 0x000D // Section table index
#define IMAGE_REL_ARM64_ADDR64 0x000E // 64 bit address
//
// x64 relocations
//
#define IMAGE_REL_AMD64_ABSOLUTE 0x0000 // Reference is absolute, no relocation is necessary
#define IMAGE_REL_AMD64_ADDR64 0x0001 // 64-bit address (VA).
#define IMAGE_REL_AMD64_ADDR32 0x0002 // 32-bit address (VA).
#define IMAGE_REL_AMD64_ADDR32NB 0x0003 // 32-bit address w/o image base (RVA).
#define IMAGE_REL_AMD64_REL32 0x0004 // 32-bit relative address from byte following reloc
#define IMAGE_REL_AMD64_REL32_1 0x0005 // 32-bit relative address from byte distance 1 from reloc
#define IMAGE_REL_AMD64_REL32_2 0x0006 // 32-bit relative address from byte distance 2 from reloc
#define IMAGE_REL_AMD64_REL32_3 0x0007 // 32-bit relative address from byte distance 3 from reloc
#define IMAGE_REL_AMD64_REL32_4 0x0008 // 32-bit relative address from byte distance 4 from reloc
#define IMAGE_REL_AMD64_REL32_5 0x0009 // 32-bit relative address from byte distance 5 from reloc
#define IMAGE_REL_AMD64_SECTION 0x000A // Section index
#define IMAGE_REL_AMD64_SECREL 0x000B // 32 bit offset from base of section containing target
#define IMAGE_REL_AMD64_SECREL7 0x000C // 7 bit unsigned offset from base of section containing target
#define IMAGE_REL_AMD64_TOKEN 0x000D // 32 bit metadata token
#define IMAGE_REL_AMD64_SREL32 0x000E // 32 bit signed span-dependent value emitted into object
#define IMAGE_REL_AMD64_PAIR 0x000F
#define IMAGE_REL_AMD64_SSPAN32 0x0010 // 32 bit signed span-dependent value applied at link time
//
// IA64 relocation types.
//
#define IMAGE_REL_IA64_ABSOLUTE 0x0000
#define IMAGE_REL_IA64_IMM14 0x0001
#define IMAGE_REL_IA64_IMM22 0x0002
#define IMAGE_REL_IA64_IMM64 0x0003
#define IMAGE_REL_IA64_DIR32 0x0004
#define IMAGE_REL_IA64_DIR64 0x0005
#define IMAGE_REL_IA64_PCREL21B 0x0006
#define IMAGE_REL_IA64_PCREL21M 0x0007
#define IMAGE_REL_IA64_PCREL21F 0x0008
#define IMAGE_REL_IA64_GPREL22 0x0009
#define IMAGE_REL_IA64_LTOFF22 0x000A
#define IMAGE_REL_IA64_SECTION 0x000B
#define IMAGE_REL_IA64_SECREL22 0x000C
#define IMAGE_REL_IA64_SECREL64I 0x000D
#define IMAGE_REL_IA64_SECREL32 0x000E
//
#define IMAGE_REL_IA64_DIR32NB 0x0010
#define IMAGE_REL_IA64_SREL14 0x0011
#define IMAGE_REL_IA64_SREL22 0x0012
#define IMAGE_REL_IA64_SREL32 0x0013
#define IMAGE_REL_IA64_UREL32 0x0014
#define IMAGE_REL_IA64_PCREL60X 0x0015 // This is always a BRL and never converted
#define IMAGE_REL_IA64_PCREL60B 0x0016 // If possible, convert to MBB bundle with NOP.B in slot 1
#define IMAGE_REL_IA64_PCREL60F 0x0017 // If possible, convert to MFB bundle with NOP.F in slot 1
#define IMAGE_REL_IA64_PCREL60I 0x0018 // If possible, convert to MIB bundle with NOP.I in slot 1
#define IMAGE_REL_IA64_PCREL60M 0x0019 // If possible, convert to MMB bundle with NOP.M in slot 1
#define IMAGE_REL_IA64_IMMGPREL64 0x001A
#define IMAGE_REL_IA64_TOKEN 0x001B // clr token
#define IMAGE_REL_IA64_GPREL32 0x001C
#define IMAGE_REL_IA64_ADDEND 0x001F
//
// CEF relocation types.
//
#define IMAGE_REL_CEF_ABSOLUTE 0x0000 // Reference is absolute, no relocation is necessary
#define IMAGE_REL_CEF_ADDR32 0x0001 // 32-bit address (VA).
#define IMAGE_REL_CEF_ADDR64 0x0002 // 64-bit address (VA).
#define IMAGE_REL_CEF_ADDR32NB 0x0003 // 32-bit address w/o image base (RVA).
#define IMAGE_REL_CEF_SECTION 0x0004 // Section index
#define IMAGE_REL_CEF_SECREL 0x0005 // 32 bit offset from base of section containing target
#define IMAGE_REL_CEF_TOKEN 0x0006 // 32 bit metadata token
//
// clr relocation types.
//
#define IMAGE_REL_CEE_ABSOLUTE 0x0000 // Reference is absolute, no relocation is necessary
#define IMAGE_REL_CEE_ADDR32 0x0001 // 32-bit address (VA).
#define IMAGE_REL_CEE_ADDR64 0x0002 // 64-bit address (VA).
#define IMAGE_REL_CEE_ADDR32NB 0x0003 // 32-bit address w/o image base (RVA).
#define IMAGE_REL_CEE_SECTION 0x0004 // Section index
#define IMAGE_REL_CEE_SECREL 0x0005 // 32 bit offset from base of section containing target
#define IMAGE_REL_CEE_TOKEN 0x0006 // 32 bit metadata token
#define IMAGE_REL_M32R_ABSOLUTE 0x0000 // No relocation required
#define IMAGE_REL_M32R_ADDR32 0x0001 // 32 bit address
#define IMAGE_REL_M32R_ADDR32NB 0x0002 // 32 bit address w/o image base
#define IMAGE_REL_M32R_ADDR24 0x0003 // 24 bit address
#define IMAGE_REL_M32R_GPREL16 0x0004 // GP relative addressing
#define IMAGE_REL_M32R_PCREL24 0x0005 // 24 bit offset << 2 & sign ext.
#define IMAGE_REL_M32R_PCREL16 0x0006 // 16 bit offset << 2 & sign ext.
#define IMAGE_REL_M32R_PCREL8 0x0007 // 8 bit offset << 2 & sign ext.
#define IMAGE_REL_M32R_REFHALF 0x0008 // 16 MSBs
#define IMAGE_REL_M32R_REFHI 0x0009 // 16 MSBs; adj for LSB sign ext.
#define IMAGE_REL_M32R_REFLO 0x000A // 16 LSBs
#define IMAGE_REL_M32R_PAIR 0x000B // Link HI and LO
#define IMAGE_REL_M32R_SECTION 0x000C // Section table index
#define IMAGE_REL_M32R_SECREL32 0x000D // 32 bit section relative reference
#define IMAGE_REL_M32R_TOKEN 0x000E // clr token
#define IMAGE_REL_EBC_ABSOLUTE 0x0000 // No relocation required
#define IMAGE_REL_EBC_ADDR32NB 0x0001 // 32 bit address w/o image base
#define IMAGE_REL_EBC_REL32 0x0002 // 32-bit relative address from byte following reloc
#define IMAGE_REL_EBC_SECTION 0x0003 // Section table index
#define IMAGE_REL_EBC_SECREL 0x0004 // Offset within section
#define EXT_IMM64(Value, Address, Size, InstPos, ValPos) /* Intel-IA64-Filler */ \
Value |= (((ULONGLONG)((*(Address) >> InstPos) & (((ULONGLONG)1 << Size) - 1))) << ValPos) // Intel-IA64-Filler
#define INS_IMM64(Value, Address, Size, InstPos, ValPos) /* Intel-IA64-Filler */\
*(PDWORD)Address = (*(PDWORD)Address & ~(((1 << Size) - 1) << InstPos)) | /* Intel-IA64-Filler */\
((DWORD)((((ULONGLONG)Value >> ValPos) & (((ULONGLONG)1 << Size) - 1))) << InstPos) // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM7B_INST_WORD_X 3 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM7B_SIZE_X 7 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM7B_INST_WORD_POS_X 4 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM7B_VAL_POS_X 0 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM9D_INST_WORD_X 3 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM9D_SIZE_X 9 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM9D_INST_WORD_POS_X 18 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM9D_VAL_POS_X 7 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM5C_INST_WORD_X 3 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM5C_SIZE_X 5 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM5C_INST_WORD_POS_X 13 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM5C_VAL_POS_X 16 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IC_INST_WORD_X 3 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IC_SIZE_X 1 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IC_INST_WORD_POS_X 12 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IC_VAL_POS_X 21 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM41a_INST_WORD_X 1 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM41a_SIZE_X 10 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM41a_INST_WORD_POS_X 14 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM41a_VAL_POS_X 22 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM41b_INST_WORD_X 1 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM41b_SIZE_X 8 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM41b_INST_WORD_POS_X 24 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM41b_VAL_POS_X 32 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM41c_INST_WORD_X 2 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM41c_SIZE_X 23 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM41c_INST_WORD_POS_X 0 // Intel-IA64-Filler
#define EMARCH_ENC_I17_IMM41c_VAL_POS_X 40 // Intel-IA64-Filler
#define EMARCH_ENC_I17_SIGN_INST_WORD_X 3 // Intel-IA64-Filler
#define EMARCH_ENC_I17_SIGN_SIZE_X 1 // Intel-IA64-Filler
#define EMARCH_ENC_I17_SIGN_INST_WORD_POS_X 27 // Intel-IA64-Filler
#define EMARCH_ENC_I17_SIGN_VAL_POS_X 63 // Intel-IA64-Filler
#define X3_OPCODE_INST_WORD_X 3 // Intel-IA64-Filler
#define X3_OPCODE_SIZE_X 4 // Intel-IA64-Filler
#define X3_OPCODE_INST_WORD_POS_X 28 // Intel-IA64-Filler
#define X3_OPCODE_SIGN_VAL_POS_X 0 // Intel-IA64-Filler
#define X3_I_INST_WORD_X 3 // Intel-IA64-Filler
#define X3_I_SIZE_X 1 // Intel-IA64-Filler
#define X3_I_INST_WORD_POS_X 27 // Intel-IA64-Filler
#define X3_I_SIGN_VAL_POS_X 59 // Intel-IA64-Filler
#define X3_D_WH_INST_WORD_X 3 // Intel-IA64-Filler
#define X3_D_WH_SIZE_X 3 // Intel-IA64-Filler
#define X3_D_WH_INST_WORD_POS_X 24 // Intel-IA64-Filler
#define X3_D_WH_SIGN_VAL_POS_X 0 // Intel-IA64-Filler
#define X3_IMM20_INST_WORD_X 3 // Intel-IA64-Filler
#define X3_IMM20_SIZE_X 20 // Intel-IA64-Filler
#define X3_IMM20_INST_WORD_POS_X 4 // Intel-IA64-Filler
#define X3_IMM20_SIGN_VAL_POS_X 0 // Intel-IA64-Filler
#define X3_IMM39_1_INST_WORD_X 2 // Intel-IA64-Filler
#define X3_IMM39_1_SIZE_X 23 // Intel-IA64-Filler
#define X3_IMM39_1_INST_WORD_POS_X 0 // Intel-IA64-Filler
#define X3_IMM39_1_SIGN_VAL_POS_X 36 // Intel-IA64-Filler
#define X3_IMM39_2_INST_WORD_X 1 // Intel-IA64-Filler
#define X3_IMM39_2_SIZE_X 16 // Intel-IA64-Filler
#define X3_IMM39_2_INST_WORD_POS_X 16 // Intel-IA64-Filler
#define X3_IMM39_2_SIGN_VAL_POS_X 20 // Intel-IA64-Filler
#define X3_P_INST_WORD_X 3 // Intel-IA64-Filler
#define X3_P_SIZE_X 4 // Intel-IA64-Filler
#define X3_P_INST_WORD_POS_X 0 // Intel-IA64-Filler
#define X3_P_SIGN_VAL_POS_X 0 // Intel-IA64-Filler
#define X3_TMPLT_INST_WORD_X 0 // Intel-IA64-Filler
#define X3_TMPLT_SIZE_X 4 // Intel-IA64-Filler
#define X3_TMPLT_INST_WORD_POS_X 0 // Intel-IA64-Filler
#define X3_TMPLT_SIGN_VAL_POS_X 0 // Intel-IA64-Filler
#define X3_BTYPE_QP_INST_WORD_X 2 // Intel-IA64-Filler
#define X3_BTYPE_QP_SIZE_X 9 // Intel-IA64-Filler
#define X3_BTYPE_QP_INST_WORD_POS_X 23 // Intel-IA64-Filler
#define X3_BTYPE_QP_INST_VAL_POS_X 0 // Intel-IA64-Filler
#define X3_EMPTY_INST_WORD_X 1 // Intel-IA64-Filler
#define X3_EMPTY_SIZE_X 2 // Intel-IA64-Filler
#define X3_EMPTY_INST_WORD_POS_X 14 // Intel-IA64-Filler
#define X3_EMPTY_INST_VAL_POS_X 0 // Intel-IA64-Filler
//
// Line number format.
//
typedef struct _IMAGE_LINENUMBER {
union {
DWORD SymbolTableIndex; // Symbol table index of function name if Linenumber is 0.
DWORD VirtualAddress; // Virtual address of line number.
} Type;
WORD Linenumber; // Line number.
} IMAGE_LINENUMBER;
typedef IMAGE_LINENUMBER UNALIGNED *PIMAGE_LINENUMBER;
#ifndef _MAC
#include "poppack.h" // Back to 4 byte packing
#endif
//
// Based relocation format.
//
typedef struct _IMAGE_BASE_RELOCATION {
DWORD VirtualAddress;
DWORD SizeOfBlock;
// WORD TypeOffset[1];
} IMAGE_BASE_RELOCATION;
typedef IMAGE_BASE_RELOCATION UNALIGNED * PIMAGE_BASE_RELOCATION;
//
// Based relocation types.
//
#define IMAGE_REL_BASED_ABSOLUTE 0
#define IMAGE_REL_BASED_HIGH 1
#define IMAGE_REL_BASED_LOW 2
#define IMAGE_REL_BASED_HIGHLOW 3
#define IMAGE_REL_BASED_HIGHADJ 4
#define IMAGE_REL_BASED_MACHINE_SPECIFIC_5 5
#define IMAGE_REL_BASED_RESERVED 6
#define IMAGE_REL_BASED_MACHINE_SPECIFIC_7 7
#define IMAGE_REL_BASED_MACHINE_SPECIFIC_8 8
#define IMAGE_REL_BASED_MACHINE_SPECIFIC_9 9
#define IMAGE_REL_BASED_DIR64 10
//
// Platform-specific based relocation types.
//
#define IMAGE_REL_BASED_IA64_IMM64 9
#define IMAGE_REL_BASED_MIPS_JMPADDR 5
#define IMAGE_REL_BASED_MIPS_JMPADDR16 9
#define IMAGE_REL_BASED_ARM_MOV32 5
#define IMAGE_REL_BASED_THUMB_MOV32 7
//
// Archive format.
//
#define IMAGE_ARCHIVE_START_SIZE 8
#define IMAGE_ARCHIVE_START "!<arch>\n"
#define IMAGE_ARCHIVE_END "`\n"
#define IMAGE_ARCHIVE_PAD "\n"
#define IMAGE_ARCHIVE_LINKER_MEMBER "/ "
#define IMAGE_ARCHIVE_LONGNAMES_MEMBER "// "
typedef struct _IMAGE_ARCHIVE_MEMBER_HEADER {
BYTE Name[16]; // File member name - `/' terminated.
BYTE Date[12]; // File member date - decimal.
BYTE UserID[6]; // File member user id - decimal.
BYTE GroupID[6]; // File member group id - decimal.
BYTE Mode[8]; // File member mode - octal.
BYTE Size[10]; // File member size - decimal.
BYTE EndHeader[2]; // String to end header.
} IMAGE_ARCHIVE_MEMBER_HEADER, *PIMAGE_ARCHIVE_MEMBER_HEADER;
#define IMAGE_SIZEOF_ARCHIVE_MEMBER_HDR 60
//
// DLL support.
//
//
// Export Format
//
typedef struct _IMAGE_EXPORT_DIRECTORY {
DWORD Characteristics;
DWORD TimeDateStamp;
WORD MajorVersion;
WORD MinorVersion;
DWORD Name;
DWORD Base;
DWORD NumberOfFunctions;
DWORD NumberOfNames;
DWORD AddressOfFunctions; // RVA from base of image
DWORD AddressOfNames; // RVA from base of image
DWORD AddressOfNameOrdinals; // RVA from base of image
} IMAGE_EXPORT_DIRECTORY, *PIMAGE_EXPORT_DIRECTORY;
//
// Import Format
//
typedef struct _IMAGE_IMPORT_BY_NAME {
WORD Hint;
CHAR Name[1];
} IMAGE_IMPORT_BY_NAME, *PIMAGE_IMPORT_BY_NAME;
#include "pshpack8.h" // Use align 8 for the 64-bit IAT.
typedef struct _IMAGE_THUNK_DATA64 {
union {
ULONGLONG ForwarderString; // PBYTE
ULONGLONG Function; // PDWORD
ULONGLONG Ordinal;
ULONGLONG AddressOfData; // PIMAGE_IMPORT_BY_NAME
} u1;
} IMAGE_THUNK_DATA64;
typedef IMAGE_THUNK_DATA64 * PIMAGE_THUNK_DATA64;
#include "poppack.h" // Back to 4 byte packing
typedef struct _IMAGE_THUNK_DATA32 {
union {
DWORD ForwarderString; // PBYTE
DWORD Function; // PDWORD
DWORD Ordinal;
DWORD AddressOfData; // PIMAGE_IMPORT_BY_NAME
} u1;
} IMAGE_THUNK_DATA32;
typedef IMAGE_THUNK_DATA32 * PIMAGE_THUNK_DATA32;
#define IMAGE_ORDINAL_FLAG64 0x8000000000000000
#define IMAGE_ORDINAL_FLAG32 0x80000000
#define IMAGE_ORDINAL64(Ordinal) (Ordinal & 0xffff)
#define IMAGE_ORDINAL32(Ordinal) (Ordinal & 0xffff)
#define IMAGE_SNAP_BY_ORDINAL64(Ordinal) ((Ordinal & IMAGE_ORDINAL_FLAG64) != 0)
#define IMAGE_SNAP_BY_ORDINAL32(Ordinal) ((Ordinal & IMAGE_ORDINAL_FLAG32) != 0)
//
// Thread Local Storage
//
typedef VOID
(NTAPI *PIMAGE_TLS_CALLBACK) (
PVOID DllHandle,
DWORD Reason,
PVOID Reserved
);
typedef struct _IMAGE_TLS_DIRECTORY64 {
ULONGLONG StartAddressOfRawData;
ULONGLONG EndAddressOfRawData;
ULONGLONG AddressOfIndex; // PDWORD
ULONGLONG AddressOfCallBacks; // PIMAGE_TLS_CALLBACK *;
DWORD SizeOfZeroFill;
union {
DWORD Characteristics;
struct {
DWORD Reserved0 : 20;
DWORD Alignment : 4;
DWORD Reserved1 : 8;
} DUMMYSTRUCTNAME;
} DUMMYUNIONNAME;
} IMAGE_TLS_DIRECTORY64;
typedef IMAGE_TLS_DIRECTORY64 * PIMAGE_TLS_DIRECTORY64;
typedef struct _IMAGE_TLS_DIRECTORY32 {
DWORD StartAddressOfRawData;
DWORD EndAddressOfRawData;
DWORD AddressOfIndex; // PDWORD
DWORD AddressOfCallBacks; // PIMAGE_TLS_CALLBACK *
DWORD SizeOfZeroFill;
union {
DWORD Characteristics;
struct {
DWORD Reserved0 : 20;
DWORD Alignment : 4;
DWORD Reserved1 : 8;
} DUMMYSTRUCTNAME;
} DUMMYUNIONNAME;
} IMAGE_TLS_DIRECTORY32;
typedef IMAGE_TLS_DIRECTORY32 * PIMAGE_TLS_DIRECTORY32;
#ifdef _WIN64
#define IMAGE_ORDINAL_FLAG IMAGE_ORDINAL_FLAG64
#define IMAGE_ORDINAL(Ordinal) IMAGE_ORDINAL64(Ordinal)
typedef IMAGE_THUNK_DATA64 IMAGE_THUNK_DATA;
typedef PIMAGE_THUNK_DATA64 PIMAGE_THUNK_DATA;
#define IMAGE_SNAP_BY_ORDINAL(Ordinal) IMAGE_SNAP_BY_ORDINAL64(Ordinal)
typedef IMAGE_TLS_DIRECTORY64 IMAGE_TLS_DIRECTORY;
typedef PIMAGE_TLS_DIRECTORY64 PIMAGE_TLS_DIRECTORY;
#else
#define IMAGE_ORDINAL_FLAG IMAGE_ORDINAL_FLAG32
#define IMAGE_ORDINAL(Ordinal) IMAGE_ORDINAL32(Ordinal)
typedef IMAGE_THUNK_DATA32 IMAGE_THUNK_DATA;
typedef PIMAGE_THUNK_DATA32 PIMAGE_THUNK_DATA;
#define IMAGE_SNAP_BY_ORDINAL(Ordinal) IMAGE_SNAP_BY_ORDINAL32(Ordinal)
typedef IMAGE_TLS_DIRECTORY32 IMAGE_TLS_DIRECTORY;
typedef PIMAGE_TLS_DIRECTORY32 PIMAGE_TLS_DIRECTORY;
#endif
typedef struct _IMAGE_IMPORT_DESCRIPTOR {
union {
DWORD Characteristics; // 0 for terminating null import descriptor
DWORD OriginalFirstThunk; // RVA to original unbound IAT (PIMAGE_THUNK_DATA)
} DUMMYUNIONNAME;
DWORD TimeDateStamp; // 0 if not bound,
// -1 if bound, and real date\time stamp
// in IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT (new BIND)
// O.W. date/time stamp of DLL bound to (Old BIND)
DWORD ForwarderChain; // -1 if no forwarders
DWORD Name;
DWORD FirstThunk; // RVA to IAT (if bound this IAT has actual addresses)
} IMAGE_IMPORT_DESCRIPTOR;
typedef IMAGE_IMPORT_DESCRIPTOR UNALIGNED *PIMAGE_IMPORT_DESCRIPTOR;
//
// New format import descriptors pointed to by DataDirectory[ IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT ]
//
typedef struct _IMAGE_BOUND_IMPORT_DESCRIPTOR {
DWORD TimeDateStamp;
WORD OffsetModuleName;
WORD NumberOfModuleForwarderRefs;
// Array of zero or more IMAGE_BOUND_FORWARDER_REF follows
} IMAGE_BOUND_IMPORT_DESCRIPTOR, *PIMAGE_BOUND_IMPORT_DESCRIPTOR;
typedef struct _IMAGE_BOUND_FORWARDER_REF {
DWORD TimeDateStamp;
WORD OffsetModuleName;
WORD Reserved;
} IMAGE_BOUND_FORWARDER_REF, *PIMAGE_BOUND_FORWARDER_REF;
typedef struct _IMAGE_DELAYLOAD_DESCRIPTOR {
union {
DWORD AllAttributes;
struct {
DWORD RvaBased : 1; // Delay load version 2
DWORD ReservedAttributes : 31;
} DUMMYSTRUCTNAME;
} Attributes;
DWORD DllNameRVA; // RVA to the name of the target library (NULL-terminate ASCII string)
DWORD ModuleHandleRVA; // RVA to the HMODULE caching location (PHMODULE)
DWORD ImportAddressTableRVA; // RVA to the start of the IAT (PIMAGE_THUNK_DATA)
DWORD ImportNameTableRVA; // RVA to the start of the name table (PIMAGE_THUNK_DATA::AddressOfData)
DWORD BoundImportAddressTableRVA; // RVA to an optional bound IAT
DWORD UnloadInformationTableRVA; // RVA to an optional unload info table
DWORD TimeDateStamp; // 0 if not bound,
// Otherwise, date/time of the target DLL
} IMAGE_DELAYLOAD_DESCRIPTOR, *PIMAGE_DELAYLOAD_DESCRIPTOR;
typedef const IMAGE_DELAYLOAD_DESCRIPTOR *PCIMAGE_DELAYLOAD_DESCRIPTOR;
//
// Resource Format.
//
//
// Resource directory consists of two counts, following by a variable length
// array of directory entries. The first count is the number of entries at
// beginning of the array that have actual names associated with each entry.
// The entries are in ascending order, case insensitive strings. The second
// count is the number of entries that immediately follow the named entries.
// This second count identifies the number of entries that have 16-bit integer
// Ids as their name. These entries are also sorted in ascending order.
//
// This structure allows fast lookup by either name or number, but for any
// given resource entry only one form of lookup is supported, not both.
// This is consistant with the syntax of the .RC file and the .RES file.
//
typedef struct _IMAGE_RESOURCE_DIRECTORY {
DWORD Characteristics;
DWORD TimeDateStamp;
WORD MajorVersion;
WORD MinorVersion;
WORD NumberOfNamedEntries;
WORD NumberOfIdEntries;
// IMAGE_RESOURCE_DIRECTORY_ENTRY DirectoryEntries[];
} IMAGE_RESOURCE_DIRECTORY, *PIMAGE_RESOURCE_DIRECTORY;
#define IMAGE_RESOURCE_NAME_IS_STRING 0x80000000
#define IMAGE_RESOURCE_DATA_IS_DIRECTORY 0x80000000
//
// Each directory contains the 32-bit Name of the entry and an offset,
// relative to the beginning of the resource directory of the data associated
// with this directory entry. If the name of the entry is an actual text
// string instead of an integer Id, then the high order bit of the name field
// is set to one and the low order 31-bits are an offset, relative to the
// beginning of the resource directory of the string, which is of type
// IMAGE_RESOURCE_DIRECTORY_STRING. Otherwise the high bit is clear and the
// low-order 16-bits are the integer Id that identify this resource directory
// entry. If the directory entry is yet another resource directory (i.e. a
// subdirectory), then the high order bit of the offset field will be
// set to indicate this. Otherwise the high bit is clear and the offset
// field points to a resource data entry.
//
typedef struct _IMAGE_RESOURCE_DIRECTORY_ENTRY {
union {
struct {
DWORD NameOffset:31;
DWORD NameIsString:1;
} DUMMYSTRUCTNAME;
DWORD Name;
WORD Id;
} DUMMYUNIONNAME;
union {
DWORD OffsetToData;
struct {
DWORD OffsetToDirectory:31;
DWORD DataIsDirectory:1;
} DUMMYSTRUCTNAME2;
} DUMMYUNIONNAME2;
} IMAGE_RESOURCE_DIRECTORY_ENTRY, *PIMAGE_RESOURCE_DIRECTORY_ENTRY;
//
// For resource directory entries that have actual string names, the Name
// field of the directory entry points to an object of the following type.
// All of these string objects are stored together after the last resource
// directory entry and before the first resource data object. This minimizes
// the impact of these variable length objects on the alignment of the fixed
// size directory entry objects.
//
typedef struct _IMAGE_RESOURCE_DIRECTORY_STRING {
WORD Length;
CHAR NameString[ 1 ];
} IMAGE_RESOURCE_DIRECTORY_STRING, *PIMAGE_RESOURCE_DIRECTORY_STRING;
typedef struct _IMAGE_RESOURCE_DIR_STRING_U {
WORD Length;
WCHAR NameString[ 1 ];
} IMAGE_RESOURCE_DIR_STRING_U, *PIMAGE_RESOURCE_DIR_STRING_U;
//
// Each resource data entry describes a leaf node in the resource directory
// tree. It contains an offset, relative to the beginning of the resource
// directory of the data for the resource, a size field that gives the number
// of bytes of data at that offset, a CodePage that should be used when
// decoding code point values within the resource data. Typically for new
// applications the code page would be the unicode code page.
//
typedef struct _IMAGE_RESOURCE_DATA_ENTRY {
DWORD OffsetToData;
DWORD Size;
DWORD CodePage;
DWORD Reserved;
} IMAGE_RESOURCE_DATA_ENTRY, *PIMAGE_RESOURCE_DATA_ENTRY;
//
// Code Integrity in loadconfig (CI)
//
typedef struct _IMAGE_LOAD_CONFIG_CODE_INTEGRITY {
WORD Flags; // Flags to indicate if CI information is available, etc.
WORD Catalog; // 0xFFFF means not available
DWORD CatalogOffset;
DWORD Reserved; // Additional bitmask to be defined later
} IMAGE_LOAD_CONFIG_CODE_INTEGRITY, *PIMAGE_LOAD_CONFIG_CODE_INTEGRITY;
//
// Dynamic value relocation table in loadconfig
//
typedef struct _IMAGE_DYNAMIC_RELOCATION_TABLE {
DWORD Version;
DWORD Size;
// IMAGE_DYNAMIC_RELOCATION DynamicRelocations[0];
} IMAGE_DYNAMIC_RELOCATION_TABLE, *PIMAGE_DYNAMIC_RELOCATION_TABLE;
//
// Dynamic value relocation entries following IMAGE_DYNAMIC_RELOCATION_TABLE
//
typedef struct _IMAGE_DYNAMIC_RELOCATION {
PVOID Symbol;
DWORD BaseRelocSize;
// IMAGE_BASE_RELOCATION BaseRelocations[0];
} IMAGE_DYNAMIC_RELOCATION, *PIMAGE_DYNAMIC_RELOCATION;
//
// Load Configuration Directory Entry
//
typedef struct _IMAGE_LOAD_CONFIG_DIRECTORY32 {
DWORD Size;
DWORD TimeDateStamp;
WORD MajorVersion;
WORD MinorVersion;
DWORD GlobalFlagsClear;
DWORD GlobalFlagsSet;
DWORD CriticalSectionDefaultTimeout;
DWORD DeCommitFreeBlockThreshold;
DWORD DeCommitTotalFreeThreshold;
DWORD LockPrefixTable; // VA
DWORD MaximumAllocationSize;
DWORD VirtualMemoryThreshold;
DWORD ProcessHeapFlags;
DWORD ProcessAffinityMask;
WORD CSDVersion;
WORD DependentLoadFlags;
DWORD EditList; // VA
DWORD SecurityCookie; // VA
DWORD SEHandlerTable; // VA
DWORD SEHandlerCount;
DWORD GuardCFCheckFunctionPointer; // VA
DWORD GuardCFDispatchFunctionPointer; // VA
DWORD GuardCFFunctionTable; // VA
DWORD GuardCFFunctionCount;
DWORD GuardFlags;
IMAGE_LOAD_CONFIG_CODE_INTEGRITY CodeIntegrity;
DWORD GuardAddressTakenIatEntryTable; // VA
DWORD GuardAddressTakenIatEntryCount;
DWORD GuardLongJumpTargetTable; // VA
DWORD GuardLongJumpTargetCount;
DWORD DynamicValueRelocTable; // VA
DWORD HybridMetadataPointer;
} IMAGE_LOAD_CONFIG_DIRECTORY32, *PIMAGE_LOAD_CONFIG_DIRECTORY32;
typedef struct _IMAGE_LOAD_CONFIG_DIRECTORY64 {
DWORD Size;
DWORD TimeDateStamp;
WORD MajorVersion;
WORD MinorVersion;
DWORD GlobalFlagsClear;
DWORD GlobalFlagsSet;
DWORD CriticalSectionDefaultTimeout;
ULONGLONG DeCommitFreeBlockThreshold;
ULONGLONG DeCommitTotalFreeThreshold;
ULONGLONG LockPrefixTable; // VA
ULONGLONG MaximumAllocationSize;
ULONGLONG VirtualMemoryThreshold;
ULONGLONG ProcessAffinityMask;
DWORD ProcessHeapFlags;
WORD CSDVersion;
WORD DependentLoadFlags;
ULONGLONG EditList; // VA
ULONGLONG SecurityCookie; // VA
ULONGLONG SEHandlerTable; // VA
ULONGLONG SEHandlerCount;
ULONGLONG GuardCFCheckFunctionPointer; // VA
ULONGLONG GuardCFDispatchFunctionPointer; // VA
ULONGLONG GuardCFFunctionTable; // VA
ULONGLONG GuardCFFunctionCount;
DWORD GuardFlags;
IMAGE_LOAD_CONFIG_CODE_INTEGRITY CodeIntegrity;
ULONGLONG GuardAddressTakenIatEntryTable; // VA
ULONGLONG GuardAddressTakenIatEntryCount;
ULONGLONG GuardLongJumpTargetTable; // VA
ULONGLONG GuardLongJumpTargetCount;
ULONGLONG DynamicValueRelocTable; // VA
ULONGLONG HybridMetadataPointer; // VA
} IMAGE_LOAD_CONFIG_DIRECTORY64, *PIMAGE_LOAD_CONFIG_DIRECTORY64;
#ifdef _WIN64
typedef IMAGE_LOAD_CONFIG_DIRECTORY64 IMAGE_LOAD_CONFIG_DIRECTORY;
typedef PIMAGE_LOAD_CONFIG_DIRECTORY64 PIMAGE_LOAD_CONFIG_DIRECTORY;
#else
typedef IMAGE_LOAD_CONFIG_DIRECTORY32 IMAGE_LOAD_CONFIG_DIRECTORY;
typedef PIMAGE_LOAD_CONFIG_DIRECTORY32 PIMAGE_LOAD_CONFIG_DIRECTORY;
#endif
#define IMAGE_GUARD_CF_INSTRUMENTED 0x00000100 // Module performs control flow integrity checks using system-supplied support
#define IMAGE_GUARD_CFW_INSTRUMENTED 0x00000200 // Module performs control flow and write integrity checks
#define IMAGE_GUARD_CF_FUNCTION_TABLE_PRESENT 0x00000400 // Module contains valid control flow target metadata
#define IMAGE_GUARD_SECURITY_COOKIE_UNUSED 0x00000800 // Module does not make use of the /GS security cookie
#define IMAGE_GUARD_PROTECT_DELAYLOAD_IAT 0x00001000 // Module supports read only delay load IAT
#define IMAGE_GUARD_DELAYLOAD_IAT_IN_ITS_OWN_SECTION 0x00002000 // Delayload import table in its own .didat section (with nothing else in it) that can be freely reprotected
#define IMAGE_GUARD_CF_EXPORT_SUPPRESSION_INFO_PRESENT 0x00004000 // Module contains suppressed export information
#define IMAGE_GUARD_CF_ENABLE_EXPORT_SUPPRESSION 0x00008000 // Module enables suppression of exports
#define IMAGE_GUARD_CF_LONGJUMP_TABLE_PRESENT 0x00010000 // Module contains longjmp target information
#define IMAGE_GUARD_CF_FUNCTION_TABLE_SIZE_MASK 0xF0000000 // Stride of Guard CF function table encoded in these bits (additional count of bytes per element)
#define IMAGE_GUARD_CF_FUNCTION_TABLE_SIZE_SHIFT 28 // Shift to right-justify Guard CF function table stride
//
// GFIDS table entry flags.
//
#define IMAGE_GUARD_FLAG_FID_SUPPRESSED 0x01 // The containing GFID entry is suppressed
#define IMAGE_GUARD_FLAG_EXPORT_SUPPRESSED 0x02 // The containing GFID entry is suppressed
//
// WIN CE Exception table format
//
//
// Function table entry format. Function table is pointed to by the
// IMAGE_DIRECTORY_ENTRY_EXCEPTION directory entry.
//
typedef struct _IMAGE_CE_RUNTIME_FUNCTION_ENTRY {
DWORD FuncStart;
DWORD PrologLen : 8;
DWORD FuncLen : 22;
DWORD ThirtyTwoBit : 1;
DWORD ExceptionFlag : 1;
} IMAGE_CE_RUNTIME_FUNCTION_ENTRY, * PIMAGE_CE_RUNTIME_FUNCTION_ENTRY;
typedef struct _IMAGE_ARM_RUNTIME_FUNCTION_ENTRY {
DWORD BeginAddress;
union {
DWORD UnwindData;
struct {
DWORD Flag : 2;
DWORD FunctionLength : 11;
DWORD Ret : 2;
DWORD H : 1;
DWORD Reg : 3;
DWORD R : 1;
DWORD L : 1;
DWORD C : 1;
DWORD StackAdjust : 10;
} DUMMYSTRUCTNAME;
} DUMMYUNIONNAME;
} IMAGE_ARM_RUNTIME_FUNCTION_ENTRY, * PIMAGE_ARM_RUNTIME_FUNCTION_ENTRY;
typedef struct _IMAGE_ARM64_RUNTIME_FUNCTION_ENTRY {
DWORD BeginAddress;
union {
DWORD UnwindData;
struct {
DWORD Flag : 2;
DWORD FunctionLength : 11;
DWORD RegF : 3;
DWORD RegI : 4;
DWORD H : 1;
DWORD CR : 2;
DWORD FrameSize : 9;
} DUMMYSTRUCTNAME;
} DUMMYUNIONNAME;
} IMAGE_ARM64_RUNTIME_FUNCTION_ENTRY, * PIMAGE_ARM64_RUNTIME_FUNCTION_ENTRY;
typedef struct _IMAGE_ALPHA64_RUNTIME_FUNCTION_ENTRY {
ULONGLONG BeginAddress;
ULONGLONG EndAddress;
ULONGLONG ExceptionHandler;
ULONGLONG HandlerData;
ULONGLONG PrologEndAddress;
} IMAGE_ALPHA64_RUNTIME_FUNCTION_ENTRY, *PIMAGE_ALPHA64_RUNTIME_FUNCTION_ENTRY;
typedef struct _IMAGE_ALPHA_RUNTIME_FUNCTION_ENTRY {
DWORD BeginAddress;
DWORD EndAddress;
DWORD ExceptionHandler;
DWORD HandlerData;
DWORD PrologEndAddress;
} IMAGE_ALPHA_RUNTIME_FUNCTION_ENTRY, *PIMAGE_ALPHA_RUNTIME_FUNCTION_ENTRY;
typedef struct _IMAGE_RUNTIME_FUNCTION_ENTRY {
DWORD BeginAddress;
DWORD EndAddress;
union {
DWORD UnwindInfoAddress;
DWORD UnwindData;
} DUMMYUNIONNAME;
} _IMAGE_RUNTIME_FUNCTION_ENTRY, *_PIMAGE_RUNTIME_FUNCTION_ENTRY;
typedef _IMAGE_RUNTIME_FUNCTION_ENTRY IMAGE_IA64_RUNTIME_FUNCTION_ENTRY;
typedef _PIMAGE_RUNTIME_FUNCTION_ENTRY PIMAGE_IA64_RUNTIME_FUNCTION_ENTRY;
#if defined(_AXP64_)
typedef IMAGE_ALPHA64_RUNTIME_FUNCTION_ENTRY IMAGE_AXP64_RUNTIME_FUNCTION_ENTRY;
typedef PIMAGE_ALPHA64_RUNTIME_FUNCTION_ENTRY PIMAGE_AXP64_RUNTIME_FUNCTION_ENTRY;
typedef IMAGE_ALPHA64_RUNTIME_FUNCTION_ENTRY IMAGE_RUNTIME_FUNCTION_ENTRY;
typedef PIMAGE_ALPHA64_RUNTIME_FUNCTION_ENTRY PIMAGE_RUNTIME_FUNCTION_ENTRY;
#elif defined(_ALPHA_)
typedef IMAGE_ALPHA_RUNTIME_FUNCTION_ENTRY IMAGE_RUNTIME_FUNCTION_ENTRY;
typedef PIMAGE_ALPHA_RUNTIME_FUNCTION_ENTRY PIMAGE_RUNTIME_FUNCTION_ENTRY;
#elif defined(_ARM64_)
typedef IMAGE_ARM64_RUNTIME_FUNCTION_ENTRY IMAGE_RUNTIME_FUNCTION_ENTRY;
typedef PIMAGE_ARM64_RUNTIME_FUNCTION_ENTRY PIMAGE_RUNTIME_FUNCTION_ENTRY;
#elif defined(_ARM_)
typedef IMAGE_ARM_RUNTIME_FUNCTION_ENTRY IMAGE_RUNTIME_FUNCTION_ENTRY;
typedef PIMAGE_ARM_RUNTIME_FUNCTION_ENTRY PIMAGE_RUNTIME_FUNCTION_ENTRY;
#else
typedef _IMAGE_RUNTIME_FUNCTION_ENTRY IMAGE_RUNTIME_FUNCTION_ENTRY;
typedef _PIMAGE_RUNTIME_FUNCTION_ENTRY PIMAGE_RUNTIME_FUNCTION_ENTRY;
#endif
//
// Debug Format
//
typedef struct _IMAGE_DEBUG_DIRECTORY {
DWORD Characteristics;
DWORD TimeDateStamp;
WORD MajorVersion;
WORD MinorVersion;
DWORD Type;
DWORD SizeOfData;
DWORD AddressOfRawData;
DWORD PointerToRawData;
} IMAGE_DEBUG_DIRECTORY, *PIMAGE_DEBUG_DIRECTORY;
#define IMAGE_DEBUG_TYPE_UNKNOWN 0
#define IMAGE_DEBUG_TYPE_COFF 1
#define IMAGE_DEBUG_TYPE_CODEVIEW 2
#define IMAGE_DEBUG_TYPE_FPO 3
#define IMAGE_DEBUG_TYPE_MISC 4
#define IMAGE_DEBUG_TYPE_EXCEPTION 5
#define IMAGE_DEBUG_TYPE_FIXUP 6
#define IMAGE_DEBUG_TYPE_OMAP_TO_SRC 7
#define IMAGE_DEBUG_TYPE_OMAP_FROM_SRC 8
#define IMAGE_DEBUG_TYPE_BORLAND 9
#define IMAGE_DEBUG_TYPE_RESERVED10 10
#define IMAGE_DEBUG_TYPE_CLSID 11
#define IMAGE_DEBUG_TYPE_VC_FEATURE 12
#define IMAGE_DEBUG_TYPE_POGO 13
#define IMAGE_DEBUG_TYPE_ILTCG 14
#define IMAGE_DEBUG_TYPE_MPX 15
typedef struct _IMAGE_COFF_SYMBOLS_HEADER {
DWORD NumberOfSymbols;
DWORD LvaToFirstSymbol;
DWORD NumberOfLinenumbers;
DWORD LvaToFirstLinenumber;
DWORD RvaToFirstByteOfCode;
DWORD RvaToLastByteOfCode;
DWORD RvaToFirstByteOfData;
DWORD RvaToLastByteOfData;
} IMAGE_COFF_SYMBOLS_HEADER, *PIMAGE_COFF_SYMBOLS_HEADER;
#define FRAME_FPO 0
#define FRAME_TRAP 1
#define FRAME_TSS 2
#define FRAME_NONFPO 3
typedef struct _FPO_DATA {
DWORD ulOffStart; // offset 1st byte of function code
DWORD cbProcSize; // # bytes in function
DWORD cdwLocals; // # bytes in locals/4
WORD cdwParams; // # bytes in params/4
WORD cbProlog : 8; // # bytes in prolog
WORD cbRegs : 3; // # regs saved
WORD fHasSEH : 1; // TRUE if SEH in func
WORD fUseBP : 1; // TRUE if EBP has been allocated
WORD reserved : 1; // reserved for future use
WORD cbFrame : 2; // frame type
} FPO_DATA, *PFPO_DATA;
#define SIZEOF_RFPO_DATA 16
#define IMAGE_DEBUG_MISC_EXENAME 1
typedef struct _IMAGE_DEBUG_MISC {
DWORD DataType; // type of misc data, see defines
DWORD Length; // total length of record, rounded to four
// byte multiple.
BOOLEAN Unicode; // TRUE if data is unicode string
BYTE Reserved[ 3 ];
BYTE Data[ 1 ]; // Actual data
} IMAGE_DEBUG_MISC, *PIMAGE_DEBUG_MISC;
//
// Function table extracted from MIPS/ALPHA/IA64 images. Does not contain
// information needed only for runtime support. Just those fields for
// each entry needed by a debugger.
//
typedef struct _IMAGE_FUNCTION_ENTRY {
DWORD StartingAddress;
DWORD EndingAddress;
DWORD EndOfPrologue;
} IMAGE_FUNCTION_ENTRY, *PIMAGE_FUNCTION_ENTRY;
typedef struct _IMAGE_FUNCTION_ENTRY64 {
ULONGLONG StartingAddress;
ULONGLONG EndingAddress;
union {
ULONGLONG EndOfPrologue;
ULONGLONG UnwindInfoAddress;
} DUMMYUNIONNAME;
} IMAGE_FUNCTION_ENTRY64, *PIMAGE_FUNCTION_ENTRY64;
//
// Debugging information can be stripped from an image file and placed
// in a separate .DBG file, whose file name part is the same as the
// image file name part (e.g. symbols for CMD.EXE could be stripped
// and placed in CMD.DBG). This is indicated by the IMAGE_FILE_DEBUG_STRIPPED
// flag in the Characteristics field of the file header. The beginning of
// the .DBG file contains the following structure which captures certain
// information from the image file. This allows a debug to proceed even if
// the original image file is not accessable. This header is followed by
// zero of more IMAGE_SECTION_HEADER structures, followed by zero or more
// IMAGE_DEBUG_DIRECTORY structures. The latter structures and those in
// the image file contain file offsets relative to the beginning of the
// .DBG file.
//
// If symbols have been stripped from an image, the IMAGE_DEBUG_MISC structure
// is left in the image file, but not mapped. This allows a debugger to
// compute the name of the .DBG file, from the name of the image in the
// IMAGE_DEBUG_MISC structure.
//
typedef struct _IMAGE_SEPARATE_DEBUG_HEADER {
WORD Signature;
WORD Flags;
WORD Machine;
WORD Characteristics;
DWORD TimeDateStamp;
DWORD CheckSum;
DWORD ImageBase;
DWORD SizeOfImage;
DWORD NumberOfSections;
DWORD ExportedNamesSize;
DWORD DebugDirectorySize;
DWORD SectionAlignment;
DWORD Reserved[2];
} IMAGE_SEPARATE_DEBUG_HEADER, *PIMAGE_SEPARATE_DEBUG_HEADER;
// begin_ntoshvp
typedef struct _NON_PAGED_DEBUG_INFO {
WORD Signature;
WORD Flags;
DWORD Size;
WORD Machine;
WORD Characteristics;
DWORD TimeDateStamp;
DWORD CheckSum;
DWORD SizeOfImage;
ULONGLONG ImageBase;
//DebugDirectorySize
//IMAGE_DEBUG_DIRECTORY
} NON_PAGED_DEBUG_INFO, *PNON_PAGED_DEBUG_INFO;
// end_ntoshvp
#ifndef _MAC
#define IMAGE_SEPARATE_DEBUG_SIGNATURE 0x4944
#define NON_PAGED_DEBUG_SIGNATURE 0x494E
#else
#define IMAGE_SEPARATE_DEBUG_SIGNATURE 0x4449 // DI
#define NON_PAGED_DEBUG_SIGNATURE 0x4E49 // NI
#endif
#define IMAGE_SEPARATE_DEBUG_FLAGS_MASK 0x8000
#define IMAGE_SEPARATE_DEBUG_MISMATCH 0x8000 // when DBG was updated, the
// old checksum didn't match.
//
// The .arch section is made up of headers, each describing an amask position/value
// pointing to an array of IMAGE_ARCHITECTURE_ENTRY's. Each "array" (both the header
// and entry arrays) are terminiated by a quadword of 0xffffffffL.
//
// NOTE: There may be quadwords of 0 sprinkled around and must be skipped.
//
typedef struct _ImageArchitectureHeader {
unsigned int AmaskValue: 1; // 1 -> code section depends on mask bit
// 0 -> new instruction depends on mask bit
int :7; // MBZ
unsigned int AmaskShift: 8; // Amask bit in question for this fixup
int :16; // MBZ
DWORD FirstEntryRVA; // RVA into .arch section to array of ARCHITECTURE_ENTRY's
} IMAGE_ARCHITECTURE_HEADER, *PIMAGE_ARCHITECTURE_HEADER;
typedef struct _ImageArchitectureEntry {
DWORD FixupInstRVA; // RVA of instruction to fixup
DWORD NewInst; // fixup instruction (see alphaops.h)
} IMAGE_ARCHITECTURE_ENTRY, *PIMAGE_ARCHITECTURE_ENTRY;
#include "poppack.h" // Back to the initial value
// The following structure defines the new import object. Note the values of the first two fields,
// which must be set as stated in order to differentiate old and new import members.
// Following this structure, the linker emits two null-terminated strings used to recreate the
// import at the time of use. The first string is the import's name, the second is the dll's name.
#define IMPORT_OBJECT_HDR_SIG2 0xffff
typedef struct IMPORT_OBJECT_HEADER {
WORD Sig1; // Must be IMAGE_FILE_MACHINE_UNKNOWN
WORD Sig2; // Must be IMPORT_OBJECT_HDR_SIG2.
WORD Version;
WORD Machine;
DWORD TimeDateStamp; // Time/date stamp
DWORD SizeOfData; // particularly useful for incremental links
union {
WORD Ordinal; // if grf & IMPORT_OBJECT_ORDINAL
WORD Hint;
} DUMMYUNIONNAME;
WORD Type : 2; // IMPORT_TYPE
WORD NameType : 3; // IMPORT_NAME_TYPE
WORD Reserved : 11; // Reserved. Must be zero.
} IMPORT_OBJECT_HEADER;
typedef enum IMPORT_OBJECT_TYPE
{
IMPORT_OBJECT_CODE = 0,
IMPORT_OBJECT_DATA = 1,
IMPORT_OBJECT_CONST = 2,
} IMPORT_OBJECT_TYPE;
typedef enum IMPORT_OBJECT_NAME_TYPE
{
IMPORT_OBJECT_ORDINAL = 0, // Import by ordinal
IMPORT_OBJECT_NAME = 1, // Import name == public symbol name.
IMPORT_OBJECT_NAME_NO_PREFIX = 2, // Import name == public symbol name skipping leading ?, @, or optionally _.
IMPORT_OBJECT_NAME_UNDECORATE = 3, // Import name == public symbol name skipping leading ?, @, or optionally _
// and truncating at first @
} IMPORT_OBJECT_NAME_TYPE;
#ifndef __IMAGE_COR20_HEADER_DEFINED__
#define __IMAGE_COR20_HEADER_DEFINED__
typedef enum ReplacesCorHdrNumericDefines
{
// COM+ Header entry point flags.
COMIMAGE_FLAGS_ILONLY =0x00000001,
COMIMAGE_FLAGS_32BITREQUIRED =0x00000002,
COMIMAGE_FLAGS_IL_LIBRARY =0x00000004,
COMIMAGE_FLAGS_STRONGNAMESIGNED =0x00000008,
COMIMAGE_FLAGS_NATIVE_ENTRYPOINT =0x00000010,
COMIMAGE_FLAGS_TRACKDEBUGDATA =0x00010000,
COMIMAGE_FLAGS_32BITPREFERRED =0x00020000,
// Version flags for image.
COR_VERSION_MAJOR_V2 =2,
COR_VERSION_MAJOR =COR_VERSION_MAJOR_V2,
COR_VERSION_MINOR =5,
COR_DELETED_NAME_LENGTH =8,
COR_VTABLEGAP_NAME_LENGTH =8,
// Maximum size of a NativeType descriptor.
NATIVE_TYPE_MAX_CB =1,
COR_ILMETHOD_SECT_SMALL_MAX_DATASIZE=0xFF,
// #defines for the MIH FLAGS
IMAGE_COR_MIH_METHODRVA =0x01,
IMAGE_COR_MIH_EHRVA =0x02,
IMAGE_COR_MIH_BASICBLOCK =0x08,
// V-table constants
COR_VTABLE_32BIT =0x01, // V-table slots are 32-bits in size.
COR_VTABLE_64BIT =0x02, // V-table slots are 64-bits in size.
COR_VTABLE_FROM_UNMANAGED =0x04, // If set, transition from unmanaged.
COR_VTABLE_FROM_UNMANAGED_RETAIN_APPDOMAIN =0x08, // If set, transition from unmanaged with keeping the current appdomain.
COR_VTABLE_CALL_MOST_DERIVED =0x10, // Call most derived method described by
// EATJ constants
IMAGE_COR_EATJ_THUNK_SIZE =32, // Size of a jump thunk reserved range.
// Max name lengths
//@todo: Change to unlimited name lengths.
MAX_CLASS_NAME =1024,
MAX_PACKAGE_NAME =1024,
} ReplacesCorHdrNumericDefines;
// CLR 2.0 header structure.
typedef struct IMAGE_COR20_HEADER
{
// Header versioning
DWORD cb;
WORD MajorRuntimeVersion;
WORD MinorRuntimeVersion;
// Symbol table and startup information
IMAGE_DATA_DIRECTORY MetaData;
DWORD Flags;
// If COMIMAGE_FLAGS_NATIVE_ENTRYPOINT is not set, EntryPointToken represents a managed entrypoint.
// If COMIMAGE_FLAGS_NATIVE_ENTRYPOINT is set, EntryPointRVA represents an RVA to a native entrypoint.
union {
DWORD EntryPointToken;
DWORD EntryPointRVA;
} DUMMYUNIONNAME;
// Binding information
IMAGE_DATA_DIRECTORY Resources;
IMAGE_DATA_DIRECTORY StrongNameSignature;
// Regular fixup and binding information
IMAGE_DATA_DIRECTORY CodeManagerTable;
IMAGE_DATA_DIRECTORY VTableFixups;
IMAGE_DATA_DIRECTORY ExportAddressTableJumps;
// Precompiled image info (internal use only - set to zero)
IMAGE_DATA_DIRECTORY ManagedNativeHeader;
} IMAGE_COR20_HEADER, *PIMAGE_COR20_HEADER;
#endif // __IMAGE_COR20_HEADER_DEFINED__
//
// End Image Format
//
#include <apiset.h>
//
// prototypes
//
// begin_ntifs
#pragma region Application or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM)
#if (NTDDI_VERSION > NTDDI_WINXP)
NTSYSAPI
_Success_(return != 0)
WORD
NTAPI
RtlCaptureStackBackTrace(
_In_ DWORD FramesToSkip,
_In_ DWORD FramesToCapture,
_Out_writes_to_(FramesToCapture, return) PVOID * BackTrace,
_Out_opt_ PDWORD BackTraceHash
);
#endif
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#pragma region Desktop Family or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
#if (NTDDI_VERSION > NTDDI_WIN2K)
NTSYSAPI
VOID
NTAPI
RtlCaptureContext(
_Out_ PCONTEXT ContextRecord
);
#endif
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
// end_ntifs
#pragma region Application or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM)
NTSYSAPI
VOID
NTAPI
RtlUnwind(
_In_opt_ PVOID TargetFrame,
_In_opt_ PVOID TargetIp,
_In_opt_ PEXCEPTION_RECORD ExceptionRecord,
_In_ PVOID ReturnValue
);
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#if defined(_AMD64_)
#pragma region Desktop Family or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
NTSYSAPI
BOOLEAN
__cdecl
RtlAddFunctionTable(
_In_reads_(EntryCount) PRUNTIME_FUNCTION FunctionTable,
_In_ DWORD EntryCount,
_In_ DWORD64 BaseAddress
);
NTSYSAPI
BOOLEAN
__cdecl
RtlDeleteFunctionTable(
_In_ PRUNTIME_FUNCTION FunctionTable
);
NTSYSAPI
BOOLEAN
__cdecl
RtlInstallFunctionTableCallback(
_In_ DWORD64 TableIdentifier,
_In_ DWORD64 BaseAddress,
_In_ DWORD Length,
_In_ PGET_RUNTIME_FUNCTION_CALLBACK Callback,
_In_opt_ PVOID Context,
_In_opt_ PCWSTR OutOfProcessCallbackDll
);
// end_1_0
#if ((NTDDI_VERSION >= NTDDI_WIN8) && !defined(_CONTRACT_GEN)) || (_APISET_RTLSUPPORT_VER > 0x0100)
NTSYSAPI
DWORD
NTAPI
RtlAddGrowableFunctionTable(
_Out_ PVOID * DynamicTable,
_In_reads_(MaximumEntryCount) PRUNTIME_FUNCTION FunctionTable,
_In_ DWORD EntryCount,
_In_ DWORD MaximumEntryCount,
_In_ ULONG_PTR RangeBase,
_In_ ULONG_PTR RangeEnd
);
NTSYSAPI
VOID
NTAPI
RtlGrowFunctionTable(
_Inout_ PVOID DynamicTable,
_In_ DWORD NewEntryCount
);
NTSYSAPI
VOID
NTAPI
RtlDeleteGrowableFunctionTable(
_In_ PVOID DynamicTable
);
#endif // ((NTDDI_VERSION >= NTDDI_WIN8) && !defined(_CONTRACT_GEN)) || (_APISET_RTLSUPPORT_VER > 0x0100)
// begin_1_0
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#pragma region Application or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM)
NTSYSAPI
PRUNTIME_FUNCTION
NTAPI
RtlLookupFunctionEntry(
_In_ DWORD64 ControlPc,
_Out_ PDWORD64 ImageBase,
_Inout_opt_ PUNWIND_HISTORY_TABLE HistoryTable
);
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#pragma region Desktop Family or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
NTSYSAPI
VOID
__cdecl
RtlRestoreContext(
_In_ PCONTEXT ContextRecord,
_In_opt_ struct _EXCEPTION_RECORD * ExceptionRecord
);
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#pragma region Application or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM)
NTSYSAPI
VOID
NTAPI
RtlUnwindEx(
_In_opt_ PVOID TargetFrame,
_In_opt_ PVOID TargetIp,
_In_opt_ PEXCEPTION_RECORD ExceptionRecord,
_In_ PVOID ReturnValue,
_In_ PCONTEXT ContextRecord,
_In_opt_ PUNWIND_HISTORY_TABLE HistoryTable
);
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#pragma region Desktop Family or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
NTSYSAPI
PEXCEPTION_ROUTINE
NTAPI
RtlVirtualUnwind(
_In_ DWORD HandlerType,
_In_ DWORD64 ImageBase,
_In_ DWORD64 ControlPc,
_In_ PRUNTIME_FUNCTION FunctionEntry,
_Inout_ PCONTEXT ContextRecord,
_Out_ PVOID * HandlerData,
_Out_ PDWORD64 EstablisherFrame,
_Inout_opt_ PKNONVOLATILE_CONTEXT_POINTERS ContextPointers
);
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#endif // _AMD64_
#if defined(_ARM_)
#pragma region Desktop Family or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
NTSYSAPI
BOOLEAN
__cdecl
RtlAddFunctionTable(
_In_reads_(EntryCount) PRUNTIME_FUNCTION FunctionTable,
_In_ DWORD EntryCount,
_In_ DWORD BaseAddress
);
NTSYSAPI
BOOLEAN
__cdecl
RtlDeleteFunctionTable(
_In_ PRUNTIME_FUNCTION FunctionTable
);
NTSYSAPI
BOOLEAN
__cdecl
RtlInstallFunctionTableCallback(
_In_ DWORD TableIdentifier,
_In_ DWORD BaseAddress,
_In_ DWORD Length,
_In_ PGET_RUNTIME_FUNCTION_CALLBACK Callback,
_In_opt_ PVOID Context,
_In_opt_ PCWSTR OutOfProcessCallbackDll
);
// end_1_0
#if ((NTDDI_VERSION >= NTDDI_WIN8) && !defined(_CONTRACT_GEN)) || (_APISET_RTLSUPPORT_VER > 0x0100)
NTSYSAPI
DWORD
NTAPI
RtlAddGrowableFunctionTable(
_Out_ PVOID * DynamicTable,
_In_reads_(MaximumEntryCount) PRUNTIME_FUNCTION FunctionTable,
_In_ DWORD EntryCount,
_In_ DWORD MaximumEntryCount,
_In_ ULONG_PTR RangeBase,
_In_ ULONG_PTR RangeEnd
);
NTSYSAPI
VOID
NTAPI
RtlGrowFunctionTable(
_Inout_ PVOID DynamicTable,
_In_ DWORD NewEntryCount
);
NTSYSAPI
VOID
NTAPI
RtlDeleteGrowableFunctionTable(
_In_ PVOID DynamicTable
);
#endif // ((NTDDI_VERSION >= NTDDI_WIN8) && !defined(_CONTRACT_GEN)) || (_APISET_RTLSUPPORT_VER > 0x0100)
// begin_1_0
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#pragma region Application or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM)
NTSYSAPI
PRUNTIME_FUNCTION
NTAPI
RtlLookupFunctionEntry(
_In_ ULONG_PTR ControlPc,
_Out_ PDWORD ImageBase,
_Inout_opt_ PUNWIND_HISTORY_TABLE HistoryTable
);
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#pragma region Desktop Family or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
NTSYSAPI
VOID
__cdecl
RtlRestoreContext(
_In_ PCONTEXT ContextRecord,
_In_opt_ struct _EXCEPTION_RECORD * ExceptionRecord
);
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#pragma region Application or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM)
NTSYSAPI
VOID
NTAPI
RtlUnwindEx(
_In_opt_ PVOID TargetFrame,
_In_opt_ PVOID TargetIp,
_In_opt_ PEXCEPTION_RECORD ExceptionRecord,
_In_ PVOID ReturnValue,
_In_ PCONTEXT ContextRecord,
_In_opt_ PUNWIND_HISTORY_TABLE HistoryTable
);
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#pragma region Desktop Family or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
NTSYSAPI
PEXCEPTION_ROUTINE
NTAPI
RtlVirtualUnwind(
_In_ DWORD HandlerType,
_In_ DWORD ImageBase,
_In_ DWORD ControlPc,
_In_ PRUNTIME_FUNCTION FunctionEntry,
_Inout_ PCONTEXT ContextRecord,
_Out_ PVOID * HandlerData,
_Out_ PDWORD EstablisherFrame,
_Inout_opt_ PKNONVOLATILE_CONTEXT_POINTERS ContextPointers
);
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#endif // _ARM_
#if defined(_ARM64_)
#pragma region Desktop Family or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
NTSYSAPI
BOOLEAN
__cdecl
RtlAddFunctionTable(
_In_reads_(EntryCount) PRUNTIME_FUNCTION FunctionTable,
_In_ DWORD EntryCount,
_In_ ULONG_PTR BaseAddress
);
NTSYSAPI
BOOLEAN
__cdecl
RtlDeleteFunctionTable(
_In_ PRUNTIME_FUNCTION FunctionTable
);
NTSYSAPI
BOOLEAN
__cdecl
RtlInstallFunctionTableCallback(
_In_ ULONG_PTR TableIdentifier,
_In_ ULONG_PTR BaseAddress,
_In_ DWORD Length,
_In_ PGET_RUNTIME_FUNCTION_CALLBACK Callback,
_In_opt_ PVOID Context,
_In_opt_ PCWSTR OutOfProcessCallbackDll
);
// end_1_0
#if ((NTDDI_VERSION >= NTDDI_WIN8) && !defined(_CONTRACT_GEN)) || (_APISET_RTLSUPPORT_VER > 0x0100)
NTSYSAPI
DWORD
NTAPI
RtlAddGrowableFunctionTable(
_Out_ PVOID * DynamicTable,
_In_reads_(MaximumEntryCount) PRUNTIME_FUNCTION FunctionTable,
_In_ DWORD EntryCount,
_In_ DWORD MaximumEntryCount,
_In_ ULONG_PTR RangeBase,
_In_ ULONG_PTR RangeEnd
);
NTSYSAPI
VOID
NTAPI
RtlGrowFunctionTable(
_Inout_ PVOID DynamicTable,
_In_ DWORD NewEntryCount
);
NTSYSAPI
VOID
NTAPI
RtlDeleteGrowableFunctionTable(
_In_ PVOID DynamicTable
);
#endif // ((NTDDI_VERSION >= NTDDI_WIN8) && !defined(_CONTRACT_GEN)) || (_APISET_RTLSUPPORT_VER > 0x0100)
// begin_1_0
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#pragma region Application or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM)
NTSYSAPI
PRUNTIME_FUNCTION
NTAPI
RtlLookupFunctionEntry(
_In_ ULONG_PTR ControlPc,
_Out_ PULONG_PTR ImageBase,
_Inout_opt_ PUNWIND_HISTORY_TABLE HistoryTable
);
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#pragma region Desktop Family or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
NTSYSAPI
VOID
__cdecl
RtlRestoreContext(
_In_ PCONTEXT ContextRecord,
_In_opt_ struct _EXCEPTION_RECORD * ExceptionRecord
);
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#pragma region Application or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM)
NTSYSAPI
VOID
NTAPI
RtlUnwindEx(
_In_opt_ PVOID TargetFrame,
_In_opt_ PVOID TargetIp,
_In_opt_ PEXCEPTION_RECORD ExceptionRecord,
_In_ PVOID ReturnValue,
_In_ PCONTEXT ContextRecord,
_In_opt_ PUNWIND_HISTORY_TABLE HistoryTable
);
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#pragma region Desktop Family or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
NTSYSAPI
PEXCEPTION_ROUTINE
NTAPI
RtlVirtualUnwind(
_In_ DWORD HandlerType,
_In_ ULONG_PTR ImageBase,
_In_ ULONG_PTR ControlPc,
_In_ PRUNTIME_FUNCTION FunctionEntry,
_Inout_ PCONTEXT ContextRecord,
_Out_ PVOID * HandlerData,
_Out_ PULONG_PTR EstablisherFrame,
_Inout_opt_ PKNONVOLATILE_CONTEXT_POINTERS ContextPointers
);
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#endif // _ARM64_
#if defined(_IA64_)
#pragma region Desktop Family or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
_IRQL_requires_max_(PASSIVE_LEVEL)
_Success_(return!=0)
NTSYSAPI
BOOLEAN
NTAPI
RtlAddFunctionTable(
_In_reads_(EntryCount) PRUNTIME_FUNCTION FunctionTable,
_In_ DWORD EntryCount,
_In_ ULONGLONG BaseAddress,
_In_ ULONGLONG TargetGp
);
_IRQL_requires_max_(PASSIVE_LEVEL)
_Success_(return!=0)
NTSYSAPI
BOOLEAN
NTAPI
RtlDeleteFunctionTable(
_In_ PRUNTIME_FUNCTION FunctionTable
);
_IRQL_requires_max_(PASSIVE_LEVEL)
_Success_(return!=0)
NTSYSAPI
BOOLEAN
NTAPI
RtlInstallFunctionTableCallback(
_In_ DWORD64 TableIdentifier,
_In_ DWORD64 BaseAddress,
_In_ DWORD Length,
_In_ DWORD64 TargetGp,
_In_ PGET_RUNTIME_FUNCTION_CALLBACK Callback,
_In_opt_ PVOID Context,
_In_opt_ PCWSTR OutOfProcessCallbackDll
);
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#pragma region Application or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM)
_IRQL_requires_max_(SYNCH_LEVEL)
_IRQL_requires_min_(PASSIVE_LEVEL)
NTSYSAPI
PRUNTIME_FUNCTION
NTAPI
RtlLookupFunctionEntry(
_In_ ULONGLONG ControlPc,
_Out_ PULONGLONG ImageBase,
_Out_ PULONGLONG TargetGp
);
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#pragma region Desktop Family or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
NTSYSAPI
VOID
NTAPI
RtlRestoreContext(
_In_ PCONTEXT ContextRecord,
_In_opt_ struct _EXCEPTION_RECORD * ExceptionRecord
);
NTSYSAPI
ULONGLONG
NTAPI
RtlVirtualUnwind(
_In_ ULONGLONG ImageBase,
_In_ ULONGLONG ControlPc,
_In_ PRUNTIME_FUNCTION FunctionEntry,
_Inout_ PCONTEXT ContextRecord,
_Out_ PBOOLEAN InFunction,
_Out_ PFRAME_POINTERS EstablisherFrame,
_Inout_opt_ PKNONVOLATILE_CONTEXT_POINTERS ContextPointers
);
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#endif // _IA64_
#if defined(_IA64_)
#pragma region Application or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM)
NTSYSAPI
VOID
NTAPI
RtlUnwindEx(
_In_opt_ FRAME_POINTERS TargetFrame,
_In_opt_ PVOID TargetIp,
_In_opt_ PEXCEPTION_RECORD ExceptionRecord,
_In_ PVOID ReturnValue,
_In_ PCONTEXT ContextRecord,
_In_opt_ PUNWIND_HISTORY_TABLE HistoryTable
);
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#endif // _IA64_
#pragma region Application or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM)
#if !(defined(_CONTRACT_GEN) && (_APISET_RTLSUPPORT_VER <= 0x0100) && defined(_X86_))
NTSYSAPI
PVOID
NTAPI
RtlPcToFileHeader(
_In_ PVOID PcValue,
_Out_ PVOID * BaseOfImage
);
#endif // !(defined(_CONTRACT_GEN) && (_APISET_RTLSUPPORT_VER <= 0x0100) && defined(_X86_))
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#pragma region Desktop Family or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
#if !(defined(_CONTRACT_GEN) && (_APISET_RTLSUPPORT_VER <= 0x0100) && defined(_X86_))
#if (NTDDI_VERSION >= NTDDI_WIN2K)
_Check_return_
NTSYSAPI
SIZE_T
NTAPI
RtlCompareMemory(
_In_ const VOID * Source1,
_In_ const VOID * Source2,
_In_ SIZE_T Length
);
#endif
#endif // !(defined(_CONTRACT_GEN) && (_APISET_RTLSUPPORT_VER <= 0x0100) && defined(_X86_))
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
//
// for move macros
//
#ifdef _MAC
#ifndef _INC_STRING
#include <string.h>
#endif /* _INC_STRING */
#else
#include <string.h>
#endif // _MAC
#ifndef _SLIST_HEADER_
#define _SLIST_HEADER_
#if defined(_WIN64)
//
// The type SINGLE_LIST_ENTRY is not suitable for use with SLISTs. For
// WIN64, an entry on an SLIST is required to be 16-byte aligned, while a
// SINGLE_LIST_ENTRY structure has only 8 byte alignment.
//
// Therefore, all SLIST code should use the SLIST_ENTRY type instead of the
// SINGLE_LIST_ENTRY type.
//
#pragma warning(push)
#pragma warning(disable:4324) // structure padded due to align()
typedef struct DECLSPEC_ALIGN(16) _SLIST_ENTRY {
struct _SLIST_ENTRY *Next;
} SLIST_ENTRY, *PSLIST_ENTRY;
#pragma warning(pop)
#else
typedef struct _SINGLE_LIST_ENTRY SLIST_ENTRY, *PSLIST_ENTRY;
#endif // _WIN64
#if defined(_AMD64_)
typedef union DECLSPEC_ALIGN(16) _SLIST_HEADER {
struct { // original struct
ULONGLONG Alignment;
ULONGLONG Region;
} DUMMYSTRUCTNAME;
struct { // x64 16-byte header
ULONGLONG Depth:16;
ULONGLONG Sequence:48;
ULONGLONG Reserved:4;
ULONGLONG NextEntry:60; // last 4 bits are always 0's
} HeaderX64;
} SLIST_HEADER, *PSLIST_HEADER;
#elif defined(_ARM64_)
// ARM64_WORKITEM: should this be merged with AMD64 above?
typedef union DECLSPEC_ALIGN(16) _SLIST_HEADER {
struct { // original struct
ULONGLONG Alignment;
ULONGLONG Region;
} DUMMYSTRUCTNAME;
struct { // ARM64 16-byte header
ULONGLONG Depth:16;
ULONGLONG Sequence:48;
ULONGLONG Reserved:4;
ULONGLONG NextEntry:60; // last 4 bits are always 0's
} HeaderArm64;
} SLIST_HEADER, *PSLIST_HEADER;
#elif defined(_X86_)
typedef union _SLIST_HEADER {
ULONGLONG Alignment;
struct {
SLIST_ENTRY Next;
WORD Depth;
WORD CpuId;
} DUMMYSTRUCTNAME;
} SLIST_HEADER, *PSLIST_HEADER;
#elif defined(_ARM_)
typedef union _SLIST_HEADER {
ULONGLONG Alignment;
struct {
SLIST_ENTRY Next;
WORD Depth;
WORD Reserved;
} DUMMYSTRUCTNAME;
} SLIST_HEADER, *PSLIST_HEADER;
#endif
#endif // _SLIST_HEADER_
#pragma region Desktop Family or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
NTSYSAPI
VOID
NTAPI
RtlInitializeSListHead (
_Out_ PSLIST_HEADER ListHead
);
_Must_inspect_result_
NTSYSAPI
PSLIST_ENTRY
NTAPI
RtlFirstEntrySList (
_In_ const SLIST_HEADER *ListHead
);
NTSYSAPI
PSLIST_ENTRY
NTAPI
RtlInterlockedPopEntrySList (
_Inout_ PSLIST_HEADER ListHead
);
NTSYSAPI
PSLIST_ENTRY
NTAPI
RtlInterlockedPushEntrySList (
_Inout_ PSLIST_HEADER ListHead,
_Inout_ __drv_aliasesMem PSLIST_ENTRY ListEntry
);
NTSYSAPI
PSLIST_ENTRY
NTAPI
RtlInterlockedPushListSListEx (
_Inout_ PSLIST_HEADER ListHead,
_Inout_ __drv_aliasesMem PSLIST_ENTRY List,
_Inout_ PSLIST_ENTRY ListEnd,
_In_ DWORD Count
);
NTSYSAPI
PSLIST_ENTRY
NTAPI
RtlInterlockedFlushSList (
_Inout_ PSLIST_HEADER ListHead
);
NTSYSAPI
WORD
NTAPI
RtlQueryDepthSList (
_In_ PSLIST_HEADER ListHead
);
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#ifndef _RTL_RUN_ONCE_DEF
#define _RTL_RUN_ONCE_DEF
//
// Run once
//
#define RTL_RUN_ONCE_INIT {0} // Static initializer
//
// Run once flags
//
#define RTL_RUN_ONCE_CHECK_ONLY 0x00000001UL
#define RTL_RUN_ONCE_ASYNC 0x00000002UL
#define RTL_RUN_ONCE_INIT_FAILED 0x00000004UL
//
// The context stored in the run once structure must leave the following number
// of low order bits unused.
//
#define RTL_RUN_ONCE_CTX_RESERVED_BITS 2
typedef union _RTL_RUN_ONCE {
PVOID Ptr;
} RTL_RUN_ONCE, *PRTL_RUN_ONCE;
#endif // _RTL_RUN_ONCE_DEF
typedef struct _RTL_BARRIER {
DWORD Reserved1;
DWORD Reserved2;
ULONG_PTR Reserved3[2];
DWORD Reserved4;
DWORD Reserved5;
} RTL_BARRIER, *PRTL_BARRIER;
// begin_ntoshvp
// Include the more obscure SAL annotations (like __drv_aliasesMem) instead of assuming the crtdefs.h will include them.
#include <specstrings.h>
//
// Fast fail failure codes.
//
// N.B. Failure code zero should not be used, but is required to be reserved
// for compatibility with previous handling of the
// STATUS_STACK_BUFFER_OVERRUN exception status code.
//
#define FAST_FAIL_LEGACY_GS_VIOLATION 0
#define FAST_FAIL_VTGUARD_CHECK_FAILURE 1
#define FAST_FAIL_STACK_COOKIE_CHECK_FAILURE 2
#define FAST_FAIL_CORRUPT_LIST_ENTRY 3
#define FAST_FAIL_INCORRECT_STACK 4
#define FAST_FAIL_INVALID_ARG 5
#define FAST_FAIL_GS_COOKIE_INIT 6
#define FAST_FAIL_FATAL_APP_EXIT 7
#define FAST_FAIL_RANGE_CHECK_FAILURE 8
#define FAST_FAIL_UNSAFE_REGISTRY_ACCESS 9
#define FAST_FAIL_GUARD_ICALL_CHECK_FAILURE 10
#define FAST_FAIL_GUARD_WRITE_CHECK_FAILURE 11
#define FAST_FAIL_INVALID_FIBER_SWITCH 12
#define FAST_FAIL_INVALID_SET_OF_CONTEXT 13
#define FAST_FAIL_INVALID_REFERENCE_COUNT 14
#define FAST_FAIL_INVALID_JUMP_BUFFER 18
#define FAST_FAIL_MRDATA_MODIFIED 19
#define FAST_FAIL_CERTIFICATION_FAILURE 20
#define FAST_FAIL_INVALID_EXCEPTION_CHAIN 21
#define FAST_FAIL_CRYPTO_LIBRARY 22
#define FAST_FAIL_INVALID_CALL_IN_DLL_CALLOUT 23
#define FAST_FAIL_INVALID_IMAGE_BASE 24
#define FAST_FAIL_DLOAD_PROTECTION_FAILURE 25
#define FAST_FAIL_UNSAFE_EXTENSION_CALL 26
#define FAST_FAIL_DEPRECATED_SERVICE_INVOKED 27
#define FAST_FAIL_INVALID_BUFFER_ACCESS 28
#define FAST_FAIL_INVALID_BALANCED_TREE 29
#define FAST_FAIL_INVALID_NEXT_THREAD 30
#define FAST_FAIL_GUARD_ICALL_CHECK_SUPPRESSED 31 // Telemetry, nonfatal
#define FAST_FAIL_APCS_DISABLED 32
#define FAST_FAIL_INVALID_IDLE_STATE 33
#define FAST_FAIL_MRDATA_PROTECTION_FAILURE 34
#define FAST_FAIL_UNEXPECTED_HEAP_EXCEPTION 35
#define FAST_FAIL_INVALID_LOCK_STATE 36
#define FAST_FAIL_GUARD_JUMPTABLE 37 // Known to compiler, must retain value 37
#define FAST_FAIL_INVALID_LONGJUMP_TARGET 38
#define FAST_FAIL_INVALID_DISPATCH_CONTEXT 39
#define FAST_FAIL_INVALID_THREAD 40
#define FAST_FAIL_INVALID_FAST_FAIL_CODE 0xFFFFFFFF
#if _MSC_VER >= 1610
DECLSPEC_NORETURN
VOID
__fastfail(
_In_ unsigned int Code
);
#pragma intrinsic(__fastfail)
#endif
#define HEAP_NO_SERIALIZE 0x00000001
#define HEAP_GROWABLE 0x00000002
#define HEAP_GENERATE_EXCEPTIONS 0x00000004
#define HEAP_ZERO_MEMORY 0x00000008
#define HEAP_REALLOC_IN_PLACE_ONLY 0x00000010
#define HEAP_TAIL_CHECKING_ENABLED 0x00000020
#define HEAP_FREE_CHECKING_ENABLED 0x00000040
#define HEAP_DISABLE_COALESCE_ON_FREE 0x00000080
#define HEAP_CREATE_ALIGN_16 0x00010000
#define HEAP_CREATE_ENABLE_TRACING 0x00020000
#define HEAP_CREATE_ENABLE_EXECUTE 0x00040000
#define HEAP_MAXIMUM_TAG 0x0FFF
#define HEAP_PSEUDO_TAG_FLAG 0x8000
#define HEAP_TAG_SHIFT 18
#pragma region Desktop Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
#if !defined(MIDL_PASS)
FORCEINLINE
DWORD
HEAP_MAKE_TAG_FLAGS (
_In_ DWORD TagBase,
_In_ DWORD Tag
)
{
return ((DWORD)((TagBase) + ((Tag) << HEAP_TAG_SHIFT)));
}
#endif
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) */
#pragma endregion
#define IS_TEXT_UNICODE_ASCII16 0x0001
#define IS_TEXT_UNICODE_REVERSE_ASCII16 0x0010
#define IS_TEXT_UNICODE_STATISTICS 0x0002
#define IS_TEXT_UNICODE_REVERSE_STATISTICS 0x0020
#define IS_TEXT_UNICODE_CONTROLS 0x0004
#define IS_TEXT_UNICODE_REVERSE_CONTROLS 0x0040
#define IS_TEXT_UNICODE_SIGNATURE 0x0008
#define IS_TEXT_UNICODE_REVERSE_SIGNATURE 0x0080
#define IS_TEXT_UNICODE_ILLEGAL_CHARS 0x0100
#define IS_TEXT_UNICODE_ODD_LENGTH 0x0200
#define IS_TEXT_UNICODE_DBCS_LEADBYTE 0x0400
#define IS_TEXT_UNICODE_NULL_BYTES 0x1000
#define IS_TEXT_UNICODE_UNICODE_MASK 0x000F
#define IS_TEXT_UNICODE_REVERSE_MASK 0x00F0
#define IS_TEXT_UNICODE_NOT_UNICODE_MASK 0x0F00
#define IS_TEXT_UNICODE_NOT_ASCII_MASK 0xF000
#define COMPRESSION_FORMAT_NONE (0x0000)
#define COMPRESSION_FORMAT_DEFAULT (0x0001)
#define COMPRESSION_FORMAT_LZNT1 (0x0002)
#define COMPRESSION_FORMAT_XPRESS (0x0003)
#define COMPRESSION_FORMAT_XPRESS_HUFF (0x0004)
#define COMPRESSION_ENGINE_STANDARD (0x0000)
#define COMPRESSION_ENGINE_MAXIMUM (0x0100)
#define COMPRESSION_ENGINE_HIBER (0x0200)
#if defined(_DBG_MEMCPY_INLINE_) && !defined(MIDL_PASS) && !defined(_MEMCPY_INLINE_) && !defined(_CRTBLD)
#define _MEMCPY_INLINE_
FORCEINLINE
PVOID
__cdecl
memcpy_inline (
_Out_writes_bytes_all_(size) void *dst,
_In_reads_bytes_(size) const void *src,
_In_ size_t size
)
{
//
// Make sure the source and destination do not overlap such that the
// move destroys the destination.
//
if (((char *)dst > (char *)src) &&
((char *)dst < ((char *)src + size))) {
__debugbreak();
}
return memcpy(dst, src, size);
}
#define memcpy memcpy_inline
#endif
#define RtlEqualMemory(Destination,Source,Length) (!memcmp((Destination),(Source),(Length)))
#define RtlMoveMemory(Destination,Source,Length) memmove((Destination),(Source),(Length))
#define RtlCopyMemory(Destination,Source,Length) memcpy((Destination),(Source),(Length))
#define RtlFillMemory(Destination,Length,Fill) memset((Destination),(Fill),(Length))
#define RtlZeroMemory(Destination,Length) memset((Destination),0,(Length))
#if !defined(MIDL_PASS)
FORCEINLINE
PVOID
RtlSecureZeroMemory(
_Out_writes_bytes_all_(cnt) PVOID ptr,
_In_ SIZE_T cnt
)
{
volatile char *vptr = (volatile char *)ptr;
#if defined(_M_AMD64)
__stosb((PBYTE )((DWORD64)vptr), 0, cnt);
#else
while (cnt) {
#if !defined(_M_CEE) && (defined(_M_ARM) || defined(_M_ARM64))
__iso_volatile_store8(vptr, 0);
#else
*vptr = 0;
#endif
vptr++;
cnt--;
}
#endif // _M_AMD64
return ptr;
}
#endif
// begin_wdm
#define SEF_DACL_AUTO_INHERIT 0x01
#define SEF_SACL_AUTO_INHERIT 0x02
#define SEF_DEFAULT_DESCRIPTOR_FOR_OBJECT 0x04
#define SEF_AVOID_PRIVILEGE_CHECK 0x08
#define SEF_AVOID_OWNER_CHECK 0x10
#define SEF_DEFAULT_OWNER_FROM_PARENT 0x20
#define SEF_DEFAULT_GROUP_FROM_PARENT 0x40
#define SEF_MACL_NO_WRITE_UP 0x100
#define SEF_MACL_NO_READ_UP 0x200
#define SEF_MACL_NO_EXECUTE_UP 0x400
#define SEF_AI_USE_EXTRA_PARAMS 0x800
#define SEF_AVOID_OWNER_RESTRICTION 0x1000
#define SEF_MACL_VALID_FLAGS (SEF_MACL_NO_WRITE_UP | \
SEF_MACL_NO_READ_UP | \
SEF_MACL_NO_EXECUTE_UP)
// end_wdm
typedef struct _MESSAGE_RESOURCE_ENTRY {
WORD Length;
WORD Flags;
BYTE Text[ 1 ];
} MESSAGE_RESOURCE_ENTRY, *PMESSAGE_RESOURCE_ENTRY;
#define MESSAGE_RESOURCE_UNICODE 0x0001
typedef struct _MESSAGE_RESOURCE_BLOCK {
DWORD LowId;
DWORD HighId;
DWORD OffsetToEntries;
} MESSAGE_RESOURCE_BLOCK, *PMESSAGE_RESOURCE_BLOCK;
typedef struct _MESSAGE_RESOURCE_DATA {
DWORD NumberOfBlocks;
MESSAGE_RESOURCE_BLOCK Blocks[ 1 ];
} MESSAGE_RESOURCE_DATA, *PMESSAGE_RESOURCE_DATA;
typedef struct _OSVERSIONINFOA {
DWORD dwOSVersionInfoSize;
DWORD dwMajorVersion;
DWORD dwMinorVersion;
DWORD dwBuildNumber;
DWORD dwPlatformId;
CHAR szCSDVersion[ 128 ]; // Maintenance string for PSS usage
} OSVERSIONINFOA, *POSVERSIONINFOA, *LPOSVERSIONINFOA;
typedef struct _OSVERSIONINFOW {
DWORD dwOSVersionInfoSize;
DWORD dwMajorVersion;
DWORD dwMinorVersion;
DWORD dwBuildNumber;
DWORD dwPlatformId;
WCHAR szCSDVersion[ 128 ]; // Maintenance string for PSS usage
} OSVERSIONINFOW, *POSVERSIONINFOW, *LPOSVERSIONINFOW, RTL_OSVERSIONINFOW, *PRTL_OSVERSIONINFOW;
#ifdef UNICODE
typedef OSVERSIONINFOW OSVERSIONINFO;
typedef POSVERSIONINFOW POSVERSIONINFO;
typedef LPOSVERSIONINFOW LPOSVERSIONINFO;
#else
typedef OSVERSIONINFOA OSVERSIONINFO;
typedef POSVERSIONINFOA POSVERSIONINFO;
typedef LPOSVERSIONINFOA LPOSVERSIONINFO;
#endif // UNICODE
typedef struct _OSVERSIONINFOEXA {
DWORD dwOSVersionInfoSize;
DWORD dwMajorVersion;
DWORD dwMinorVersion;
DWORD dwBuildNumber;
DWORD dwPlatformId;
CHAR szCSDVersion[ 128 ]; // Maintenance string for PSS usage
WORD wServicePackMajor;
WORD wServicePackMinor;
WORD wSuiteMask;
BYTE wProductType;
BYTE wReserved;
} OSVERSIONINFOEXA, *POSVERSIONINFOEXA, *LPOSVERSIONINFOEXA;
typedef struct _OSVERSIONINFOEXW {
DWORD dwOSVersionInfoSize;
DWORD dwMajorVersion;
DWORD dwMinorVersion;
DWORD dwBuildNumber;
DWORD dwPlatformId;
WCHAR szCSDVersion[ 128 ]; // Maintenance string for PSS usage
WORD wServicePackMajor;
WORD wServicePackMinor;
WORD wSuiteMask;
BYTE wProductType;
BYTE wReserved;
} OSVERSIONINFOEXW, *POSVERSIONINFOEXW, *LPOSVERSIONINFOEXW, RTL_OSVERSIONINFOEXW, *PRTL_OSVERSIONINFOEXW;
#ifdef UNICODE
typedef OSVERSIONINFOEXW OSVERSIONINFOEX;
typedef POSVERSIONINFOEXW POSVERSIONINFOEX;
typedef LPOSVERSIONINFOEXW LPOSVERSIONINFOEX;
#else
typedef OSVERSIONINFOEXA OSVERSIONINFOEX;
typedef POSVERSIONINFOEXA POSVERSIONINFOEX;
typedef LPOSVERSIONINFOEXA LPOSVERSIONINFOEX;
#endif // UNICODE
// begin_wudfpwdm
//
// RtlVerifyVersionInfo() conditions
//
#define VER_EQUAL 1
#define VER_GREATER 2
#define VER_GREATER_EQUAL 3
#define VER_LESS 4
#define VER_LESS_EQUAL 5
#define VER_AND 6
#define VER_OR 7
#define VER_CONDITION_MASK 7
#define VER_NUM_BITS_PER_CONDITION_MASK 3
//
// RtlVerifyVersionInfo() type mask bits
//
#define VER_MINORVERSION 0x0000001
#define VER_MAJORVERSION 0x0000002
#define VER_BUILDNUMBER 0x0000004
#define VER_PLATFORMID 0x0000008
#define VER_SERVICEPACKMINOR 0x0000010
#define VER_SERVICEPACKMAJOR 0x0000020
#define VER_SUITENAME 0x0000040
#define VER_PRODUCT_TYPE 0x0000080
//
// RtlVerifyVersionInfo() os product type values
//
#define VER_NT_WORKSTATION 0x0000001
#define VER_NT_DOMAIN_CONTROLLER 0x0000002
#define VER_NT_SERVER 0x0000003
//
// dwPlatformId defines:
//
#define VER_PLATFORM_WIN32s 0
#define VER_PLATFORM_WIN32_WINDOWS 1
#define VER_PLATFORM_WIN32_NT 2
#pragma region Desktop Family or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
//
//
// VerifyVersionInfo() macro to set the condition mask
//
// For documentation sakes here's the old version of the macro that got
// changed to call an API
// #define VER_SET_CONDITION(_m_,_t_,_c_) _m_=(_m_|(_c_<<(1<<_t_)))
//
#define VER_SET_CONDITION(_m_,_t_,_c_) \
((_m_)=VerSetConditionMask((_m_),(_t_),(_c_)))
#if !defined(_WINBASE_) && !defined(MIDL_PASS)
#if (NTDDI_VERSION >= NTDDI_WIN2K)
NTSYSAPI
ULONGLONG
NTAPI
VerSetConditionMask(
_In_ ULONGLONG ConditionMask,
_In_ DWORD TypeMask,
_In_ BYTE Condition
);
#endif
#endif // !defined(_WINBASE_) && !defined(MIDL_PASS)
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
//
#pragma region Desktop Family or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
// begin_ntddk
#if (NTDDI_VERSION >= NTDDI_VISTA)
NTSYSAPI
BOOLEAN
NTAPI
RtlGetProductInfo(
_In_ DWORD OSMajorVersion,
_In_ DWORD OSMinorVersion,
_In_ DWORD SpMajorVersion,
_In_ DWORD SpMinorVersion,
_Out_ PDWORD ReturnedProductType
);
#endif
// end_ntddk
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
#define RTL_UMS_VERSION (0x0100)
typedef enum _RTL_UMS_THREAD_INFO_CLASS {
UmsThreadInvalidInfoClass = 0,
UmsThreadUserContext,
UmsThreadPriority, // Reserved
UmsThreadAffinity, // Reserved
UmsThreadTeb,
UmsThreadIsSuspended,
UmsThreadIsTerminated,
UmsThreadMaxInfoClass
} RTL_UMS_THREAD_INFO_CLASS, *PRTL_UMS_THREAD_INFO_CLASS;
typedef enum _RTL_UMS_SCHEDULER_REASON {
UmsSchedulerStartup = 0,
UmsSchedulerThreadBlocked,
UmsSchedulerThreadYield,
} RTL_UMS_SCHEDULER_REASON, *PRTL_UMS_SCHEDULER_REASON;
typedef
_Function_class_(RTL_UMS_SCHEDULER_ENTRY_POINT)
VOID
NTAPI
RTL_UMS_SCHEDULER_ENTRY_POINT(
_In_ RTL_UMS_SCHEDULER_REASON Reason,
_In_ ULONG_PTR ActivationPayload,
_In_ PVOID SchedulerParam
);
typedef RTL_UMS_SCHEDULER_ENTRY_POINT *PRTL_UMS_SCHEDULER_ENTRY_POINT;
#if !defined(IS_VALIDATION_ENABLED)
#if (NTDDI_VERSION >= NTDDI_WIN8)
//
// Validation runlevel helper macro: checks if a particular level L enables the
// validation class C.
//
// Returns a non-zero scalar if class C is enabled, and zero otherwise.
//
#define IS_VALIDATION_ENABLED(C,L) ((L) & (C))
//
// Validation classes are broken into:
// 8 predefined validation classes, spanning bits 0 to 7 of the level value
// 24 custom-defined validation classes, spanning bits 8 to 31
//
#define VRL_PREDEFINED_CLASS_BEGIN (1 << 0)
#define VRL_CUSTOM_CLASS_BEGIN (1 << 8)
//
// The following are predefined validation classes.
//
#define VRL_CLASS_CONSISTENCY (VRL_PREDEFINED_CLASS_BEGIN << 0)
//
// Do not ignore kernel breaks when kernel debugging is disabled (debug builds only)
//
#define VRL_ENABLE_KERNEL_BREAKS (1 << 31)
#endif // (NTDDI_VERSION >= NTDDI_WIN8)
#endif // !defined(IS_VALIDATION_ENABLED)
#if (NTDDI_VERSION >= NTDDI_WIN8)
//
// RtlCheckTokenMembership flags.
//
#define CTMF_INCLUDE_APPCONTAINER 0x00000001UL
#define CTMF_VALID_FLAGS (CTMF_INCLUDE_APPCONTAINER)
#endif // (NTDDI_VERSION >= NTDDI_WIN8)
#if (NTDDI_VERSION >= NTDDI_WIN8)
// end_ntosp
#pragma region Desktop Family or OneCore Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
// begin_ntosp
//
// Crc32 and Crc64 routines that use standardized algorithms
//
NTSYSAPI
DWORD
NTAPI
RtlCrc32(
_In_reads_bytes_(Size) const void *Buffer,
_In_ size_t Size,
_In_ DWORD InitialCrc
);
NTSYSAPI
ULONGLONG
NTAPI
RtlCrc64(
_In_reads_bytes_(Size) const void *Buffer,
_In_ size_t Size,
_In_ ULONGLONG InitialCrc
);
// end_ntosp
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM) */
#pragma endregion
// begin_ntosp
#endif // (NTDDI_VERSION >= NTDDI_WIN8)
#if (NTDDI_VERSION >= NTDDI_WINTHRESHOLD)
//
// API to detect what type of OS Deployment this is. Current valid values
// are listed below
//
//
// Valid OsDeployment values that can be returned
//
typedef enum _OS_DEPLOYEMENT_STATE_VALUES {
OS_DEPLOYMENT_STANDARD = 1,
OS_DEPLOYMENT_COMPACT
} OS_DEPLOYEMENT_STATE_VALUES;
NTSYSAPI
OS_DEPLOYEMENT_STATE_VALUES
NTAPI
RtlOsDeploymentState(
_In_ DWORD Flags /* No flags currently defined, passed 0 */
);
#endif // NTDDI_VERSION >= NTDDI_WINTHRESHOLD
typedef struct _RTL_CRITICAL_SECTION_DEBUG {
WORD Type;
WORD CreatorBackTraceIndex;
struct _RTL_CRITICAL_SECTION *CriticalSection;
LIST_ENTRY ProcessLocksList;
DWORD EntryCount;
DWORD ContentionCount;
DWORD Flags;
WORD CreatorBackTraceIndexHigh;
WORD SpareWORD ;
} RTL_CRITICAL_SECTION_DEBUG, *PRTL_CRITICAL_SECTION_DEBUG, RTL_RESOURCE_DEBUG, *PRTL_RESOURCE_DEBUG;
//
// These flags define the upper byte of the critical section SpinCount field
//
#define RTL_CRITICAL_SECTION_FLAG_NO_DEBUG_INFO 0x01000000
#define RTL_CRITICAL_SECTION_FLAG_DYNAMIC_SPIN 0x02000000
#define RTL_CRITICAL_SECTION_FLAG_STATIC_INIT 0x04000000
#define RTL_CRITICAL_SECTION_FLAG_RESOURCE_TYPE 0x08000000
#define RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO 0x10000000
#define RTL_CRITICAL_SECTION_ALL_FLAG_BITS 0xFF000000
#define RTL_CRITICAL_SECTION_FLAG_RESERVED (RTL_CRITICAL_SECTION_ALL_FLAG_BITS & (~(RTL_CRITICAL_SECTION_FLAG_NO_DEBUG_INFO | RTL_CRITICAL_SECTION_FLAG_DYNAMIC_SPIN | RTL_CRITICAL_SECTION_FLAG_STATIC_INIT | RTL_CRITICAL_SECTION_FLAG_RESOURCE_TYPE | RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO)))
//
// These flags define possible values stored in the Flags field of a critsec debuginfo.
//
#define RTL_CRITICAL_SECTION_DEBUG_FLAG_STATIC_INIT 0x00000001
#pragma pack(push, 8)
typedef struct _RTL_CRITICAL_SECTION {
PRTL_CRITICAL_SECTION_DEBUG DebugInfo;
//
// The following three fields control entering and exiting the critical
// section for the resource
//
LONG LockCount;
LONG RecursionCount;
HANDLE OwningThread; // from the thread's ClientId->UniqueThread
HANDLE LockSemaphore;
ULONG_PTR SpinCount; // force size on 64-bit systems when packed
} RTL_CRITICAL_SECTION, *PRTL_CRITICAL_SECTION;
#pragma pack(pop)
typedef struct _RTL_SRWLOCK {
PVOID Ptr;
} RTL_SRWLOCK, *PRTL_SRWLOCK;
#define RTL_SRWLOCK_INIT {0}
typedef struct _RTL_CONDITION_VARIABLE {
PVOID Ptr;
} RTL_CONDITION_VARIABLE, *PRTL_CONDITION_VARIABLE;
#define RTL_CONDITION_VARIABLE_INIT {0}
#define RTL_CONDITION_VARIABLE_LOCKMODE_SHARED 0x1
typedef
VOID
(NTAPI *PAPCFUNC)(
_In_ ULONG_PTR Parameter
);
typedef LONG (NTAPI *PVECTORED_EXCEPTION_HANDLER)(
struct _EXCEPTION_POINTERS *ExceptionInfo
);
typedef enum _HEAP_INFORMATION_CLASS {
HeapCompatibilityInformation = 0,
HeapEnableTerminationOnCorruption = 1
#if ((NTDDI_VERSION > NTDDI_WINBLUE) || \
(NTDDI_VERSION == NTDDI_WINBLUE && defined(WINBLUE_KBSPRING14)))
,
HeapOptimizeResources = 3
#endif
} HEAP_INFORMATION_CLASS;
#if ((NTDDI_VERSION > NTDDI_WINBLUE) || \
(NTDDI_VERSION == NTDDI_WINBLUE && defined(WINBLUE_KBSPRING14)))
#define HEAP_OPTIMIZE_RESOURCES_CURRENT_VERSION 1
typedef struct _HEAP_OPTIMIZE_RESOURCES_INFORMATION {
DWORD Version;
DWORD Flags;
} HEAP_OPTIMIZE_RESOURCES_INFORMATION, *PHEAP_OPTIMIZE_RESOURCES_INFORMATION;
#endif
#define WT_EXECUTEDEFAULT 0x00000000
#define WT_EXECUTEINIOTHREAD 0x00000001
#define WT_EXECUTEINUITHREAD 0x00000002
#define WT_EXECUTEINWAITTHREAD 0x00000004
#define WT_EXECUTEONLYONCE 0x00000008
#define WT_EXECUTEINTIMERTHREAD 0x00000020
#define WT_EXECUTELONGFUNCTION 0x00000010
#define WT_EXECUTEINPERSISTENTIOTHREAD 0x00000040
#define WT_EXECUTEINPERSISTENTTHREAD 0x00000080
#define WT_TRANSFER_IMPERSONATION 0x00000100
#define WT_SET_MAX_THREADPOOL_THREADS(Flags, Limit) ((Flags) |= (Limit)<<16)
typedef VOID (NTAPI * WAITORTIMERCALLBACKFUNC) (PVOID, BOOLEAN );
typedef VOID (NTAPI * WORKERCALLBACKFUNC) (PVOID );
typedef VOID (NTAPI * APC_CALLBACK_FUNCTION) (DWORD , PVOID, PVOID);
typedef WAITORTIMERCALLBACKFUNC WAITORTIMERCALLBACK;
typedef
VOID
(NTAPI *PFLS_CALLBACK_FUNCTION) (
IN PVOID lpFlsData
);
typedef
BOOLEAN
(NTAPI *PSECURE_MEMORY_CACHE_CALLBACK) (
_In_reads_bytes_(Range) PVOID Addr,
_In_ SIZE_T Range
);
#define WT_EXECUTEINLONGTHREAD 0x00000010
#define WT_EXECUTEDELETEWAIT 0x00000008
typedef enum _ACTIVATION_CONTEXT_INFO_CLASS {
ActivationContextBasicInformation = 1,
ActivationContextDetailedInformation = 2,
AssemblyDetailedInformationInActivationContext = 3,
FileInformationInAssemblyOfAssemblyInActivationContext = 4,
RunlevelInformationInActivationContext = 5,
CompatibilityInformationInActivationContext = 6,
ActivationContextManifestResourceName = 7,
MaxActivationContextInfoClass,
//
// compatibility with old names
//
AssemblyDetailedInformationInActivationContxt = 3,
FileInformationInAssemblyOfAssemblyInActivationContxt = 4
} ACTIVATION_CONTEXT_INFO_CLASS;
#define ACTIVATIONCONTEXTINFOCLASS ACTIVATION_CONTEXT_INFO_CLASS
typedef struct _ACTIVATION_CONTEXT_QUERY_INDEX {
DWORD ulAssemblyIndex;
DWORD ulFileIndexInAssembly;
} ACTIVATION_CONTEXT_QUERY_INDEX, * PACTIVATION_CONTEXT_QUERY_INDEX;
typedef const struct _ACTIVATION_CONTEXT_QUERY_INDEX * PCACTIVATION_CONTEXT_QUERY_INDEX;
#define ACTIVATION_CONTEXT_PATH_TYPE_NONE (1)
#define ACTIVATION_CONTEXT_PATH_TYPE_WIN32_FILE (2)
#define ACTIVATION_CONTEXT_PATH_TYPE_URL (3)
#define ACTIVATION_CONTEXT_PATH_TYPE_ASSEMBLYREF (4)
typedef struct _ASSEMBLY_FILE_DETAILED_INFORMATION {
DWORD ulFlags;
DWORD ulFilenameLength;
DWORD ulPathLength;
PCWSTR lpFileName;
PCWSTR lpFilePath;
} ASSEMBLY_FILE_DETAILED_INFORMATION, *PASSEMBLY_FILE_DETAILED_INFORMATION;
typedef const ASSEMBLY_FILE_DETAILED_INFORMATION *PCASSEMBLY_FILE_DETAILED_INFORMATION;
//
// compatibility with old names
// The new names use "file" consistently.
//
#define _ASSEMBLY_DLL_REDIRECTION_DETAILED_INFORMATION _ASSEMBLY_FILE_DETAILED_INFORMATION
#define ASSEMBLY_DLL_REDIRECTION_DETAILED_INFORMATION ASSEMBLY_FILE_DETAILED_INFORMATION
#define PASSEMBLY_DLL_REDIRECTION_DETAILED_INFORMATION PASSEMBLY_FILE_DETAILED_INFORMATION
#define PCASSEMBLY_DLL_REDIRECTION_DETAILED_INFORMATION PCASSEMBLY_FILE_DETAILED_INFORMATION
typedef struct _ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION {
DWORD ulFlags;
DWORD ulEncodedAssemblyIdentityLength; // in bytes
DWORD ulManifestPathType; // ACTIVATION_CONTEXT_PATH_TYPE_*
DWORD ulManifestPathLength; // in bytes
LARGE_INTEGER liManifestLastWriteTime; // FILETIME
DWORD ulPolicyPathType; // ACTIVATION_CONTEXT_PATH_TYPE_*
DWORD ulPolicyPathLength; // in bytes
LARGE_INTEGER liPolicyLastWriteTime; // FILETIME
DWORD ulMetadataSatelliteRosterIndex;
DWORD ulManifestVersionMajor; // 1
DWORD ulManifestVersionMinor; // 0
DWORD ulPolicyVersionMajor; // 0
DWORD ulPolicyVersionMinor; // 0
DWORD ulAssemblyDirectoryNameLength; // in bytes
PCWSTR lpAssemblyEncodedAssemblyIdentity;
PCWSTR lpAssemblyManifestPath;
PCWSTR lpAssemblyPolicyPath;
PCWSTR lpAssemblyDirectoryName;
DWORD ulFileCount;
} ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION, * PACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION;
typedef const struct _ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION * PCACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION ;
typedef enum
{
ACTCTX_RUN_LEVEL_UNSPECIFIED = 0,
ACTCTX_RUN_LEVEL_AS_INVOKER,
ACTCTX_RUN_LEVEL_HIGHEST_AVAILABLE,
ACTCTX_RUN_LEVEL_REQUIRE_ADMIN,
ACTCTX_RUN_LEVEL_NUMBERS
} ACTCTX_REQUESTED_RUN_LEVEL;
typedef struct _ACTIVATION_CONTEXT_RUN_LEVEL_INFORMATION {
DWORD ulFlags;
ACTCTX_REQUESTED_RUN_LEVEL RunLevel;
DWORD UiAccess;
} ACTIVATION_CONTEXT_RUN_LEVEL_INFORMATION, * PACTIVATION_CONTEXT_RUN_LEVEL_INFORMATION;
typedef const struct _ACTIVATION_CONTEXT_RUN_LEVEL_INFORMATION * PCACTIVATION_CONTEXT_RUN_LEVEL_INFORMATION ;
typedef enum
{
ACTCTX_COMPATIBILITY_ELEMENT_TYPE_UNKNOWN = 0,
ACTCTX_COMPATIBILITY_ELEMENT_TYPE_OS,
ACTCTX_COMPATIBILITY_ELEMENT_TYPE_MITIGATION
} ACTCTX_COMPATIBILITY_ELEMENT_TYPE;
typedef struct _COMPATIBILITY_CONTEXT_ELEMENT {
GUID Id;
ACTCTX_COMPATIBILITY_ELEMENT_TYPE Type;
} COMPATIBILITY_CONTEXT_ELEMENT, *PCOMPATIBILITY_CONTEXT_ELEMENT;
typedef const struct _COMPATIBILITY_CONTEXT_ELEMENT *PCCOMPATIBILITY_CONTEXT_ELEMENT;
#ifdef _MSC_EXTENSIONS
#if _MSC_VER >= 1200
#pragma warning(push)
#pragma warning(disable:4200) // zero length array
#endif
typedef struct _ACTIVATION_CONTEXT_COMPATIBILITY_INFORMATION {
DWORD ElementCount;
COMPATIBILITY_CONTEXT_ELEMENT Elements[];
} ACTIVATION_CONTEXT_COMPATIBILITY_INFORMATION, * PACTIVATION_CONTEXT_COMPATIBILITY_INFORMATION;
#if _MSC_VER >= 1200
#pragma warning(pop)
#endif
typedef const struct _ACTIVATION_CONTEXT_COMPATIBILITY_INFORMATION * PCACTIVATION_CONTEXT_COMPATIBILITY_INFORMATION;
#endif
typedef struct _SUPPORTED_OS_INFO {
WORD MajorVersion;
WORD MinorVersion;
} SUPPORTED_OS_INFO, *PSUPPORTED_OS_INFO;
typedef struct _ACTIVATION_CONTEXT_DETAILED_INFORMATION {
DWORD dwFlags;
DWORD ulFormatVersion;
DWORD ulAssemblyCount;
DWORD ulRootManifestPathType;
DWORD ulRootManifestPathChars;
DWORD ulRootConfigurationPathType;
DWORD ulRootConfigurationPathChars;
DWORD ulAppDirPathType;
DWORD ulAppDirPathChars;
PCWSTR lpRootManifestPath;
PCWSTR lpRootConfigurationPath;
PCWSTR lpAppDirPath;
} ACTIVATION_CONTEXT_DETAILED_INFORMATION, *PACTIVATION_CONTEXT_DETAILED_INFORMATION;
typedef const struct _ACTIVATION_CONTEXT_DETAILED_INFORMATION *PCACTIVATION_CONTEXT_DETAILED_INFORMATION;
#define CREATE_BOUNDARY_DESCRIPTOR_ADD_APPCONTAINER_SID 0x1
typedef struct _HARDWARE_COUNTER_DATA {
HARDWARE_COUNTER_TYPE Type;
DWORD Reserved;
DWORD64 Value;
} HARDWARE_COUNTER_DATA, *PHARDWARE_COUNTER_DATA;
#define PERFORMANCE_DATA_VERSION 1
typedef struct _PERFORMANCE_DATA {
WORD Size;
BYTE Version;
BYTE HwCountersCount;
DWORD ContextSwitchCount;
DWORD64 WaitReasonBitMap;
DWORD64 CycleTime;
DWORD RetryCount;
DWORD Reserved;
HARDWARE_COUNTER_DATA HwCounters[MAX_HW_COUNTERS];
} PERFORMANCE_DATA, *PPERFORMANCE_DATA;
#define READ_THREAD_PROFILING_FLAG_DISPATCHING 0x00000001
#define READ_THREAD_PROFILING_FLAG_HARDWARE_COUNTERS 0x00000002
#pragma region Desktop Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
#if (NTDDI_VERSION >= NTDDI_WINTHRESHOLD)
#define UNIFIEDBUILDREVISION_KEY L"\\Registry\\Machine\\Software\\Microsoft\\Windows NT\\CurrentVersion"
#define UNIFIEDBUILDREVISION_VALUE L"UBR"
#define UNIFIEDBUILDREVISION_MIN 0x00000000
#define DEVICEFAMILYDEVICEFORM_KEY L"\\Registry\\Machine\\Software\\Microsoft\\Windows NT\\CurrentVersion\\OEM"
#define DEVICEFAMILYDEVICEFORM_VALUE L"DeviceForm"
#define DEVICEFAMILYINFOENUM_UAP 0x00000000
#define DEVICEFAMILYINFOENUM_WINDOWS_8X 0x00000001
#define DEVICEFAMILYINFOENUM_WINDOWS_PHONE_8X 0x00000002
#define DEVICEFAMILYINFOENUM_DESKTOP 0x00000003
#define DEVICEFAMILYINFOENUM_MOBILE 0x00000004
#define DEVICEFAMILYINFOENUM_XBOX 0x00000005
#define DEVICEFAMILYINFOENUM_TEAM 0x00000006
#define DEVICEFAMILYINFOENUM_IOT 0x00000007
#define DEVICEFAMILYINFOENUM_IOT_HEADLESS 0x00000008
#define DEVICEFAMILYINFOENUM_SERVER 0x00000009
#define DEVICEFAMILYINFOENUM_HOLOGRAPHIC 0x0000000A
#define DEVICEFAMILYINFOENUM_XBOXSRA 0x0000000B
#define DEVICEFAMILYINFOENUM_XBOXERA 0x0000000C
#define DEVICEFAMILYINFOENUM_SERVER_NANO 0x0000000D
#define DEVICEFAMILYINFOENUM_MAX 0x0000000D
#define DEVICEFAMILYDEVICEFORM_UNKNOWN 0x00000000
#define DEVICEFAMILYDEVICEFORM_PHONE 0x00000001
#define DEVICEFAMILYDEVICEFORM_TABLET 0x00000002
#define DEVICEFAMILYDEVICEFORM_DESKTOP 0x00000003
#define DEVICEFAMILYDEVICEFORM_NOTEBOOK 0x00000004
#define DEVICEFAMILYDEVICEFORM_CONVERTIBLE 0x00000005
#define DEVICEFAMILYDEVICEFORM_DETACHABLE 0x00000006
#define DEVICEFAMILYDEVICEFORM_ALLINONE 0x00000007
#define DEVICEFAMILYDEVICEFORM_STICKPC 0x00000008
#define DEVICEFAMILYDEVICEFORM_PUCK 0x00000009
#define DEVICEFAMILYDEVICEFORM_LARGESCREEN 0x0000000A
#define DEVICEFAMILYDEVICEFORM_HMD 0x0000000B
#define DEVICEFAMILYDEVICEFORM_INDUSTRY_HANDHELD 0x0000000C
#define DEVICEFAMILYDEVICEFORM_INDUSTRY_TABLET 0x0000000D
#define DEVICEFAMILYDEVICEFORM_BANKING 0x0000000E
#define DEVICEFAMILYDEVICEFORM_BUILDING_AUTOMATION 0x0000000F
#define DEVICEFAMILYDEVICEFORM_DIGITAL_SIGNAGE 0x00000010
#define DEVICEFAMILYDEVICEFORM_GAMING 0x00000011
#define DEVICEFAMILYDEVICEFORM_HOME_AUTOMATION 0x00000012
#define DEVICEFAMILYDEVICEFORM_INDUSTRIAL_AUTOMATION 0x00000013
#define DEVICEFAMILYDEVICEFORM_KIOSK 0x00000014
#define DEVICEFAMILYDEVICEFORM_MAKER_BOARD 0x00000015
#define DEVICEFAMILYDEVICEFORM_MEDICAL 0x00000016
#define DEVICEFAMILYDEVICEFORM_NETWORKING 0x00000017
#define DEVICEFAMILYDEVICEFORM_POINT_OF_SERVICE 0x00000018
#define DEVICEFAMILYDEVICEFORM_PRINTING 0x00000019
#define DEVICEFAMILYDEVICEFORM_THIN_CLIENT 0x0000001A
#define DEVICEFAMILYDEVICEFORM_TOY 0x0000001B
#define DEVICEFAMILYDEVICEFORM_VENDING 0x0000001C
#define DEVICEFAMILYDEVICEFORM_INDUSTRY_OTHER 0x0000001D
#define DEVICEFAMILYDEVICEFORM_MAX 0x0000001D
VOID
NTAPI
RtlGetDeviceFamilyInfoEnum(
_Out_opt_ ULONGLONG *pullUAPInfo,
_Out_opt_ DWORD *pulDeviceFamily,
_Out_opt_ DWORD *pulDeviceForm
);
DWORD
NTAPI
RtlConvertDeviceFamilyInfoToString(
_Inout_ PDWORD pulDeviceFamilyBufferSize,
_Inout_ PDWORD pulDeviceFormBufferSize,
_Out_writes_bytes_(*pulDeviceFamilyBufferSize) PWSTR DeviceFamily,
_Out_writes_bytes_(*pulDeviceFormBufferSize) PWSTR DeviceForm
);
DWORD
NTAPI
RtlSwitchedVVI(
_In_ PRTL_OSVERSIONINFOEXW VersionInfo,
_In_ DWORD TypeMask,
_In_ ULONGLONG ConditionMask
);
#endif // (NTDDI_VERSION >= NTDDI_WINTHRESHOLD)
#endif // WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
#pragma endregion
#define DLL_PROCESS_ATTACH 1
#define DLL_THREAD_ATTACH 2
#define DLL_THREAD_DETACH 3
#define DLL_PROCESS_DETACH 0
//
// Defines for the READ flags for Eventlogging
//
#define EVENTLOG_SEQUENTIAL_READ 0x0001
#define EVENTLOG_SEEK_READ 0x0002
#define EVENTLOG_FORWARDS_READ 0x0004
#define EVENTLOG_BACKWARDS_READ 0x0008
//
// The types of events that can be logged.
//
#define EVENTLOG_SUCCESS 0x0000
#define EVENTLOG_ERROR_TYPE 0x0001
#define EVENTLOG_WARNING_TYPE 0x0002
#define EVENTLOG_INFORMATION_TYPE 0x0004
#define EVENTLOG_AUDIT_SUCCESS 0x0008
#define EVENTLOG_AUDIT_FAILURE 0x0010
//
// Defines for the WRITE flags used by Auditing for paired events
// These are not implemented in Product 1
//
#define EVENTLOG_START_PAIRED_EVENT 0x0001
#define EVENTLOG_END_PAIRED_EVENT 0x0002
#define EVENTLOG_END_ALL_PAIRED_EVENTS 0x0004
#define EVENTLOG_PAIRED_EVENT_ACTIVE 0x0008
#define EVENTLOG_PAIRED_EVENT_INACTIVE 0x0010
//
// Structure that defines the header of the Eventlog record. This is the
// fixed-sized portion before all the variable-length strings, binary
// data and pad bytes.
//
// TimeGenerated is the time it was generated at the client.
// TimeWritten is the time it was put into the log at the server end.
//
typedef struct _EVENTLOGRECORD {
DWORD Length; // Length of full record
DWORD Reserved; // Used by the service
DWORD RecordNumber; // Absolute record number
DWORD TimeGenerated; // Seconds since 1-1-1970
DWORD TimeWritten; // Seconds since 1-1-1970
DWORD EventID;
WORD EventType;
WORD NumStrings;
WORD EventCategory;
WORD ReservedFlags; // For use with paired events (auditing)
DWORD ClosingRecordNumber; // For use with paired events (auditing)
DWORD StringOffset; // Offset from beginning of record
DWORD UserSidLength;
DWORD UserSidOffset;
DWORD DataLength;
DWORD DataOffset; // Offset from beginning of record
//
// Then follow:
//
// WCHAR SourceName[]
// WCHAR Computername[]
// SID UserSid
// WCHAR Strings[]
// BYTE Data[]
// CHAR Pad[]
// DWORD Length;
//
} EVENTLOGRECORD, *PEVENTLOGRECORD;
//SS: start of changes to support clustering
//SS: ideally the
#define MAXLOGICALLOGNAMESIZE 256
#if _MSC_VER >= 1200
#pragma warning(push)
#endif
#pragma warning(disable : 4200) /* nonstandard extension used : zero-sized array in struct/union */
struct _EVENTSFORLOGFILE;
typedef struct _EVENTSFORLOGFILE EVENTSFORLOGFILE, *PEVENTSFORLOGFILE;
struct _PACKEDEVENTINFO;
typedef struct _PACKEDEVENTINFO PACKEDEVENTINFO, *PPACKEDEVENTINFO;
#if defined(_MSC_EXTENSIONS)
struct _EVENTSFORLOGFILE
{
DWORD ulSize;
WCHAR szLogicalLogFile[MAXLOGICALLOGNAMESIZE]; //name of the logical file-security/application/system
DWORD ulNumRecords;
EVENTLOGRECORD pEventLogRecords[];
};
struct _PACKEDEVENTINFO
{
DWORD ulSize; //total size of the structure
DWORD ulNumEventsForLogFile; //number of EventsForLogFile structure that follow
DWORD ulOffsets[]; //the offsets from the start of this structure to the EVENTSFORLOGFILE structure
};
#endif
#if _MSC_VER >= 1200
#pragma warning(pop)
#else
#pragma warning(default : 4200) /* nonstandard extension used : zero-sized array in struct/union */
#endif
//SS: end of changes to support clustering
//
// begin_wdm
// begin_access
//
// Registry Specific Access Rights.
//
#define KEY_QUERY_VALUE (0x0001)
#define KEY_SET_VALUE (0x0002)
#define KEY_CREATE_SUB_KEY (0x0004)
#define KEY_ENUMERATE_SUB_KEYS (0x0008)
#define KEY_NOTIFY (0x0010)
#define KEY_CREATE_LINK (0x0020)
#define KEY_WOW64_32KEY (0x0200)
#define KEY_WOW64_64KEY (0x0100)
#define KEY_WOW64_RES (0x0300)
#define KEY_READ ((STANDARD_RIGHTS_READ |\
KEY_QUERY_VALUE |\
KEY_ENUMERATE_SUB_KEYS |\
KEY_NOTIFY) \
& \
(~SYNCHRONIZE))
#define KEY_WRITE ((STANDARD_RIGHTS_WRITE |\
KEY_SET_VALUE |\
KEY_CREATE_SUB_KEY) \
& \
(~SYNCHRONIZE))
#define KEY_EXECUTE ((KEY_READ) \
& \
(~SYNCHRONIZE))
#define KEY_ALL_ACCESS ((STANDARD_RIGHTS_ALL |\
KEY_QUERY_VALUE |\
KEY_SET_VALUE |\
KEY_CREATE_SUB_KEY |\
KEY_ENUMERATE_SUB_KEYS |\
KEY_NOTIFY |\
KEY_CREATE_LINK) \
& \
(~SYNCHRONIZE))
// end_access
//
// Open/Create Options
//
#define REG_OPTION_RESERVED (0x00000000L) // Parameter is reserved
#define REG_OPTION_NON_VOLATILE (0x00000000L) // Key is preserved
// when system is rebooted
#define REG_OPTION_VOLATILE (0x00000001L) // Key is not preserved
// when system is rebooted
#define REG_OPTION_CREATE_LINK (0x00000002L) // Created key is a
// symbolic link
#define REG_OPTION_BACKUP_RESTORE (0x00000004L) // open for backup or restore
// special access rules
// privilege required
#define REG_OPTION_OPEN_LINK (0x00000008L) // Open symbolic link
#define REG_LEGAL_OPTION \
(REG_OPTION_RESERVED |\
REG_OPTION_NON_VOLATILE |\
REG_OPTION_VOLATILE |\
REG_OPTION_CREATE_LINK |\
REG_OPTION_BACKUP_RESTORE |\
REG_OPTION_OPEN_LINK)
#define REG_OPEN_LEGAL_OPTION \
(REG_OPTION_RESERVED |\
REG_OPTION_BACKUP_RESTORE |\
REG_OPTION_OPEN_LINK)
//
// Key creation/open disposition
//
#define REG_CREATED_NEW_KEY (0x00000001L) // New Registry Key created
#define REG_OPENED_EXISTING_KEY (0x00000002L) // Existing Key opened
//
// hive format to be used by Reg(Nt)SaveKeyEx
//
#define REG_STANDARD_FORMAT 1
#define REG_LATEST_FORMAT 2
#define REG_NO_COMPRESSION 4
//
// Key restore & hive load flags
//
#define REG_WHOLE_HIVE_VOLATILE (0x00000001L) // Restore whole hive volatile
#define REG_REFRESH_HIVE (0x00000002L) // Unwind changes to last flush
#define REG_NO_LAZY_FLUSH (0x00000004L) // Never lazy flush this hive
#define REG_FORCE_RESTORE (0x00000008L) // Force the restore process even when we have open handles on subkeys
#define REG_APP_HIVE (0x00000010L) // Loads the hive visible to the calling process
#define REG_PROCESS_PRIVATE (0x00000020L) // Hive cannot be mounted by any other process while in use
#define REG_START_JOURNAL (0x00000040L) // Starts Hive Journal
#define REG_HIVE_EXACT_FILE_GROWTH (0x00000080L) // Grow hive file in exact 4k increments
#define REG_HIVE_NO_RM (0x00000100L) // No RM is started for this hive (no transactions)
#define REG_HIVE_SINGLE_LOG (0x00000200L) // Legacy single logging is used for this hive
#define REG_BOOT_HIVE (0x00000400L) // This hive might be used by the OS loader
#define REG_LOAD_HIVE_OPEN_HANDLE (0x00000800L) // Load the hive and return a handle to its root kcb
#define REG_FLUSH_HIVE_FILE_GROWTH (0x00001000L) // Flush changes to primary hive file size as part of all flushes
#define REG_OPEN_READ_ONLY (0x00002000L) // Open a hive's files in read-only mode
#define REG_IMMUTABLE (0x00004000L) // Load the hive, but don't allow any modification of it
#define REG_APP_HIVE_OPEN_READ_ONLY (REG_OPEN_READ_ONLY) // Open an app hive's files in read-only mode (if the hive was not previously loaded)
//
// Unload Flags
//
#define REG_FORCE_UNLOAD 1
//
// Notify filter values
//
#define REG_NOTIFY_CHANGE_NAME (0x00000001L) // Create or delete (child)
#define REG_NOTIFY_CHANGE_ATTRIBUTES (0x00000002L)
#define REG_NOTIFY_CHANGE_LAST_SET (0x00000004L) // time stamp
#define REG_NOTIFY_CHANGE_SECURITY (0x00000008L)
#define REG_NOTIFY_THREAD_AGNOSTIC (0x10000000L) // Not associated with a calling thread, can only be used
// for async user event based notification
#define REG_LEGAL_CHANGE_FILTER \
(REG_NOTIFY_CHANGE_NAME |\
REG_NOTIFY_CHANGE_ATTRIBUTES |\
REG_NOTIFY_CHANGE_LAST_SET |\
REG_NOTIFY_CHANGE_SECURITY |\
REG_NOTIFY_THREAD_AGNOSTIC)
// end_wdm
//
//
// Predefined Value Types.
//
#define REG_NONE ( 0ul ) // No value type
#define REG_SZ ( 1ul ) // Unicode nul terminated string
#define REG_EXPAND_SZ ( 2ul ) // Unicode nul terminated string
// (with environment variable references)
#define REG_BINARY ( 3ul ) // Free form binary
#define REG_DWORD ( 4ul ) // 32-bit number
#define REG_DWORD_LITTLE_ENDIAN ( 4ul ) // 32-bit number (same as REG_DWORD)
#define REG_DWORD_BIG_ENDIAN ( 5ul ) // 32-bit number
#define REG_LINK ( 6ul ) // Symbolic Link (unicode)
#define REG_MULTI_SZ ( 7ul ) // Multiple Unicode strings
#define REG_RESOURCE_LIST ( 8ul ) // Resource list in the resource map
#define REG_FULL_RESOURCE_DESCRIPTOR ( 9ul ) // Resource list in the hardware description
#define REG_RESOURCE_REQUIREMENTS_LIST ( 10ul )
#define REG_QWORD ( 11ul ) // 64-bit number
#define REG_QWORD_LITTLE_ENDIAN ( 11ul ) // 64-bit number (same as REG_QWORD)
// end_wdm
// begin_wdm
//
// Service Types (Bit Mask)
//
#define SERVICE_KERNEL_DRIVER 0x00000001
#define SERVICE_FILE_SYSTEM_DRIVER 0x00000002
#define SERVICE_ADAPTER 0x00000004
#define SERVICE_RECOGNIZER_DRIVER 0x00000008
#define SERVICE_DRIVER (SERVICE_KERNEL_DRIVER | \
SERVICE_FILE_SYSTEM_DRIVER | \
SERVICE_RECOGNIZER_DRIVER)
#define SERVICE_WIN32_OWN_PROCESS 0x00000010
#define SERVICE_WIN32_SHARE_PROCESS 0x00000020
#define SERVICE_WIN32 (SERVICE_WIN32_OWN_PROCESS | \
SERVICE_WIN32_SHARE_PROCESS)
#define SERVICE_USER_SERVICE 0x00000040
#define SERVICE_USERSERVICE_INSTANCE 0x00000080
#define SERVICE_USER_SHARE_PROCESS (SERVICE_USER_SERVICE | \
SERVICE_WIN32_SHARE_PROCESS)
#define SERVICE_USER_OWN_PROCESS (SERVICE_USER_SERVICE | \
SERVICE_WIN32_OWN_PROCESS)
#define SERVICE_INTERACTIVE_PROCESS 0x00000100
#define SERVICE_PKG_SERVICE 0x00000200
#define SERVICE_TYPE_ALL (SERVICE_WIN32 | \
SERVICE_ADAPTER | \
SERVICE_DRIVER | \
SERVICE_INTERACTIVE_PROCESS | \
SERVICE_USER_SERVICE | \
SERVICE_USERSERVICE_INSTANCE | \
SERVICE_PKG_SERVICE)
//
// Start Type
//
#define SERVICE_BOOT_START 0x00000000
#define SERVICE_SYSTEM_START 0x00000001
#define SERVICE_AUTO_START 0x00000002
#define SERVICE_DEMAND_START 0x00000003
#define SERVICE_DISABLED 0x00000004
//
// Error control type
//
#define SERVICE_ERROR_IGNORE 0x00000000
#define SERVICE_ERROR_NORMAL 0x00000001
#define SERVICE_ERROR_SEVERE 0x00000002
#define SERVICE_ERROR_CRITICAL 0x00000003
//
//
// Define the registry driver node enumerations
//
typedef enum _CM_SERVICE_NODE_TYPE {
DriverType = SERVICE_KERNEL_DRIVER,
FileSystemType = SERVICE_FILE_SYSTEM_DRIVER,
Win32ServiceOwnProcess = SERVICE_WIN32_OWN_PROCESS,
Win32ServiceShareProcess = SERVICE_WIN32_SHARE_PROCESS,
AdapterType = SERVICE_ADAPTER,
RecognizerType = SERVICE_RECOGNIZER_DRIVER
} SERVICE_NODE_TYPE;
typedef enum _CM_SERVICE_LOAD_TYPE {
BootLoad = SERVICE_BOOT_START,
SystemLoad = SERVICE_SYSTEM_START,
AutoLoad = SERVICE_AUTO_START,
DemandLoad = SERVICE_DEMAND_START,
DisableLoad = SERVICE_DISABLED
} SERVICE_LOAD_TYPE;
typedef enum _CM_ERROR_CONTROL_TYPE {
IgnoreError = SERVICE_ERROR_IGNORE,
NormalError = SERVICE_ERROR_NORMAL,
SevereError = SERVICE_ERROR_SEVERE,
CriticalError = SERVICE_ERROR_CRITICAL
} SERVICE_ERROR_TYPE;
//
// Service node Flags. These flags are used by the OS loader to promote
// a driver's start type to boot start if the system is booting using
// the specified mechanism. The flags should be set in the driver's
// registry configuration.
//
// CM_SERVICE_NETWORK_BOOT_LOAD - Specified if a driver should be
// promoted on network boot.
//
// CM_SERVICE_VIRTUAL_DISK_BOOT_LOAD - Specified if a driver should be
// promoted on booting from a VHD.
//
// CM_SERVICE_USB_DISK_BOOT_LOAD - Specified if a driver should be promoted
// while booting from a USB disk.
//
// CM_SERVICE_SD_DISK_BOOT_LOAD - Specified if a driver should be promoted
// while booting from SD storage.
//
// CM_SERVICE_USB3_DISK_BOOT_LOAD - Specified if a driver should be promoted
// while booting from a disk on a USB3 controller.
//
// CM_SERVICE_MEASURED_BOOT_LOAD - Specified if a driver should be promoted
// while booting with measured boot enabled.
//
// CM_SERVICE_VERIFIER_BOOT_LOAD - Specified if a driver should be promoted
// while booting with verifier boot enabled.
//
// CM_SERVICE_WINPE_BOOT_LOAD - Specified if a driver should be promoted
// on WinPE boot.
//
#define CM_SERVICE_NETWORK_BOOT_LOAD 0x00000001
#define CM_SERVICE_VIRTUAL_DISK_BOOT_LOAD 0x00000002
#define CM_SERVICE_USB_DISK_BOOT_LOAD 0x00000004
#define CM_SERVICE_SD_DISK_BOOT_LOAD 0x00000008
#define CM_SERVICE_USB3_DISK_BOOT_LOAD 0x00000010
#define CM_SERVICE_MEASURED_BOOT_LOAD 0x00000020
#define CM_SERVICE_VERIFIER_BOOT_LOAD 0x00000040
#define CM_SERVICE_WINPE_BOOT_LOAD 0x00000080
//
// Mask defining the legal promotion flag values.
//
#define CM_SERVICE_VALID_PROMOTION_MASK (CM_SERVICE_NETWORK_BOOT_LOAD | \
CM_SERVICE_VIRTUAL_DISK_BOOT_LOAD | \
CM_SERVICE_USB_DISK_BOOT_LOAD | \
CM_SERVICE_SD_DISK_BOOT_LOAD | \
CM_SERVICE_USB3_DISK_BOOT_LOAD | \
CM_SERVICE_MEASURED_BOOT_LOAD | \
CM_SERVICE_VERIFIER_BOOT_LOAD | \
CM_SERVICE_WINPE_BOOT_LOAD)
#ifndef _NTDDTAPE_WINNT_
#define _NTDDTAPE_WINNT_
//
// IOCTL_TAPE_ERASE definitions
//
#define TAPE_ERASE_SHORT 0L
#define TAPE_ERASE_LONG 1L
typedef struct _TAPE_ERASE {
DWORD Type;
BOOLEAN Immediate;
} TAPE_ERASE, *PTAPE_ERASE;
//
// IOCTL_TAPE_PREPARE definitions
//
#define TAPE_LOAD 0L
#define TAPE_UNLOAD 1L
#define TAPE_TENSION 2L
#define TAPE_LOCK 3L
#define TAPE_UNLOCK 4L
#define TAPE_FORMAT 5L
typedef struct _TAPE_PREPARE {
DWORD Operation;
BOOLEAN Immediate;
} TAPE_PREPARE, *PTAPE_PREPARE;
//
// IOCTL_TAPE_WRITE_MARKS definitions
//
#define TAPE_SETMARKS 0L
#define TAPE_FILEMARKS 1L
#define TAPE_SHORT_FILEMARKS 2L
#define TAPE_LONG_FILEMARKS 3L
typedef struct _TAPE_WRITE_MARKS {
DWORD Type;
DWORD Count;
BOOLEAN Immediate;
} TAPE_WRITE_MARKS, *PTAPE_WRITE_MARKS;
//
// IOCTL_TAPE_GET_POSITION definitions
//
#define TAPE_ABSOLUTE_POSITION 0L
#define TAPE_LOGICAL_POSITION 1L
#define TAPE_PSEUDO_LOGICAL_POSITION 2L
typedef struct _TAPE_GET_POSITION {
DWORD Type;
DWORD Partition;
LARGE_INTEGER Offset;
} TAPE_GET_POSITION, *PTAPE_GET_POSITION;
//
// IOCTL_TAPE_SET_POSITION definitions
//
#define TAPE_REWIND 0L
#define TAPE_ABSOLUTE_BLOCK 1L
#define TAPE_LOGICAL_BLOCK 2L
#define TAPE_PSEUDO_LOGICAL_BLOCK 3L
#define TAPE_SPACE_END_OF_DATA 4L
#define TAPE_SPACE_RELATIVE_BLOCKS 5L
#define TAPE_SPACE_FILEMARKS 6L
#define TAPE_SPACE_SEQUENTIAL_FMKS 7L
#define TAPE_SPACE_SETMARKS 8L
#define TAPE_SPACE_SEQUENTIAL_SMKS 9L
typedef struct _TAPE_SET_POSITION {
DWORD Method;
DWORD Partition;
LARGE_INTEGER Offset;
BOOLEAN Immediate;
} TAPE_SET_POSITION, *PTAPE_SET_POSITION;
//
// IOCTL_TAPE_GET_DRIVE_PARAMS definitions
//
//
// Definitions for FeaturesLow parameter
//
#define TAPE_DRIVE_FIXED 0x00000001
#define TAPE_DRIVE_SELECT 0x00000002
#define TAPE_DRIVE_INITIATOR 0x00000004
#define TAPE_DRIVE_ERASE_SHORT 0x00000010
#define TAPE_DRIVE_ERASE_LONG 0x00000020
#define TAPE_DRIVE_ERASE_BOP_ONLY 0x00000040
#define TAPE_DRIVE_ERASE_IMMEDIATE 0x00000080
#define TAPE_DRIVE_TAPE_CAPACITY 0x00000100
#define TAPE_DRIVE_TAPE_REMAINING 0x00000200
#define TAPE_DRIVE_FIXED_BLOCK 0x00000400
#define TAPE_DRIVE_VARIABLE_BLOCK 0x00000800
#define TAPE_DRIVE_WRITE_PROTECT 0x00001000
#define TAPE_DRIVE_EOT_WZ_SIZE 0x00002000
#define TAPE_DRIVE_ECC 0x00010000
#define TAPE_DRIVE_COMPRESSION 0x00020000
#define TAPE_DRIVE_PADDING 0x00040000
#define TAPE_DRIVE_REPORT_SMKS 0x00080000
#define TAPE_DRIVE_GET_ABSOLUTE_BLK 0x00100000
#define TAPE_DRIVE_GET_LOGICAL_BLK 0x00200000
#define TAPE_DRIVE_SET_EOT_WZ_SIZE 0x00400000
#define TAPE_DRIVE_EJECT_MEDIA 0x01000000
#define TAPE_DRIVE_CLEAN_REQUESTS 0x02000000
#define TAPE_DRIVE_SET_CMP_BOP_ONLY 0x04000000
#define TAPE_DRIVE_RESERVED_BIT 0x80000000 //don't use this bit!
// //can't be a low features bit!
// //reserved; high features only
//
// Definitions for FeaturesHigh parameter
//
#define TAPE_DRIVE_LOAD_UNLOAD 0x80000001
#define TAPE_DRIVE_TENSION 0x80000002
#define TAPE_DRIVE_LOCK_UNLOCK 0x80000004
#define TAPE_DRIVE_REWIND_IMMEDIATE 0x80000008
#define TAPE_DRIVE_SET_BLOCK_SIZE 0x80000010
#define TAPE_DRIVE_LOAD_UNLD_IMMED 0x80000020
#define TAPE_DRIVE_TENSION_IMMED 0x80000040
#define TAPE_DRIVE_LOCK_UNLK_IMMED 0x80000080
#define TAPE_DRIVE_SET_ECC 0x80000100
#define TAPE_DRIVE_SET_COMPRESSION 0x80000200
#define TAPE_DRIVE_SET_PADDING 0x80000400
#define TAPE_DRIVE_SET_REPORT_SMKS 0x80000800
#define TAPE_DRIVE_ABSOLUTE_BLK 0x80001000
#define TAPE_DRIVE_ABS_BLK_IMMED 0x80002000
#define TAPE_DRIVE_LOGICAL_BLK 0x80004000
#define TAPE_DRIVE_LOG_BLK_IMMED 0x80008000
#define TAPE_DRIVE_END_OF_DATA 0x80010000
#define TAPE_DRIVE_RELATIVE_BLKS 0x80020000
#define TAPE_DRIVE_FILEMARKS 0x80040000
#define TAPE_DRIVE_SEQUENTIAL_FMKS 0x80080000
#define TAPE_DRIVE_SETMARKS 0x80100000
#define TAPE_DRIVE_SEQUENTIAL_SMKS 0x80200000
#define TAPE_DRIVE_REVERSE_POSITION 0x80400000
#define TAPE_DRIVE_SPACE_IMMEDIATE 0x80800000
#define TAPE_DRIVE_WRITE_SETMARKS 0x81000000
#define TAPE_DRIVE_WRITE_FILEMARKS 0x82000000
#define TAPE_DRIVE_WRITE_SHORT_FMKS 0x84000000
#define TAPE_DRIVE_WRITE_LONG_FMKS 0x88000000
#define TAPE_DRIVE_WRITE_MARK_IMMED 0x90000000
#define TAPE_DRIVE_FORMAT 0xA0000000
#define TAPE_DRIVE_FORMAT_IMMEDIATE 0xC0000000
#define TAPE_DRIVE_HIGH_FEATURES 0x80000000 //mask for high features flag
typedef struct _TAPE_GET_DRIVE_PARAMETERS {
BOOLEAN ECC;
BOOLEAN Compression;
BOOLEAN DataPadding;
BOOLEAN ReportSetmarks;
DWORD DefaultBlockSize;
DWORD MaximumBlockSize;
DWORD MinimumBlockSize;
DWORD MaximumPartitionCount;
DWORD FeaturesLow;
DWORD FeaturesHigh;
DWORD EOTWarningZoneSize;
} TAPE_GET_DRIVE_PARAMETERS, *PTAPE_GET_DRIVE_PARAMETERS;
//
// IOCTL_TAPE_SET_DRIVE_PARAMETERS definitions
//
typedef struct _TAPE_SET_DRIVE_PARAMETERS {
BOOLEAN ECC;
BOOLEAN Compression;
BOOLEAN DataPadding;
BOOLEAN ReportSetmarks;
DWORD EOTWarningZoneSize;
} TAPE_SET_DRIVE_PARAMETERS, *PTAPE_SET_DRIVE_PARAMETERS;
//
// IOCTL_TAPE_GET_MEDIA_PARAMETERS definitions
//
typedef struct _TAPE_GET_MEDIA_PARAMETERS {
LARGE_INTEGER Capacity;
LARGE_INTEGER Remaining;
DWORD BlockSize;
DWORD PartitionCount;
BOOLEAN WriteProtected;
} TAPE_GET_MEDIA_PARAMETERS, *PTAPE_GET_MEDIA_PARAMETERS;
//
// IOCTL_TAPE_SET_MEDIA_PARAMETERS definitions
//
typedef struct _TAPE_SET_MEDIA_PARAMETERS {
DWORD BlockSize;
} TAPE_SET_MEDIA_PARAMETERS, *PTAPE_SET_MEDIA_PARAMETERS;
//
// IOCTL_TAPE_CREATE_PARTITION definitions
//
#define TAPE_FIXED_PARTITIONS 0L
#define TAPE_SELECT_PARTITIONS 1L
#define TAPE_INITIATOR_PARTITIONS 2L
typedef struct _TAPE_CREATE_PARTITION {
DWORD Method;
DWORD Count;
DWORD Size;
} TAPE_CREATE_PARTITION, *PTAPE_CREATE_PARTITION;
//
// WMI Methods
//
#define TAPE_QUERY_DRIVE_PARAMETERS 0L
#define TAPE_QUERY_MEDIA_CAPACITY 1L
#define TAPE_CHECK_FOR_DRIVE_PROBLEM 2L
#define TAPE_QUERY_IO_ERROR_DATA 3L
#define TAPE_QUERY_DEVICE_ERROR_DATA 4L
typedef struct _TAPE_WMI_OPERATIONS {
DWORD Method;
DWORD DataBufferSize;
PVOID DataBuffer;
} TAPE_WMI_OPERATIONS, *PTAPE_WMI_OPERATIONS;
//
// Type of drive errors
//
typedef enum _TAPE_DRIVE_PROBLEM_TYPE {
TapeDriveProblemNone, TapeDriveReadWriteWarning,
TapeDriveReadWriteError, TapeDriveReadWarning,
TapeDriveWriteWarning, TapeDriveReadError,
TapeDriveWriteError, TapeDriveHardwareError,
TapeDriveUnsupportedMedia, TapeDriveScsiConnectionError,
TapeDriveTimetoClean, TapeDriveCleanDriveNow,
TapeDriveMediaLifeExpired, TapeDriveSnappedTape
} TAPE_DRIVE_PROBLEM_TYPE;
#endif
#ifndef _NTTMAPI_
#define _NTTMAPI_
#ifdef __cplusplus
extern "C" {
#endif
#include <ktmtypes.h>
#if _MSC_VER >= 1200
#pragma warning(push)
#pragma warning(disable:4820) // padding added after data member
#endif
//
// Types for Nt level TM calls
//
// begin_access
//
// KTM Tm object rights
//
#define TRANSACTIONMANAGER_QUERY_INFORMATION ( 0x0001 )
#define TRANSACTIONMANAGER_SET_INFORMATION ( 0x0002 )
#define TRANSACTIONMANAGER_RECOVER ( 0x0004 )
#define TRANSACTIONMANAGER_RENAME ( 0x0008 )
#define TRANSACTIONMANAGER_CREATE_RM ( 0x0010 )
// The following right is intended for DTC's use only; it will be
// deprecated, and no one else should take a dependency on it.
#define TRANSACTIONMANAGER_BIND_TRANSACTION ( 0x0020 )
//
// Generic mappings for transaction manager rights.
//
#define TRANSACTIONMANAGER_GENERIC_READ (STANDARD_RIGHTS_READ |\
TRANSACTIONMANAGER_QUERY_INFORMATION)
#define TRANSACTIONMANAGER_GENERIC_WRITE (STANDARD_RIGHTS_WRITE |\
TRANSACTIONMANAGER_SET_INFORMATION |\
TRANSACTIONMANAGER_RECOVER |\
TRANSACTIONMANAGER_RENAME |\
TRANSACTIONMANAGER_CREATE_RM)
#define TRANSACTIONMANAGER_GENERIC_EXECUTE (STANDARD_RIGHTS_EXECUTE)
#define TRANSACTIONMANAGER_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED |\
TRANSACTIONMANAGER_GENERIC_READ |\
TRANSACTIONMANAGER_GENERIC_WRITE |\
TRANSACTIONMANAGER_GENERIC_EXECUTE |\
TRANSACTIONMANAGER_BIND_TRANSACTION)
//
// KTM transaction object rights.
//
#define TRANSACTION_QUERY_INFORMATION ( 0x0001 )
#define TRANSACTION_SET_INFORMATION ( 0x0002 )
#define TRANSACTION_ENLIST ( 0x0004 )
#define TRANSACTION_COMMIT ( 0x0008 )
#define TRANSACTION_ROLLBACK ( 0x0010 )
#define TRANSACTION_PROPAGATE ( 0x0020 )
#define TRANSACTION_RIGHT_RESERVED1 ( 0x0040 )
//
// Generic mappings for transaction rights.
// Resource managers, when enlisting, should generally use the macro
// TRANSACTION_RESOURCE_MANAGER_RIGHTS when opening a transaction.
// It's the same as generic read and write except that it does not allow
// a commit decision to be made.
//
#define TRANSACTION_GENERIC_READ (STANDARD_RIGHTS_READ |\
TRANSACTION_QUERY_INFORMATION |\
SYNCHRONIZE)
#define TRANSACTION_GENERIC_WRITE (STANDARD_RIGHTS_WRITE |\
TRANSACTION_SET_INFORMATION |\
TRANSACTION_COMMIT |\
TRANSACTION_ENLIST |\
TRANSACTION_ROLLBACK |\
TRANSACTION_PROPAGATE |\
SYNCHRONIZE)
#define TRANSACTION_GENERIC_EXECUTE (STANDARD_RIGHTS_EXECUTE |\
TRANSACTION_COMMIT |\
TRANSACTION_ROLLBACK |\
SYNCHRONIZE)
#define TRANSACTION_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED |\
TRANSACTION_GENERIC_READ |\
TRANSACTION_GENERIC_WRITE |\
TRANSACTION_GENERIC_EXECUTE)
#define TRANSACTION_RESOURCE_MANAGER_RIGHTS (TRANSACTION_GENERIC_READ |\
STANDARD_RIGHTS_WRITE |\
TRANSACTION_SET_INFORMATION |\
TRANSACTION_ENLIST |\
TRANSACTION_ROLLBACK |\
TRANSACTION_PROPAGATE |\
SYNCHRONIZE)
//
// KTM resource manager object rights.
//
#define RESOURCEMANAGER_QUERY_INFORMATION ( 0x0001 )
#define RESOURCEMANAGER_SET_INFORMATION ( 0x0002 )
#define RESOURCEMANAGER_RECOVER ( 0x0004 )
#define RESOURCEMANAGER_ENLIST ( 0x0008 )
#define RESOURCEMANAGER_GET_NOTIFICATION ( 0x0010 )
#define RESOURCEMANAGER_REGISTER_PROTOCOL ( 0x0020 )
#define RESOURCEMANAGER_COMPLETE_PROPAGATION ( 0x0040 )
//
// Generic mappings for resource manager rights.
//
#define RESOURCEMANAGER_GENERIC_READ (STANDARD_RIGHTS_READ |\
RESOURCEMANAGER_QUERY_INFORMATION |\
SYNCHRONIZE)
#define RESOURCEMANAGER_GENERIC_WRITE (STANDARD_RIGHTS_WRITE |\
RESOURCEMANAGER_SET_INFORMATION |\
RESOURCEMANAGER_RECOVER |\
RESOURCEMANAGER_ENLIST |\
RESOURCEMANAGER_GET_NOTIFICATION |\
RESOURCEMANAGER_REGISTER_PROTOCOL |\
RESOURCEMANAGER_COMPLETE_PROPAGATION |\
SYNCHRONIZE)
#define RESOURCEMANAGER_GENERIC_EXECUTE (STANDARD_RIGHTS_EXECUTE |\
RESOURCEMANAGER_RECOVER |\
RESOURCEMANAGER_ENLIST |\
RESOURCEMANAGER_GET_NOTIFICATION |\
RESOURCEMANAGER_COMPLETE_PROPAGATION |\
SYNCHRONIZE)
#define RESOURCEMANAGER_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED |\
RESOURCEMANAGER_GENERIC_READ |\
RESOURCEMANAGER_GENERIC_WRITE |\
RESOURCEMANAGER_GENERIC_EXECUTE)
//
// KTM enlistment object rights.
//
#define ENLISTMENT_QUERY_INFORMATION ( 0x0001 )
#define ENLISTMENT_SET_INFORMATION ( 0x0002 )
#define ENLISTMENT_RECOVER ( 0x0004 )
#define ENLISTMENT_SUBORDINATE_RIGHTS ( 0x0008 )
#define ENLISTMENT_SUPERIOR_RIGHTS ( 0x0010 )
//
// Generic mappings for enlistment rights.
//
#define ENLISTMENT_GENERIC_READ (STANDARD_RIGHTS_READ |\
ENLISTMENT_QUERY_INFORMATION)
#define ENLISTMENT_GENERIC_WRITE (STANDARD_RIGHTS_WRITE |\
ENLISTMENT_SET_INFORMATION |\
ENLISTMENT_RECOVER |\
ENLISTMENT_SUBORDINATE_RIGHTS |\
ENLISTMENT_SUPERIOR_RIGHTS)
#define ENLISTMENT_GENERIC_EXECUTE (STANDARD_RIGHTS_EXECUTE |\
ENLISTMENT_RECOVER |\
ENLISTMENT_SUBORDINATE_RIGHTS |\
ENLISTMENT_SUPERIOR_RIGHTS)
#define ENLISTMENT_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED |\
ENLISTMENT_GENERIC_READ |\
ENLISTMENT_GENERIC_WRITE |\
ENLISTMENT_GENERIC_EXECUTE)
// end_access
//
// Transaction outcomes.
//
// TODO: warning, must match values in KTRANSACTION_OUTCOME duplicated def
// in tm.h.
//
typedef enum _TRANSACTION_OUTCOME {
TransactionOutcomeUndetermined = 1,
TransactionOutcomeCommitted,
TransactionOutcomeAborted,
} TRANSACTION_OUTCOME;
typedef enum _TRANSACTION_STATE {
TransactionStateNormal = 1,
TransactionStateIndoubt,
TransactionStateCommittedNotify,
} TRANSACTION_STATE;
typedef struct _TRANSACTION_BASIC_INFORMATION {
GUID TransactionId;
DWORD State;
DWORD Outcome;
} TRANSACTION_BASIC_INFORMATION, *PTRANSACTION_BASIC_INFORMATION;
typedef struct _TRANSACTIONMANAGER_BASIC_INFORMATION {
GUID TmIdentity;
LARGE_INTEGER VirtualClock;
} TRANSACTIONMANAGER_BASIC_INFORMATION, *PTRANSACTIONMANAGER_BASIC_INFORMATION;
typedef struct _TRANSACTIONMANAGER_LOG_INFORMATION {
GUID LogIdentity;
} TRANSACTIONMANAGER_LOG_INFORMATION, *PTRANSACTIONMANAGER_LOG_INFORMATION;
typedef struct _TRANSACTIONMANAGER_LOGPATH_INFORMATION {
DWORD LogPathLength;
_Field_size_(LogPathLength) WCHAR LogPath[1]; // Variable size
// Data[1]; // Variable size data not declared
} TRANSACTIONMANAGER_LOGPATH_INFORMATION, *PTRANSACTIONMANAGER_LOGPATH_INFORMATION;
typedef struct _TRANSACTIONMANAGER_RECOVERY_INFORMATION {
ULONGLONG LastRecoveredLsn;
} TRANSACTIONMANAGER_RECOVERY_INFORMATION, *PTRANSACTIONMANAGER_RECOVERY_INFORMATION;
// end_wdm
typedef struct _TRANSACTIONMANAGER_OLDEST_INFORMATION {
GUID OldestTransactionGuid;
} TRANSACTIONMANAGER_OLDEST_INFORMATION, *PTRANSACTIONMANAGER_OLDEST_INFORMATION;
// begin_wdm
typedef struct _TRANSACTION_PROPERTIES_INFORMATION {
DWORD IsolationLevel;
DWORD IsolationFlags;
LARGE_INTEGER Timeout;
DWORD Outcome;
DWORD DescriptionLength;
WCHAR Description[1]; // Variable size
// Data[1]; // Variable size data not declared
} TRANSACTION_PROPERTIES_INFORMATION, *PTRANSACTION_PROPERTIES_INFORMATION;
// The following info-class is intended for DTC's use only; it will be
// deprecated, and no one else should take a dependency on it.
typedef struct _TRANSACTION_BIND_INFORMATION {
HANDLE TmHandle;
} TRANSACTION_BIND_INFORMATION, *PTRANSACTION_BIND_INFORMATION;
typedef struct _TRANSACTION_ENLISTMENT_PAIR {
GUID EnlistmentId;
GUID ResourceManagerId;
} TRANSACTION_ENLISTMENT_PAIR, *PTRANSACTION_ENLISTMENT_PAIR;
typedef struct _TRANSACTION_ENLISTMENTS_INFORMATION {
DWORD NumberOfEnlistments;
TRANSACTION_ENLISTMENT_PAIR EnlistmentPair[1]; // Variable size
} TRANSACTION_ENLISTMENTS_INFORMATION, *PTRANSACTION_ENLISTMENTS_INFORMATION;
typedef struct _TRANSACTION_SUPERIOR_ENLISTMENT_INFORMATION {
TRANSACTION_ENLISTMENT_PAIR SuperiorEnlistmentPair;
} TRANSACTION_SUPERIOR_ENLISTMENT_INFORMATION, *PTRANSACTION_SUPERIOR_ENLISTMENT_INFORMATION;
typedef struct _RESOURCEMANAGER_BASIC_INFORMATION {
GUID ResourceManagerId;
DWORD DescriptionLength;
WCHAR Description[1]; // Variable size
} RESOURCEMANAGER_BASIC_INFORMATION, *PRESOURCEMANAGER_BASIC_INFORMATION;
typedef struct _RESOURCEMANAGER_COMPLETION_INFORMATION {
HANDLE IoCompletionPortHandle;
ULONG_PTR CompletionKey;
} RESOURCEMANAGER_COMPLETION_INFORMATION, *PRESOURCEMANAGER_COMPLETION_INFORMATION;
// end_wdm
// begin_wdm
typedef enum _TRANSACTION_INFORMATION_CLASS {
TransactionBasicInformation,
TransactionPropertiesInformation,
TransactionEnlistmentInformation,
TransactionSuperiorEnlistmentInformation
// end_wdm
,
// The following info-classes are intended for DTC's use only; it will be
// deprecated, and no one else should take a dependency on it.
TransactionBindInformation, // private and deprecated
TransactionDTCPrivateInformation // private and deprecated
,
// begin_wdm
} TRANSACTION_INFORMATION_CLASS;
// begin_wdm
typedef enum _TRANSACTIONMANAGER_INFORMATION_CLASS {
TransactionManagerBasicInformation,
TransactionManagerLogInformation,
TransactionManagerLogPathInformation,
TransactionManagerRecoveryInformation = 4
// end_wdm
,
// The following info-classes are intended for internal use only; they
// are considered deprecated, and no one else should take a dependency
// on them.
TransactionManagerOnlineProbeInformation = 3,
TransactionManagerOldestTransactionInformation = 5
// end_wdm
// begin_wdm
} TRANSACTIONMANAGER_INFORMATION_CLASS;
// begin_wdm
typedef enum _RESOURCEMANAGER_INFORMATION_CLASS {
ResourceManagerBasicInformation,
ResourceManagerCompletionInformation,
} RESOURCEMANAGER_INFORMATION_CLASS;
typedef struct _ENLISTMENT_BASIC_INFORMATION {
GUID EnlistmentId;
GUID TransactionId;
GUID ResourceManagerId;
} ENLISTMENT_BASIC_INFORMATION, *PENLISTMENT_BASIC_INFORMATION;
typedef struct _ENLISTMENT_CRM_INFORMATION {
GUID CrmTransactionManagerId;
GUID CrmResourceManagerId;
GUID CrmEnlistmentId;
} ENLISTMENT_CRM_INFORMATION, *PENLISTMENT_CRM_INFORMATION;
// begin_wdm
typedef enum _ENLISTMENT_INFORMATION_CLASS {
EnlistmentBasicInformation,
EnlistmentRecoveryInformation,
EnlistmentCrmInformation
} ENLISTMENT_INFORMATION_CLASS;
typedef struct _TRANSACTION_LIST_ENTRY {
UOW UOW;
} TRANSACTION_LIST_ENTRY, *PTRANSACTION_LIST_ENTRY;
typedef struct _TRANSACTION_LIST_INFORMATION {
DWORD NumberOfTransactions;
TRANSACTION_LIST_ENTRY TransactionInformation[1]; // Var size
} TRANSACTION_LIST_INFORMATION, *PTRANSACTION_LIST_INFORMATION;
//
// Types of objects known to the kernel transaction manager.
//
typedef enum _KTMOBJECT_TYPE {
KTMOBJECT_TRANSACTION,
KTMOBJECT_TRANSACTION_MANAGER,
KTMOBJECT_RESOURCE_MANAGER,
KTMOBJECT_ENLISTMENT,
KTMOBJECT_INVALID
} KTMOBJECT_TYPE, *PKTMOBJECT_TYPE;
//
// KTMOBJECT_CURSOR
//
// Used by NtEnumerateTransactionObject to enumerate a transaction
// object namespace (e.g. enlistments in a resource manager).
//
typedef struct _KTMOBJECT_CURSOR {
//
// The last GUID enumerated; zero if beginning enumeration.
//
GUID LastQuery;
//
// A count of GUIDs filled in by this last enumeration.
//
DWORD ObjectIdCount;
//
// ObjectIdCount GUIDs from the namespace specified.
//
GUID ObjectIds[1];
} KTMOBJECT_CURSOR, *PKTMOBJECT_CURSOR;
// begin_wdm
#if _MSC_VER >= 1200
#pragma warning(pop)
#endif
#ifdef __cplusplus
}
#endif
#endif // _NTTMAPI_
typedef DWORD TP_VERSION, *PTP_VERSION;
typedef struct _TP_CALLBACK_INSTANCE TP_CALLBACK_INSTANCE, *PTP_CALLBACK_INSTANCE;
typedef VOID (NTAPI *PTP_SIMPLE_CALLBACK)(
_Inout_ PTP_CALLBACK_INSTANCE Instance,
_Inout_opt_ PVOID Context
);
typedef struct _TP_POOL TP_POOL, *PTP_POOL;
typedef enum _TP_CALLBACK_PRIORITY {
TP_CALLBACK_PRIORITY_HIGH,
TP_CALLBACK_PRIORITY_NORMAL,
TP_CALLBACK_PRIORITY_LOW,
TP_CALLBACK_PRIORITY_INVALID,
TP_CALLBACK_PRIORITY_COUNT = TP_CALLBACK_PRIORITY_INVALID
} TP_CALLBACK_PRIORITY;
typedef struct _TP_POOL_STACK_INFORMATION {
SIZE_T StackReserve;
SIZE_T StackCommit;
}TP_POOL_STACK_INFORMATION, *PTP_POOL_STACK_INFORMATION;
typedef struct _TP_CLEANUP_GROUP TP_CLEANUP_GROUP, *PTP_CLEANUP_GROUP;
typedef VOID (NTAPI *PTP_CLEANUP_GROUP_CANCEL_CALLBACK)(
_Inout_opt_ PVOID ObjectContext,
_Inout_opt_ PVOID CleanupContext
);
//
// Do not manipulate this structure directly! Allocate space for it
// and use the inline interfaces below.
//
#if (_WIN32_WINNT >= _WIN32_WINNT_WIN7)
typedef struct _TP_CALLBACK_ENVIRON_V3 {
TP_VERSION Version;
PTP_POOL Pool;
PTP_CLEANUP_GROUP CleanupGroup;
PTP_CLEANUP_GROUP_CANCEL_CALLBACK CleanupGroupCancelCallback;
PVOID RaceDll;
struct _ACTIVATION_CONTEXT *ActivationContext;
PTP_SIMPLE_CALLBACK FinalizationCallback;
union {
DWORD Flags;
struct {
DWORD LongFunction : 1;
DWORD Persistent : 1;
DWORD Private : 30;
} s;
} u;
TP_CALLBACK_PRIORITY CallbackPriority;
DWORD Size;
} TP_CALLBACK_ENVIRON_V3;
typedef TP_CALLBACK_ENVIRON_V3 TP_CALLBACK_ENVIRON, *PTP_CALLBACK_ENVIRON;
#else
typedef struct _TP_CALLBACK_ENVIRON_V1 {
TP_VERSION Version;
PTP_POOL Pool;
PTP_CLEANUP_GROUP CleanupGroup;
PTP_CLEANUP_GROUP_CANCEL_CALLBACK CleanupGroupCancelCallback;
PVOID RaceDll;
struct _ACTIVATION_CONTEXT *ActivationContext;
PTP_SIMPLE_CALLBACK FinalizationCallback;
union {
DWORD Flags;
struct {
DWORD LongFunction : 1;
DWORD Persistent : 1;
DWORD Private : 30;
} s;
} u;
} TP_CALLBACK_ENVIRON_V1;
typedef TP_CALLBACK_ENVIRON_V1 TP_CALLBACK_ENVIRON, *PTP_CALLBACK_ENVIRON;
#endif
#if !defined(MIDL_PASS)
FORCEINLINE
VOID
TpInitializeCallbackEnviron(
_Out_ PTP_CALLBACK_ENVIRON CallbackEnviron
)
{
#if (_WIN32_WINNT >= _WIN32_WINNT_WIN7)
CallbackEnviron->Version = 3;
#else
CallbackEnviron->Version = 1;
#endif
CallbackEnviron->Pool = NULL;
CallbackEnviron->CleanupGroup = NULL;
CallbackEnviron->CleanupGroupCancelCallback = NULL;
CallbackEnviron->RaceDll = NULL;
CallbackEnviron->ActivationContext = NULL;
CallbackEnviron->FinalizationCallback = NULL;
CallbackEnviron->u.Flags = 0;
#if (_WIN32_WINNT >= _WIN32_WINNT_WIN7)
CallbackEnviron->CallbackPriority = TP_CALLBACK_PRIORITY_NORMAL;
CallbackEnviron->Size = sizeof(TP_CALLBACK_ENVIRON);
#endif
}
FORCEINLINE
VOID
TpSetCallbackThreadpool(
_Inout_ PTP_CALLBACK_ENVIRON CallbackEnviron,
_In_ PTP_POOL Pool
)
{
CallbackEnviron->Pool = Pool;
}
FORCEINLINE
VOID
TpSetCallbackCleanupGroup(
_Inout_ PTP_CALLBACK_ENVIRON CallbackEnviron,
_In_ PTP_CLEANUP_GROUP CleanupGroup,
_In_opt_ PTP_CLEANUP_GROUP_CANCEL_CALLBACK CleanupGroupCancelCallback
)
{
CallbackEnviron->CleanupGroup = CleanupGroup;
CallbackEnviron->CleanupGroupCancelCallback = CleanupGroupCancelCallback;
}
FORCEINLINE
VOID
TpSetCallbackActivationContext(
_Inout_ PTP_CALLBACK_ENVIRON CallbackEnviron,
_In_opt_ struct _ACTIVATION_CONTEXT *ActivationContext
)
{
CallbackEnviron->ActivationContext = ActivationContext;
}
FORCEINLINE
VOID
TpSetCallbackNoActivationContext(
_Inout_ PTP_CALLBACK_ENVIRON CallbackEnviron
)
{
CallbackEnviron->ActivationContext = (struct _ACTIVATION_CONTEXT *)(LONG_PTR) -1; // INVALID_ACTIVATION_CONTEXT
}
FORCEINLINE
VOID
TpSetCallbackLongFunction(
_Inout_ PTP_CALLBACK_ENVIRON CallbackEnviron
)
{
CallbackEnviron->u.s.LongFunction = 1;
}
FORCEINLINE
VOID
TpSetCallbackRaceWithDll(
_Inout_ PTP_CALLBACK_ENVIRON CallbackEnviron,
_In_ PVOID DllHandle
)
{
CallbackEnviron->RaceDll = DllHandle;
}
FORCEINLINE
VOID
TpSetCallbackFinalizationCallback(
_Inout_ PTP_CALLBACK_ENVIRON CallbackEnviron,
_In_ PTP_SIMPLE_CALLBACK FinalizationCallback
)
{
CallbackEnviron->FinalizationCallback = FinalizationCallback;
}
#if (_WIN32_WINNT >= _WIN32_WINNT_WIN7)
FORCEINLINE
VOID
TpSetCallbackPriority(
_Inout_ PTP_CALLBACK_ENVIRON CallbackEnviron,
_In_ TP_CALLBACK_PRIORITY Priority
)
{
CallbackEnviron->CallbackPriority = Priority;
}
#endif
FORCEINLINE
VOID
TpSetCallbackPersistent(
_Inout_ PTP_CALLBACK_ENVIRON CallbackEnviron
)
{
CallbackEnviron->u.s.Persistent = 1;
}
FORCEINLINE
VOID
TpDestroyCallbackEnviron(
_In_ PTP_CALLBACK_ENVIRON CallbackEnviron
)
{
//
// For the current version of the callback environment, no actions
// need to be taken to tear down an initialized structure. This
// may change in a future release.
//
UNREFERENCED_PARAMETER(CallbackEnviron);
}
#endif // !defined(MIDL_PASS)
typedef struct _TP_WORK TP_WORK, *PTP_WORK;
typedef VOID (NTAPI *PTP_WORK_CALLBACK)(
_Inout_ PTP_CALLBACK_INSTANCE Instance,
_Inout_opt_ PVOID Context,
_Inout_ PTP_WORK Work
);
typedef struct _TP_TIMER TP_TIMER, *PTP_TIMER;
typedef VOID (NTAPI *PTP_TIMER_CALLBACK)(
_Inout_ PTP_CALLBACK_INSTANCE Instance,
_Inout_opt_ PVOID Context,
_Inout_ PTP_TIMER Timer
);
typedef DWORD TP_WAIT_RESULT;
typedef struct _TP_WAIT TP_WAIT, *PTP_WAIT;
typedef VOID (NTAPI *PTP_WAIT_CALLBACK)(
_Inout_ PTP_CALLBACK_INSTANCE Instance,
_Inout_opt_ PVOID Context,
_Inout_ PTP_WAIT Wait,
_In_ TP_WAIT_RESULT WaitResult
);
typedef struct _TP_IO TP_IO, *PTP_IO;
#if defined(_M_AMD64) && !defined(__midl)
__forceinline
struct _TEB *
NtCurrentTeb (
VOID
)
{
return (struct _TEB *)__readgsqword(FIELD_OFFSET(NT_TIB, Self));
}
__forceinline
PVOID
GetCurrentFiber (
VOID
)
{
return (PVOID)__readgsqword(FIELD_OFFSET(NT_TIB, FiberData));
}
__forceinline
PVOID
GetFiberData (
VOID
)
{
return *(PVOID *)GetCurrentFiber();
}
#endif // _M_AMD64 && !defined(__midl)
#if defined(_M_ARM) && !defined(__midl) && !defined(_M_CEE_PURE)
__forceinline
struct _TEB *
NtCurrentTeb (
VOID
)
{
return (struct _TEB *)(ULONG_PTR)_MoveFromCoprocessor(CP15_TPIDRURW);
}
__forceinline
PVOID
GetCurrentFiber (
VOID
)
{
return ((PNT_TIB )(ULONG_PTR)_MoveFromCoprocessor(CP15_TPIDRURW))->FiberData;
}
__forceinline
PVOID
GetFiberData (
VOID
)
{
return *(PVOID *)GetCurrentFiber();
}
#endif // _M_ARM && !defined(__midl) && !defined(_M_CEE_PURE)
#if defined(_M_ARM64) && !defined(__midl) && !defined(_M_CEE_PURE)
__forceinline
struct _TEB *
NtCurrentTeb (
VOID
)
{
return (struct _TEB *)__getReg(18);
}
__forceinline
PVOID
GetCurrentFiber (
VOID
)
{
return ((PNT_TIB )__getReg(18))->FiberData;
}
__forceinline
PVOID
GetFiberData (
VOID
)
{
return *(PVOID *)GetCurrentFiber();
}
#endif // _M_ARM64 && !defined(__midl) && !defined(_M_CEE_PURE)
#if defined(_M_IX86) && !defined(MIDL_PASS)
#define PcTeb 0x18
#if !defined(_M_CEE_PURE)
__inline struct _TEB * NtCurrentTeb( void ) { return (struct _TEB *) (ULONG_PTR) __readfsdword (PcTeb); }
#endif // !defined(_M_CEE_PURE)
#endif // defined(_M_IX86) && !defined(MIDL_PASS)
#if (_WIN32_WINNT > 0x0500) || (_WIN32_FUSION >= 0x0100) || ISOLATION_AWARE_ENABLED // winnt_only
#define ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION (1)
#define ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION (2)
#define ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION (3)
#define ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION (4)
#define ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION (5)
#define ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION (6)
#define ACTIVATION_CONTEXT_SECTION_COM_PROGID_REDIRECTION (7)
#define ACTIVATION_CONTEXT_SECTION_GLOBAL_OBJECT_RENAME_TABLE (8)
#define ACTIVATION_CONTEXT_SECTION_CLR_SURROGATES (9)
#define ACTIVATION_CONTEXT_SECTION_APPLICATION_SETTINGS (10)
#define ACTIVATION_CONTEXT_SECTION_COMPATIBILITY_INFO (11)
#endif // winnt_only
#ifdef __cplusplus
}
#endif
#if _MSC_VER >= 1200
#pragma warning(pop)
#else
#pragma warning(default:4200) // nonstandard extension used : zero-sized array in struct/union
#pragma warning(default:4201) // named type definition in parentheses
#pragma warning(default:4214) // bit field types other than int
#endif
#endif /* _WINNT_ */
| [
"[email protected]"
] | |
79fec17877123fd0a9bf0ef0c408c2837b28d307 | f3f0f91a63558b803ec1f150165aa49e093808f9 | /general/UserParameters.cpp | 82abe9c6baf9ee8ecabfa6c9b86e0626a7b630d6 | [] | no_license | kimmensjolander/bpg-sci-phy | 5989c2030e6d83b304da2cf92e0e7f3eb327e3b4 | fefecd3022383dc7bad55b050854e402600164ec | refs/heads/master | 2020-03-29T12:26:33.422675 | 2010-10-18T21:46:41 | 2010-10-18T21:46:41 | 32,128,561 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,117 | cpp | #include "UserParameters.h"
namespace sciphy
{
UserParameters::UserParameters()
{
// set all default params here
// . is the gap character for insert state in SAM alignment
aminoAcidCodes = "ACDEFGHIKLMNPQRSTVWY-BUXZacdefghiklmnpqrstvwy.";
mixtureName = "recode4";
minOverlap = 10;
relativeWeight = "pw";
totalWeight = "NIC";
infileName = "";
outfileName = "";
treeFileName = "";
bSkipInserts = false;
}
UserParameters::~UserParameters()
{
}
// returns the index of the chracter c in string aminoAcidCodes
int
UserParameters::resIndex(char c)
{
register int i;
for (i = 0; aminoAcidCodes[i] && aminoAcidCodes[i]!=c; i++)
;
if (aminoAcidCodes[i]) {
return (i);
} else {
return -1;
}
}
int
UserParameters::parseParams(vector<string>* args)
{
string str;
for (int i=0; i<args->size(); i++) {
str = args->at(i);
if (str == "-h") {
printHelp();
exit(0);
} else if (str == "-i") {
i++;
str = args->at(i);
infileName = str;
} else if (str == "-o") {
i++;
str = args->at(i);
outfileName = str;
} else if (str == "-m") {
i++;
str = args->at(i);
mixtureName = str;
if (mixtureName != "recode4" && mixtureName != "blocks9") {
cerr << "Error: Invalid mixture. Choose between recode4 and blocks9." << endl;
return 0;
}
} else if (str == "-rw") {
i++;
str = args->at(i);
setRelativeWeight(str);
if (0) { // add code to check options
cerr << "Error: Invalid argument for -rw option for relative weights. Valid options are none or pw (position-weighted)." << endl;
return 0;
}
} else if (str == "-mino") {
i++;
str = args->at(i);
char* val = (char*) str.c_str();
if (isInteger(val) && (int)val <=100 && (int)val >=0) {
setMinOverlap((int) val);
} else {
cerr << "Error: Invalid number for -mino option. The minimum overlap has to be a number between 0 and 100." << endl;
return 0;
}
} else if (str == "-tree") {
int found = infileName.find_first_of(".");
if (found) {
treeFileName = infileName.substr(0, found);
} else {
treeFileName = infileName;
}
treeFileName.append(".ph");
} else if (str == "-skip_inserts") {
bSkipInserts = true;
} else {
cerr << "Error: Unknown option " << str << endl;
return 0;
}
}
if (infileName == "") {
cerr << "Error: No input file is specified." << endl;
return 0;
} else if (outfileName == "") {
cerr << "Error: No output file is specified." << endl;
return 0;
}
return 1;
}
void
UserParameters::printHelp() {
string title = "SCIPHY - Subfamily Classification In PHYlogenomics";
string reference = "PLoS Computational Biology, 3, e160, 1526-1538 (2007)";
string usage =
"Usage: sciphy [options] -i aln_file -o out_file\n\n"
"Available options are:\n"
" -h : print help\n"
" -m : dirichlet mixture: recode4, blocks9 (Default=recode4)\n"
" -rw : relative weighting method: pw, none. pw is Henikoff position-weighted scheme. (Default=pw)\n"
" -skip_inserts : skip columns representing insert states, in which residues are represented in lower case in alignment in UCSC a2m format.\n"
" -mino : minimum percent overlap between two profiles for them to be joined. (Default=10)\n"
" -tree : output tree (Newick format) in a file\n"
;
cout << "------------------------------------------------------------------------------\n";
cout << title << endl;
cout << "VERSION: " << SCIPHY_VERSION << endl;
cout << reference << endl;
cout << "------------------------------------------------------------------------------\n";
cout << usage << endl;
}
bool
UserParameters::isInteger(char *number )
{
int len = strlen( number );
bool isnumber = true;
int i = 0;
if( len == 0 || len > 9 ) // if the user did not enter an input
{ // or if the input is too big to be
return false; // a "long" value.
}
while( i < len && isnumber ) // scanning the the input
{
if( isdigit( number[i] ) == 0 ) // check if there is a none digit character in the input
{
if( number[i] == '+' || number[i] == '-' ) // if so we verify if it is "+" or "-"
{
if( i + 1 > len - 1 || i - 1 >= 0 ) // check the position of "+" or "-"
{ // this signs could only be infront of
isnumber = false; // the number,no where else.
}
}
if( number[i] != '+' && number[i] != '-' ) // if it's not "+" or "-" than
{ // the expression is not a number
isnumber = false;
}
}
i++;
}
return isnumber;
}
}
| [
"[email protected]@ed72bfb6-bbaa-95bc-2366-9432bd51d671"
] | [email protected]@ed72bfb6-bbaa-95bc-2366-9432bd51d671 |
d0117d23a66077faee8251009ae1ccfb2aabdbc7 | a42684a98a664b8d9c970216e960f05208b88b16 | /tests/graph_write_test.cc | 5305e6461ff3f61017b4fdd96572ed9686380994 | [] | no_license | selvaggi/fcc-edm | b3c65ecc0366b964d8e77a20ff6baab60448483c | 553fde3534219f4bcf262be5db54b002d7a4294d | refs/heads/master | 2021-01-12T12:20:36.647944 | 2017-04-08T11:56:22 | 2017-04-08T11:56:22 | 72,449,164 | 0 | 0 | null | 2016-10-31T15:18:45 | 2016-10-31T15:18:45 | null | UTF-8 | C++ | false | false | 1,536 | cc | // Data model
#include "datamodel/MCParticleCollection.h"
#include "datamodel/LorentzVector.h"
#include "datamodel/GenVertexCollection.h"
// STL
#include <iostream>
#include <vector>
// podio specific includes
#include "podio/EventStore.h"
#include "podio/ROOTWriter.h"
// prepares a file with particles that have a history (only one event and physically nonsensical)
int main() {
auto store = podio::EventStore();
podio::ROOTWriter writer("graphexample.root", &store);
auto& particleColl = store.create<fcc::MCParticleCollection>("mcparticles");
auto& vtxColl = store.create<fcc::GenVertexCollection>("mcvertices");
writer.registerForWrite<fcc::MCParticleCollection>("mcparticles");
writer.registerForWrite<fcc::GenVertexCollection>("mcvertices");
auto ptc = particleColl.create();
auto vtxStartParent = vtxColl.create();
auto vtxStartChild = vtxColl.create();
ptc.startVertex(vtxStartParent);
ptc.endVertex(vtxStartChild);
for (int ichild = 0; ichild < 3; ++ichild) {
auto childPtc = particleColl.create();
auto vtxStartGrandChild = vtxColl.create();
childPtc.startVertex(vtxStartChild);
childPtc.endVertex(vtxStartGrandChild);
for (int igrandchild = 0; igrandchild < 3; ++igrandchild) {
auto vtxEndGrandChild = vtxColl.create();
auto grandChildPtc = particleColl.create();
grandChildPtc.startVertex(vtxStartGrandChild);
grandChildPtc.endVertex(vtxEndGrandChild);
}
}
writer.writeEvent();
store.clearCollections();
writer.finish();
return 0;
}
| [
"[email protected]"
] | |
70aa563ac96dff79c2d7b0be7894dc9e9e319904 | 0a94ab4f5be63c487403d45b271855e98bfe55aa | /hvector.h | 7afe85aef150c3f00790712fdd98b37dee0eb4b9 | [] | no_license | skyformat99/STLCodes | ffdc7caa15c6a131bf4bb18f1a8aba04d324c21d | 2402e35d60f5bc7e8018f0d9e9187d5520f09629 | refs/heads/master | 2021-07-08T00:58:17.893755 | 2017-10-05T02:24:18 | 2017-10-05T02:24:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,088 | h | // #ifndef _HVECTOR_H
// #define _HVECTOR_H
#pragma once
#include <iostream>
#include <assert.h>
namespace hzh
{
template<class T>
class hvector
{
public:
typedef T value_type;
typedef T* pointer;
typedef T& reference;
typedef const T& const_reference;
typedef size_t size_type;
hvector() : start(NULL), finish(NULL), end_of_storage(NULL) {}
hvector(size_type n, const T& val = 0);
~hvector();
pointer begin() { return start; }
pointer end() { return finish; }
reference front() { return *start; }
reference back() { return *finish; }
void insert(pointer pos, const_reference val);
void push_back(const_reference val);
T erase(pointer pos);
T pop_back();
size_type size() { return finish - start + 1; }
size_type capacity() { return end_of_storage - start + 1; }
void resize(size_type new_size);
bool empty() { return start >= finish; }
bool full() { return finish >= end_of_storage; }
void print();
reference operator[] (size_type index) { return *(start + index); }
protected:
pointer start;
pointer finish;
pointer end_of_storage;
};
template<class T>
hvector<T>::hvector(size_type n, const_reference val)
{
assert(n > 0);
start = new T[n];
// start = (T*)malloc(n * sizeof(T));
finish = start + n - 1;
end_of_storage = finish;
for(size_type i = 0; i < n; i++)
start[i] = val;
}
template<class T>
hvector<T>::~hvector()
{
if(!empty())
delete[] start;
}
template<class T>
void hvector<T>::insert(T* pos, const_reference val)
{
size_type index = pos - start;
if(full())
resize(size() * 2);
if(index == size() - 1)
start[size()] = val;
else
{
for(size_type i = size() - 1; i >= index; i--)
{
start[i + 1] = start[i];
if(i == 0) // size_t 为无符号整数
break;
}
start[index] = val;
}
finish++;
}
template<class T>
void hvector<T>::push_back(const T& val)
{
insert(finish, val);
}
template<class T>
T hvector<T>::erase(pointer pos)
{
assert(!empty());
size_t index = pos - start;
T ret = start[index];
if(pos != finish)
{
for(size_t i = index; i < size() - 1; i++)
start[i] = start[i + 1];
}
finish--;
return ret;
}
template<class T>
T hvector<T>::pop_back()
{
assert(!empty());
T ret = *finish--;
return ret;
}
template<class T>
void hvector<T>::resize(size_t new_size)
{
size_t old_size = size();
pointer new_start = new T[new_size];
for(size_t i = 0; i < old_size; i++)
new_start[i] = start[i];
start = new_start;
finish = start + old_size - 1;
end_of_storage = start + new_size - 1;
}
template<class T>
void hvector<T>::print()
{
assert(!empty());
for(size_t i = 0; i < size(); i++)
std::cout << start[i] << std::ends;
std::cout << std::endl;
}
void test_hvector()
{
hvector<int> a(5);
a.push_back(1);
a.push_back(2);
a.push_back(3);
a.push_back(4);
a.push_back(5);
a.insert(a.begin(), 8);
a.insert(a.begin(), 7);
a.insert(a.begin(), 6);
a.print();
std::cout << "erase = " << a.erase(a.end()) << std::endl;
a.print();
std::cout << "erase = " << a.erase(a.begin()) << std::endl;
a.print();
std::cout << a[0] << std::endl;
}
}
// #endif | [
"[email protected]"
] | |
5116865889ec1f02bfcc454758a4da4f993368dc | f9445088e71e9b569c85fc0d5ce285bcb78cb9c0 | /windows程序设计/CODE/55网络编程/完成端口/D3DXCreateText/d3dUtility.h | ae92b816c4d42606ac474e1f22090e68badc9f0f | [] | no_license | EasonLLL/Study-Resource-in-WHU-CS | c3caea5d7cbcc12bd64bc7def237bd83651aa6bd | c2ff338ad8fc4e4290f21cf3a071ad69d88eeea2 | refs/heads/master | 2022-04-12T21:49:21.221083 | 2020-03-24T14:37:44 | 2020-03-24T14:37:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,589 | h | //////////////////////////////////////////////////////////////////////////////////////////////////
//
// File: d3dUtility.h
//
// Author: Frank Luna (C) All Rights Reserved
//
// System: AMD Athlon 1800+ XP, 512 DDR, Geforce 3, Windows XP, MSVC++ 7.0
//
// Desc: Provides utility functions for simplifying common tasks.
//
//////////////////////////////////////////////////////////////////////////////////////////////////
#ifndef __d3dUtilityH__
#define __d3dUtilityH__
#include<d3d9.h>
#include<d3dx9.h>
#include <d3dx9mesh.h>
#pragma comment(lib, "d3d9.lib")
#pragma comment(lib, "d3dx9.lib")
#pragma comment(lib, "Winmm.lib")
#include <string>
namespace d3d
{
bool InitD3D(
HINSTANCE hInstance, // [in] Application instance.
int width, int height, // [in] Backbuffer dimensions.
bool windowed, // [in] Windowed (true)or full screen (false).
D3DDEVTYPE deviceType, // [in] HAL or REF
IDirect3DDevice9** device);// [out]The created device.
int EnterMsgLoop(
bool (*ptr_display)(float timeDelta));
LRESULT CALLBACK WndProc(
HWND hwnd,
UINT msg,
WPARAM wParam,
LPARAM lParam);
template<class T> void Release(T t)
{
if( t )
{
t->Release();
t = 0;
}
}
template<class T> void Delete(T t)
{
if( t )
{
delete t;
t = 0;
}
}
const D3DXCOLOR WHITE( D3DCOLOR_XRGB(255, 255, 255) );
const D3DXCOLOR BLACK( D3DCOLOR_XRGB( 0, 0, 0) );
const D3DXCOLOR RED( D3DCOLOR_XRGB(255, 0, 0) );
const D3DXCOLOR GREEN( D3DCOLOR_XRGB( 0, 255, 0) );
const D3DXCOLOR BLUE( D3DCOLOR_XRGB( 0, 0, 255) );
const D3DXCOLOR YELLOW( D3DCOLOR_XRGB(255, 255, 0) );
const D3DXCOLOR CYAN( D3DCOLOR_XRGB( 0, 255, 255) );
const D3DXCOLOR MAGENTA( D3DCOLOR_XRGB(255, 0, 255) );
//
// Lights
//
D3DLIGHT9 InitDirectionalLight(D3DXVECTOR3* direction, D3DXCOLOR* color);
D3DLIGHT9 InitPointLight(D3DXVECTOR3* position, D3DXCOLOR* color);
D3DLIGHT9 InitSpotLight(D3DXVECTOR3* position, D3DXVECTOR3* direction, D3DXCOLOR* color);
//
// Materials
//
D3DMATERIAL9 InitMtrl(D3DXCOLOR a, D3DXCOLOR d, D3DXCOLOR s, D3DXCOLOR e, float p);
const D3DMATERIAL9 WHITE_MTRL = InitMtrl(WHITE, WHITE, WHITE, BLACK, 2.0f);
const D3DMATERIAL9 RED_MTRL = InitMtrl(RED, RED, RED, BLACK, 2.0f);
const D3DMATERIAL9 GREEN_MTRL = InitMtrl(GREEN, GREEN, GREEN, BLACK, 2.0f);
const D3DMATERIAL9 BLUE_MTRL = InitMtrl(BLUE, BLUE, BLUE, BLACK, 2.0f);
const D3DMATERIAL9 YELLOW_MTRL = InitMtrl(YELLOW, YELLOW, YELLOW, BLACK, 2.0f);
}
#endif // __d3dUtilityH__ | [
"[email protected]"
] | |
c6727fb34a3a3a90ed9048234c46f5cc205b1601 | 1552c4ff2dff8d8ab42ab33f3b7e53fe3c246681 | /arduino/Range.h | 10f9dae3ca94689f93ab076a3b23d7d5708a3c60 | [] | no_license | benreid24/Rover | 3d2d0f8f021c6a17495f1232c8368caad3efb7e5 | 68837f1c967040371e7e954b42d8abf038a141e5 | refs/heads/master | 2020-04-08T22:11:05.000570 | 2019-09-29T17:43:02 | 2019-09-29T17:43:02 | 159,775,765 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 657 | h | #ifndef RANGE_H
#define RANGE_H
namespace Range {
enum ProxCheck {
Clear = 0,
UnderSixInches = 1,
UnderFourInches = 2,
ImpactIminent = 3,
Blocked = 4
};
bool init();
/// Returns the range detected by the short range ir sensor in inches
double shortRangeIr();
///Returns the range detected by infrared in inches
/// Samples determines how many measurements to average while excluding outliers
/// Each sample takes 20ms to measure
double longRangeIr(int samples = 6);
/// Uses both short and long range ir to get an accurate distance measurement in inches
double actualRange();
/// Returns a ProxCheck
ProxCheck proximityCheck();
}
#endif
| [
"[email protected]"
] | |
407b79ac1214ffef03d3326355f7578e1eba57b2 | d73cf4af65fffc16c2326281fb7de3344566d6a1 | /TVM/IssueSectionDlg.h | db300116b3d7918d071a4e4704b0bc1d9bdd8457 | [] | no_license | yongchaohu/WH_DEVICE | c3299ddd63ff15ca5ba3fa476cb90eee01ddb541 | 5212d3b15dfcf5a542c0936ebf0e72ed66b85d05 | refs/heads/master | 2020-05-27T20:38:35.562316 | 2019-06-24T03:02:29 | 2019-06-24T03:02:29 | 188,782,571 | 0 | 0 | null | 2019-05-27T06:18:48 | 2019-05-27T06:18:48 | null | GB18030 | C++ | false | false | 1,433 | h | #pragma once
#include "OperationDlg.h"
#include "IssueSvc.h"
#include "ButtonGroup.h"
/**
@brief 售票区段选择画面
*/
//区段的编码0x11FF.;
#define LINE_AREA_CODE 0x11FF
class CIssueSvc;
class CIssueSectionDlg : public CReceptionDlg
{
DECLARE_DYNAMIC(CIssueSectionDlg)
DECLARE_MESSAGE_MAP()
public:
CIssueSectionDlg(CService*);
~CIssueSectionDlg();
enum { IDD = IDD_00102_ISSUE_CONFIRM_DLG };
enum {MAX_TICKET_INFO_ROWS = 13};
typedef enum _tagIssueComponents
{
SUB_PRODUCT_BUTTON = 0x0001,
BEGIN_SECTION_BUTTON = 0x0002,
END_SECTION_BUTTON = 0x0004,
};
public:
void ClearLabelData();
private:
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnActivate(UINT nState, CWnd* pWndOther, BOOL bMinimized);
void UpdateUI();
virtual void preShow();
virtual void showComplete();
LRESULT OnOK(WPARAM wParam,LPARAM lParam);
LRESULT OnCancel(WPARAM wParam,LPARAM lParam);
LRESULT OnSelectSubProduct(WPARAM wParam,LPARAM lParam); // 选择子产品按钮消息
LRESULT OnBeginSectionClick(WPARAM wParam,LPARAM lParam); // 选择开始车站
LRESULT OnEndSectionClick(WPARAM wParam,LPARAM lParam); // 选择结束车站
void InitializeBaseInfo(); // 初始化基本信息区
void InitializeComponents(long lComponents); // 初始化按钮组
void ShowGuideMsg();
private:
CIssueSvc* pSvc;
LABEL_GROUP m_TicketInfoGroup[MAX_TICKET_INFO_ROWS];
}; | [
"[email protected]"
] | |
aaf29ec39bdcf28835061c5ba8b6c80da3826975 | a26ef769b3de60c3325c6f5c8ab833265e7f44c3 | /The Knight V2/The Knight V2/WorldManager.cpp | 1902d00e227d8478dd405d6bd3561464561afdaa | [] | no_license | kimi28/SchoolProject | 6f11e77a792e2a98d3f6d927637bbbca84f975cc | dc51b1ca476700b0df9c3050a4a1f0066f2127f8 | refs/heads/master | 2021-01-20T09:17:11.743780 | 2018-04-26T02:27:35 | 2018-04-26T02:27:35 | 90,233,859 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 721 | cpp | #include "WorldManager.h"
#include "MainCharacter.h"
#include "Monster.h"
WorldManager::WorldManager()
{
}
void WorldManager::Attack(MainCharacter * mainCharacter, Monster * monster)
{
Character* character[count];
character[0] = mainCharacter;
character[1] = monster;
int currentTurn = 0;
while (true) {
Character *currentCharacter = character[currentTurn];
int nextTurn = GetNextTurn(currentTurn);
Character* targetCharacter = character[nextTurn];
if (targetCharacter->GetDead()) {
Sleep(1000);
printf("GameOver\n");
break;
}
else {
Sleep(1000);
currentCharacter->alppyDamage(currentCharacter->GetAttack());
}
currentTurn = nextTurn;
}
}
WorldManager::~WorldManager()
{
}
| [
"[email protected]"
] | |
b9d02f2c6c1cbdb1cadc202560171f854673b821 | e3e6fc037f47527e6bc43f1d1300f39ac8f0aabc | /google/devtools/source/v1/source_context.pb.h | 0869ba58e278e3b40d6f62485e2355128e875946 | [] | no_license | msachtler/bazel-event-protocol-parser | 62c136cb1f60f4ee3316bf15e1e5a5e727445536 | d7424d21aa0dc121acc4d64b427ba365a3581a20 | refs/heads/master | 2021-07-05T15:13:19.502829 | 2017-09-24T04:15:16 | 2017-09-24T04:15:16 | 102,999,437 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 119,069 | h | // Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/devtools/source/v1/source_context.proto
#ifndef PROTOBUF_google_2fdevtools_2fsource_2fv1_2fsource_5fcontext_2eproto__INCLUDED
#define PROTOBUF_google_2fdevtools_2fsource_2fv1_2fsource_5fcontext_2eproto__INCLUDED
#include <string>
#include <google/protobuf/stubs/common.h>
#if GOOGLE_PROTOBUF_VERSION < 3003000
#error This file was generated by a newer version of protoc which is
#error incompatible with your Protocol Buffer headers. Please update
#error your headers.
#endif
#if 3003002 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION
#error This file was generated by an older version of protoc which is
#error incompatible with your Protocol Buffer headers. Please
#error regenerate this file with a newer version of protoc.
#endif
#include <google/protobuf/io/coded_stream.h>
#include <google/protobuf/arena.h>
#include <google/protobuf/arenastring.h>
#include <google/protobuf/generated_message_table_driven.h>
#include <google/protobuf/generated_message_util.h>
#include <google/protobuf/metadata.h>
#include <google/protobuf/message.h>
#include <google/protobuf/repeated_field.h> // IWYU pragma: export
#include <google/protobuf/extension_set.h> // IWYU pragma: export
#include <google/protobuf/map.h> // IWYU pragma: export
#include <google/protobuf/map_field_inl.h>
#include <google/protobuf/generated_enum_reflection.h>
#include <google/protobuf/unknown_field_set.h>
#include "google/api/annotations.pb.h"
// @@protoc_insertion_point(includes)
namespace google {
namespace api {
} // namespace api
namespace devtools {
namespace source {
namespace v1 {
class AliasContext;
class AliasContextDefaultTypeInternal;
extern AliasContextDefaultTypeInternal _AliasContext_default_instance_;
class CloudRepoSourceContext;
class CloudRepoSourceContextDefaultTypeInternal;
extern CloudRepoSourceContextDefaultTypeInternal _CloudRepoSourceContext_default_instance_;
class CloudWorkspaceId;
class CloudWorkspaceIdDefaultTypeInternal;
extern CloudWorkspaceIdDefaultTypeInternal _CloudWorkspaceId_default_instance_;
class CloudWorkspaceSourceContext;
class CloudWorkspaceSourceContextDefaultTypeInternal;
extern CloudWorkspaceSourceContextDefaultTypeInternal _CloudWorkspaceSourceContext_default_instance_;
class ExtendedSourceContext;
class ExtendedSourceContextDefaultTypeInternal;
extern ExtendedSourceContextDefaultTypeInternal _ExtendedSourceContext_default_instance_;
class ExtendedSourceContext_LabelsEntry;
class ExtendedSourceContext_LabelsEntryDefaultTypeInternal;
extern ExtendedSourceContext_LabelsEntryDefaultTypeInternal _ExtendedSourceContext_LabelsEntry_default_instance_;
class GerritSourceContext;
class GerritSourceContextDefaultTypeInternal;
extern GerritSourceContextDefaultTypeInternal _GerritSourceContext_default_instance_;
class GitSourceContext;
class GitSourceContextDefaultTypeInternal;
extern GitSourceContextDefaultTypeInternal _GitSourceContext_default_instance_;
class ProjectRepoId;
class ProjectRepoIdDefaultTypeInternal;
extern ProjectRepoIdDefaultTypeInternal _ProjectRepoId_default_instance_;
class RepoId;
class RepoIdDefaultTypeInternal;
extern RepoIdDefaultTypeInternal _RepoId_default_instance_;
class SourceContext;
class SourceContextDefaultTypeInternal;
extern SourceContextDefaultTypeInternal _SourceContext_default_instance_;
} // namespace v1
} // namespace source
} // namespace devtools
} // namespace google
namespace google {
namespace devtools {
namespace source {
namespace v1 {
namespace protobuf_google_2fdevtools_2fsource_2fv1_2fsource_5fcontext_2eproto {
// Internal implementation detail -- do not call these.
struct TableStruct {
static const ::google::protobuf::internal::ParseTableField entries[];
static const ::google::protobuf::internal::AuxillaryParseTableField aux[];
static const ::google::protobuf::internal::ParseTable schema[];
static const ::google::protobuf::uint32 offsets[];
static void InitDefaultsImpl();
static void Shutdown();
};
void AddDescriptors();
void InitDefaults();
} // namespace protobuf_google_2fdevtools_2fsource_2fv1_2fsource_5fcontext_2eproto
enum AliasContext_Kind {
AliasContext_Kind_ANY = 0,
AliasContext_Kind_FIXED = 1,
AliasContext_Kind_MOVABLE = 2,
AliasContext_Kind_OTHER = 4,
AliasContext_Kind_AliasContext_Kind_INT_MIN_SENTINEL_DO_NOT_USE_ = ::google::protobuf::kint32min,
AliasContext_Kind_AliasContext_Kind_INT_MAX_SENTINEL_DO_NOT_USE_ = ::google::protobuf::kint32max
};
bool AliasContext_Kind_IsValid(int value);
const AliasContext_Kind AliasContext_Kind_Kind_MIN = AliasContext_Kind_ANY;
const AliasContext_Kind AliasContext_Kind_Kind_MAX = AliasContext_Kind_OTHER;
const int AliasContext_Kind_Kind_ARRAYSIZE = AliasContext_Kind_Kind_MAX + 1;
const ::google::protobuf::EnumDescriptor* AliasContext_Kind_descriptor();
inline const ::std::string& AliasContext_Kind_Name(AliasContext_Kind value) {
return ::google::protobuf::internal::NameOfEnum(
AliasContext_Kind_descriptor(), value);
}
inline bool AliasContext_Kind_Parse(
const ::std::string& name, AliasContext_Kind* value) {
return ::google::protobuf::internal::ParseNamedEnum<AliasContext_Kind>(
AliasContext_Kind_descriptor(), name, value);
}
// ===================================================================
class SourceContext : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:google.devtools.source.v1.SourceContext) */ {
public:
SourceContext();
virtual ~SourceContext();
SourceContext(const SourceContext& from);
inline SourceContext& operator=(const SourceContext& from) {
CopyFrom(from);
return *this;
}
static const ::google::protobuf::Descriptor* descriptor();
static const SourceContext& default_instance();
enum ContextCase {
kCloudRepo = 1,
kCloudWorkspace = 2,
kGerrit = 3,
kGit = 6,
CONTEXT_NOT_SET = 0,
};
static inline const SourceContext* internal_default_instance() {
return reinterpret_cast<const SourceContext*>(
&_SourceContext_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
0;
void Swap(SourceContext* other);
// implements Message ----------------------------------------------
inline SourceContext* New() const PROTOBUF_FINAL { return New(NULL); }
SourceContext* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const SourceContext& from);
void MergeFrom(const SourceContext& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(SourceContext* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// .google.devtools.source.v1.CloudRepoSourceContext cloud_repo = 1;
bool has_cloud_repo() const;
void clear_cloud_repo();
static const int kCloudRepoFieldNumber = 1;
const ::google::devtools::source::v1::CloudRepoSourceContext& cloud_repo() const;
::google::devtools::source::v1::CloudRepoSourceContext* mutable_cloud_repo();
::google::devtools::source::v1::CloudRepoSourceContext* release_cloud_repo();
void set_allocated_cloud_repo(::google::devtools::source::v1::CloudRepoSourceContext* cloud_repo);
// .google.devtools.source.v1.CloudWorkspaceSourceContext cloud_workspace = 2;
bool has_cloud_workspace() const;
void clear_cloud_workspace();
static const int kCloudWorkspaceFieldNumber = 2;
const ::google::devtools::source::v1::CloudWorkspaceSourceContext& cloud_workspace() const;
::google::devtools::source::v1::CloudWorkspaceSourceContext* mutable_cloud_workspace();
::google::devtools::source::v1::CloudWorkspaceSourceContext* release_cloud_workspace();
void set_allocated_cloud_workspace(::google::devtools::source::v1::CloudWorkspaceSourceContext* cloud_workspace);
// .google.devtools.source.v1.GerritSourceContext gerrit = 3;
bool has_gerrit() const;
void clear_gerrit();
static const int kGerritFieldNumber = 3;
const ::google::devtools::source::v1::GerritSourceContext& gerrit() const;
::google::devtools::source::v1::GerritSourceContext* mutable_gerrit();
::google::devtools::source::v1::GerritSourceContext* release_gerrit();
void set_allocated_gerrit(::google::devtools::source::v1::GerritSourceContext* gerrit);
// .google.devtools.source.v1.GitSourceContext git = 6;
bool has_git() const;
void clear_git();
static const int kGitFieldNumber = 6;
const ::google::devtools::source::v1::GitSourceContext& git() const;
::google::devtools::source::v1::GitSourceContext* mutable_git();
::google::devtools::source::v1::GitSourceContext* release_git();
void set_allocated_git(::google::devtools::source::v1::GitSourceContext* git);
ContextCase context_case() const;
// @@protoc_insertion_point(class_scope:google.devtools.source.v1.SourceContext)
private:
void set_has_cloud_repo();
void set_has_cloud_workspace();
void set_has_gerrit();
void set_has_git();
inline bool has_context() const;
void clear_context();
inline void clear_has_context();
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
union ContextUnion {
ContextUnion() {}
::google::devtools::source::v1::CloudRepoSourceContext* cloud_repo_;
::google::devtools::source::v1::CloudWorkspaceSourceContext* cloud_workspace_;
::google::devtools::source::v1::GerritSourceContext* gerrit_;
::google::devtools::source::v1::GitSourceContext* git_;
} context_;
mutable int _cached_size_;
::google::protobuf::uint32 _oneof_case_[1];
friend struct protobuf_google_2fdevtools_2fsource_2fv1_2fsource_5fcontext_2eproto::TableStruct;
};
// -------------------------------------------------------------------
// -------------------------------------------------------------------
class ExtendedSourceContext : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:google.devtools.source.v1.ExtendedSourceContext) */ {
public:
ExtendedSourceContext();
virtual ~ExtendedSourceContext();
ExtendedSourceContext(const ExtendedSourceContext& from);
inline ExtendedSourceContext& operator=(const ExtendedSourceContext& from) {
CopyFrom(from);
return *this;
}
static const ::google::protobuf::Descriptor* descriptor();
static const ExtendedSourceContext& default_instance();
static inline const ExtendedSourceContext* internal_default_instance() {
return reinterpret_cast<const ExtendedSourceContext*>(
&_ExtendedSourceContext_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
2;
void Swap(ExtendedSourceContext* other);
// implements Message ----------------------------------------------
inline ExtendedSourceContext* New() const PROTOBUF_FINAL { return New(NULL); }
ExtendedSourceContext* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const ExtendedSourceContext& from);
void MergeFrom(const ExtendedSourceContext& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(ExtendedSourceContext* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// map<string, string> labels = 2;
int labels_size() const;
void clear_labels();
static const int kLabelsFieldNumber = 2;
const ::google::protobuf::Map< ::std::string, ::std::string >&
labels() const;
::google::protobuf::Map< ::std::string, ::std::string >*
mutable_labels();
// .google.devtools.source.v1.SourceContext context = 1;
bool has_context() const;
void clear_context();
static const int kContextFieldNumber = 1;
const ::google::devtools::source::v1::SourceContext& context() const;
::google::devtools::source::v1::SourceContext* mutable_context();
::google::devtools::source::v1::SourceContext* release_context();
void set_allocated_context(::google::devtools::source::v1::SourceContext* context);
// @@protoc_insertion_point(class_scope:google.devtools.source.v1.ExtendedSourceContext)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
public:
class ExtendedSourceContext_LabelsEntry : public ::google::protobuf::internal::MapEntry<ExtendedSourceContext_LabelsEntry,
::std::string, ::std::string,
::google::protobuf::internal::WireFormatLite::TYPE_STRING,
::google::protobuf::internal::WireFormatLite::TYPE_STRING,
0 > {
public:
typedef ::google::protobuf::internal::MapEntry<ExtendedSourceContext_LabelsEntry,
::std::string, ::std::string,
::google::protobuf::internal::WireFormatLite::TYPE_STRING,
::google::protobuf::internal::WireFormatLite::TYPE_STRING,
0 > SuperType;
ExtendedSourceContext_LabelsEntry();
ExtendedSourceContext_LabelsEntry(::google::protobuf::Arena* arena);
void MergeFrom(const ::google::protobuf::Message& other) PROTOBUF_FINAL;
void MergeFrom(const ExtendedSourceContext_LabelsEntry& other);
static const Message* internal_default_instance() { return reinterpret_cast<const Message*>(&_ExtendedSourceContext_LabelsEntry_default_instance_); }
::google::protobuf::Metadata GetMetadata() const;
};
::google::protobuf::internal::MapField<
ExtendedSourceContext_LabelsEntry,
::std::string, ::std::string,
::google::protobuf::internal::WireFormatLite::TYPE_STRING,
::google::protobuf::internal::WireFormatLite::TYPE_STRING,
0 > labels_;
private:
::google::devtools::source::v1::SourceContext* context_;
mutable int _cached_size_;
friend struct protobuf_google_2fdevtools_2fsource_2fv1_2fsource_5fcontext_2eproto::TableStruct;
};
// -------------------------------------------------------------------
class AliasContext : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:google.devtools.source.v1.AliasContext) */ {
public:
AliasContext();
virtual ~AliasContext();
AliasContext(const AliasContext& from);
inline AliasContext& operator=(const AliasContext& from) {
CopyFrom(from);
return *this;
}
static const ::google::protobuf::Descriptor* descriptor();
static const AliasContext& default_instance();
static inline const AliasContext* internal_default_instance() {
return reinterpret_cast<const AliasContext*>(
&_AliasContext_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
3;
void Swap(AliasContext* other);
// implements Message ----------------------------------------------
inline AliasContext* New() const PROTOBUF_FINAL { return New(NULL); }
AliasContext* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const AliasContext& from);
void MergeFrom(const AliasContext& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(AliasContext* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
typedef AliasContext_Kind Kind;
static const Kind ANY =
AliasContext_Kind_ANY;
static const Kind FIXED =
AliasContext_Kind_FIXED;
static const Kind MOVABLE =
AliasContext_Kind_MOVABLE;
static const Kind OTHER =
AliasContext_Kind_OTHER;
static inline bool Kind_IsValid(int value) {
return AliasContext_Kind_IsValid(value);
}
static const Kind Kind_MIN =
AliasContext_Kind_Kind_MIN;
static const Kind Kind_MAX =
AliasContext_Kind_Kind_MAX;
static const int Kind_ARRAYSIZE =
AliasContext_Kind_Kind_ARRAYSIZE;
static inline const ::google::protobuf::EnumDescriptor*
Kind_descriptor() {
return AliasContext_Kind_descriptor();
}
static inline const ::std::string& Kind_Name(Kind value) {
return AliasContext_Kind_Name(value);
}
static inline bool Kind_Parse(const ::std::string& name,
Kind* value) {
return AliasContext_Kind_Parse(name, value);
}
// accessors -------------------------------------------------------
// string name = 2;
void clear_name();
static const int kNameFieldNumber = 2;
const ::std::string& name() const;
void set_name(const ::std::string& value);
#if LANG_CXX11
void set_name(::std::string&& value);
#endif
void set_name(const char* value);
void set_name(const char* value, size_t size);
::std::string* mutable_name();
::std::string* release_name();
void set_allocated_name(::std::string* name);
// .google.devtools.source.v1.AliasContext.Kind kind = 1;
void clear_kind();
static const int kKindFieldNumber = 1;
::google::devtools::source::v1::AliasContext_Kind kind() const;
void set_kind(::google::devtools::source::v1::AliasContext_Kind value);
// @@protoc_insertion_point(class_scope:google.devtools.source.v1.AliasContext)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::internal::ArenaStringPtr name_;
int kind_;
mutable int _cached_size_;
friend struct protobuf_google_2fdevtools_2fsource_2fv1_2fsource_5fcontext_2eproto::TableStruct;
};
// -------------------------------------------------------------------
class CloudRepoSourceContext : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:google.devtools.source.v1.CloudRepoSourceContext) */ {
public:
CloudRepoSourceContext();
virtual ~CloudRepoSourceContext();
CloudRepoSourceContext(const CloudRepoSourceContext& from);
inline CloudRepoSourceContext& operator=(const CloudRepoSourceContext& from) {
CopyFrom(from);
return *this;
}
static const ::google::protobuf::Descriptor* descriptor();
static const CloudRepoSourceContext& default_instance();
enum RevisionCase {
kRevisionId = 2,
kAliasName = 3,
kAliasContext = 4,
REVISION_NOT_SET = 0,
};
static inline const CloudRepoSourceContext* internal_default_instance() {
return reinterpret_cast<const CloudRepoSourceContext*>(
&_CloudRepoSourceContext_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
4;
void Swap(CloudRepoSourceContext* other);
// implements Message ----------------------------------------------
inline CloudRepoSourceContext* New() const PROTOBUF_FINAL { return New(NULL); }
CloudRepoSourceContext* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const CloudRepoSourceContext& from);
void MergeFrom(const CloudRepoSourceContext& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(CloudRepoSourceContext* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// .google.devtools.source.v1.RepoId repo_id = 1;
bool has_repo_id() const;
void clear_repo_id();
static const int kRepoIdFieldNumber = 1;
const ::google::devtools::source::v1::RepoId& repo_id() const;
::google::devtools::source::v1::RepoId* mutable_repo_id();
::google::devtools::source::v1::RepoId* release_repo_id();
void set_allocated_repo_id(::google::devtools::source::v1::RepoId* repo_id);
// string revision_id = 2;
private:
bool has_revision_id() const;
public:
void clear_revision_id();
static const int kRevisionIdFieldNumber = 2;
const ::std::string& revision_id() const;
void set_revision_id(const ::std::string& value);
#if LANG_CXX11
void set_revision_id(::std::string&& value);
#endif
void set_revision_id(const char* value);
void set_revision_id(const char* value, size_t size);
::std::string* mutable_revision_id();
::std::string* release_revision_id();
void set_allocated_revision_id(::std::string* revision_id);
// string alias_name = 3;
private:
bool has_alias_name() const;
public:
void clear_alias_name();
static const int kAliasNameFieldNumber = 3;
const ::std::string& alias_name() const;
void set_alias_name(const ::std::string& value);
#if LANG_CXX11
void set_alias_name(::std::string&& value);
#endif
void set_alias_name(const char* value);
void set_alias_name(const char* value, size_t size);
::std::string* mutable_alias_name();
::std::string* release_alias_name();
void set_allocated_alias_name(::std::string* alias_name);
// .google.devtools.source.v1.AliasContext alias_context = 4;
bool has_alias_context() const;
void clear_alias_context();
static const int kAliasContextFieldNumber = 4;
const ::google::devtools::source::v1::AliasContext& alias_context() const;
::google::devtools::source::v1::AliasContext* mutable_alias_context();
::google::devtools::source::v1::AliasContext* release_alias_context();
void set_allocated_alias_context(::google::devtools::source::v1::AliasContext* alias_context);
RevisionCase revision_case() const;
// @@protoc_insertion_point(class_scope:google.devtools.source.v1.CloudRepoSourceContext)
private:
void set_has_revision_id();
void set_has_alias_name();
void set_has_alias_context();
inline bool has_revision() const;
void clear_revision();
inline void clear_has_revision();
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::devtools::source::v1::RepoId* repo_id_;
union RevisionUnion {
RevisionUnion() {}
::google::protobuf::internal::ArenaStringPtr revision_id_;
::google::protobuf::internal::ArenaStringPtr alias_name_;
::google::devtools::source::v1::AliasContext* alias_context_;
} revision_;
mutable int _cached_size_;
::google::protobuf::uint32 _oneof_case_[1];
friend struct protobuf_google_2fdevtools_2fsource_2fv1_2fsource_5fcontext_2eproto::TableStruct;
};
// -------------------------------------------------------------------
class CloudWorkspaceSourceContext : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:google.devtools.source.v1.CloudWorkspaceSourceContext) */ {
public:
CloudWorkspaceSourceContext();
virtual ~CloudWorkspaceSourceContext();
CloudWorkspaceSourceContext(const CloudWorkspaceSourceContext& from);
inline CloudWorkspaceSourceContext& operator=(const CloudWorkspaceSourceContext& from) {
CopyFrom(from);
return *this;
}
static const ::google::protobuf::Descriptor* descriptor();
static const CloudWorkspaceSourceContext& default_instance();
static inline const CloudWorkspaceSourceContext* internal_default_instance() {
return reinterpret_cast<const CloudWorkspaceSourceContext*>(
&_CloudWorkspaceSourceContext_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
5;
void Swap(CloudWorkspaceSourceContext* other);
// implements Message ----------------------------------------------
inline CloudWorkspaceSourceContext* New() const PROTOBUF_FINAL { return New(NULL); }
CloudWorkspaceSourceContext* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const CloudWorkspaceSourceContext& from);
void MergeFrom(const CloudWorkspaceSourceContext& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(CloudWorkspaceSourceContext* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// string snapshot_id = 2;
void clear_snapshot_id();
static const int kSnapshotIdFieldNumber = 2;
const ::std::string& snapshot_id() const;
void set_snapshot_id(const ::std::string& value);
#if LANG_CXX11
void set_snapshot_id(::std::string&& value);
#endif
void set_snapshot_id(const char* value);
void set_snapshot_id(const char* value, size_t size);
::std::string* mutable_snapshot_id();
::std::string* release_snapshot_id();
void set_allocated_snapshot_id(::std::string* snapshot_id);
// .google.devtools.source.v1.CloudWorkspaceId workspace_id = 1;
bool has_workspace_id() const;
void clear_workspace_id();
static const int kWorkspaceIdFieldNumber = 1;
const ::google::devtools::source::v1::CloudWorkspaceId& workspace_id() const;
::google::devtools::source::v1::CloudWorkspaceId* mutable_workspace_id();
::google::devtools::source::v1::CloudWorkspaceId* release_workspace_id();
void set_allocated_workspace_id(::google::devtools::source::v1::CloudWorkspaceId* workspace_id);
// @@protoc_insertion_point(class_scope:google.devtools.source.v1.CloudWorkspaceSourceContext)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::internal::ArenaStringPtr snapshot_id_;
::google::devtools::source::v1::CloudWorkspaceId* workspace_id_;
mutable int _cached_size_;
friend struct protobuf_google_2fdevtools_2fsource_2fv1_2fsource_5fcontext_2eproto::TableStruct;
};
// -------------------------------------------------------------------
class GerritSourceContext : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:google.devtools.source.v1.GerritSourceContext) */ {
public:
GerritSourceContext();
virtual ~GerritSourceContext();
GerritSourceContext(const GerritSourceContext& from);
inline GerritSourceContext& operator=(const GerritSourceContext& from) {
CopyFrom(from);
return *this;
}
static const ::google::protobuf::Descriptor* descriptor();
static const GerritSourceContext& default_instance();
enum RevisionCase {
kRevisionId = 3,
kAliasName = 4,
kAliasContext = 5,
REVISION_NOT_SET = 0,
};
static inline const GerritSourceContext* internal_default_instance() {
return reinterpret_cast<const GerritSourceContext*>(
&_GerritSourceContext_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
6;
void Swap(GerritSourceContext* other);
// implements Message ----------------------------------------------
inline GerritSourceContext* New() const PROTOBUF_FINAL { return New(NULL); }
GerritSourceContext* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const GerritSourceContext& from);
void MergeFrom(const GerritSourceContext& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(GerritSourceContext* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// string host_uri = 1;
void clear_host_uri();
static const int kHostUriFieldNumber = 1;
const ::std::string& host_uri() const;
void set_host_uri(const ::std::string& value);
#if LANG_CXX11
void set_host_uri(::std::string&& value);
#endif
void set_host_uri(const char* value);
void set_host_uri(const char* value, size_t size);
::std::string* mutable_host_uri();
::std::string* release_host_uri();
void set_allocated_host_uri(::std::string* host_uri);
// string gerrit_project = 2;
void clear_gerrit_project();
static const int kGerritProjectFieldNumber = 2;
const ::std::string& gerrit_project() const;
void set_gerrit_project(const ::std::string& value);
#if LANG_CXX11
void set_gerrit_project(::std::string&& value);
#endif
void set_gerrit_project(const char* value);
void set_gerrit_project(const char* value, size_t size);
::std::string* mutable_gerrit_project();
::std::string* release_gerrit_project();
void set_allocated_gerrit_project(::std::string* gerrit_project);
// string revision_id = 3;
private:
bool has_revision_id() const;
public:
void clear_revision_id();
static const int kRevisionIdFieldNumber = 3;
const ::std::string& revision_id() const;
void set_revision_id(const ::std::string& value);
#if LANG_CXX11
void set_revision_id(::std::string&& value);
#endif
void set_revision_id(const char* value);
void set_revision_id(const char* value, size_t size);
::std::string* mutable_revision_id();
::std::string* release_revision_id();
void set_allocated_revision_id(::std::string* revision_id);
// string alias_name = 4;
private:
bool has_alias_name() const;
public:
void clear_alias_name();
static const int kAliasNameFieldNumber = 4;
const ::std::string& alias_name() const;
void set_alias_name(const ::std::string& value);
#if LANG_CXX11
void set_alias_name(::std::string&& value);
#endif
void set_alias_name(const char* value);
void set_alias_name(const char* value, size_t size);
::std::string* mutable_alias_name();
::std::string* release_alias_name();
void set_allocated_alias_name(::std::string* alias_name);
// .google.devtools.source.v1.AliasContext alias_context = 5;
bool has_alias_context() const;
void clear_alias_context();
static const int kAliasContextFieldNumber = 5;
const ::google::devtools::source::v1::AliasContext& alias_context() const;
::google::devtools::source::v1::AliasContext* mutable_alias_context();
::google::devtools::source::v1::AliasContext* release_alias_context();
void set_allocated_alias_context(::google::devtools::source::v1::AliasContext* alias_context);
RevisionCase revision_case() const;
// @@protoc_insertion_point(class_scope:google.devtools.source.v1.GerritSourceContext)
private:
void set_has_revision_id();
void set_has_alias_name();
void set_has_alias_context();
inline bool has_revision() const;
void clear_revision();
inline void clear_has_revision();
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::internal::ArenaStringPtr host_uri_;
::google::protobuf::internal::ArenaStringPtr gerrit_project_;
union RevisionUnion {
RevisionUnion() {}
::google::protobuf::internal::ArenaStringPtr revision_id_;
::google::protobuf::internal::ArenaStringPtr alias_name_;
::google::devtools::source::v1::AliasContext* alias_context_;
} revision_;
mutable int _cached_size_;
::google::protobuf::uint32 _oneof_case_[1];
friend struct protobuf_google_2fdevtools_2fsource_2fv1_2fsource_5fcontext_2eproto::TableStruct;
};
// -------------------------------------------------------------------
class GitSourceContext : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:google.devtools.source.v1.GitSourceContext) */ {
public:
GitSourceContext();
virtual ~GitSourceContext();
GitSourceContext(const GitSourceContext& from);
inline GitSourceContext& operator=(const GitSourceContext& from) {
CopyFrom(from);
return *this;
}
static const ::google::protobuf::Descriptor* descriptor();
static const GitSourceContext& default_instance();
static inline const GitSourceContext* internal_default_instance() {
return reinterpret_cast<const GitSourceContext*>(
&_GitSourceContext_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
7;
void Swap(GitSourceContext* other);
// implements Message ----------------------------------------------
inline GitSourceContext* New() const PROTOBUF_FINAL { return New(NULL); }
GitSourceContext* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const GitSourceContext& from);
void MergeFrom(const GitSourceContext& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(GitSourceContext* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// string url = 1;
void clear_url();
static const int kUrlFieldNumber = 1;
const ::std::string& url() const;
void set_url(const ::std::string& value);
#if LANG_CXX11
void set_url(::std::string&& value);
#endif
void set_url(const char* value);
void set_url(const char* value, size_t size);
::std::string* mutable_url();
::std::string* release_url();
void set_allocated_url(::std::string* url);
// string revision_id = 2;
void clear_revision_id();
static const int kRevisionIdFieldNumber = 2;
const ::std::string& revision_id() const;
void set_revision_id(const ::std::string& value);
#if LANG_CXX11
void set_revision_id(::std::string&& value);
#endif
void set_revision_id(const char* value);
void set_revision_id(const char* value, size_t size);
::std::string* mutable_revision_id();
::std::string* release_revision_id();
void set_allocated_revision_id(::std::string* revision_id);
// @@protoc_insertion_point(class_scope:google.devtools.source.v1.GitSourceContext)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::internal::ArenaStringPtr url_;
::google::protobuf::internal::ArenaStringPtr revision_id_;
mutable int _cached_size_;
friend struct protobuf_google_2fdevtools_2fsource_2fv1_2fsource_5fcontext_2eproto::TableStruct;
};
// -------------------------------------------------------------------
class RepoId : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:google.devtools.source.v1.RepoId) */ {
public:
RepoId();
virtual ~RepoId();
RepoId(const RepoId& from);
inline RepoId& operator=(const RepoId& from) {
CopyFrom(from);
return *this;
}
static const ::google::protobuf::Descriptor* descriptor();
static const RepoId& default_instance();
enum IdCase {
kProjectRepoId = 1,
kUid = 2,
ID_NOT_SET = 0,
};
static inline const RepoId* internal_default_instance() {
return reinterpret_cast<const RepoId*>(
&_RepoId_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
8;
void Swap(RepoId* other);
// implements Message ----------------------------------------------
inline RepoId* New() const PROTOBUF_FINAL { return New(NULL); }
RepoId* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const RepoId& from);
void MergeFrom(const RepoId& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(RepoId* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// .google.devtools.source.v1.ProjectRepoId project_repo_id = 1;
bool has_project_repo_id() const;
void clear_project_repo_id();
static const int kProjectRepoIdFieldNumber = 1;
const ::google::devtools::source::v1::ProjectRepoId& project_repo_id() const;
::google::devtools::source::v1::ProjectRepoId* mutable_project_repo_id();
::google::devtools::source::v1::ProjectRepoId* release_project_repo_id();
void set_allocated_project_repo_id(::google::devtools::source::v1::ProjectRepoId* project_repo_id);
// string uid = 2;
private:
bool has_uid() const;
public:
void clear_uid();
static const int kUidFieldNumber = 2;
const ::std::string& uid() const;
void set_uid(const ::std::string& value);
#if LANG_CXX11
void set_uid(::std::string&& value);
#endif
void set_uid(const char* value);
void set_uid(const char* value, size_t size);
::std::string* mutable_uid();
::std::string* release_uid();
void set_allocated_uid(::std::string* uid);
IdCase id_case() const;
// @@protoc_insertion_point(class_scope:google.devtools.source.v1.RepoId)
private:
void set_has_project_repo_id();
void set_has_uid();
inline bool has_id() const;
void clear_id();
inline void clear_has_id();
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
union IdUnion {
IdUnion() {}
::google::devtools::source::v1::ProjectRepoId* project_repo_id_;
::google::protobuf::internal::ArenaStringPtr uid_;
} id_;
mutable int _cached_size_;
::google::protobuf::uint32 _oneof_case_[1];
friend struct protobuf_google_2fdevtools_2fsource_2fv1_2fsource_5fcontext_2eproto::TableStruct;
};
// -------------------------------------------------------------------
class ProjectRepoId : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:google.devtools.source.v1.ProjectRepoId) */ {
public:
ProjectRepoId();
virtual ~ProjectRepoId();
ProjectRepoId(const ProjectRepoId& from);
inline ProjectRepoId& operator=(const ProjectRepoId& from) {
CopyFrom(from);
return *this;
}
static const ::google::protobuf::Descriptor* descriptor();
static const ProjectRepoId& default_instance();
static inline const ProjectRepoId* internal_default_instance() {
return reinterpret_cast<const ProjectRepoId*>(
&_ProjectRepoId_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
9;
void Swap(ProjectRepoId* other);
// implements Message ----------------------------------------------
inline ProjectRepoId* New() const PROTOBUF_FINAL { return New(NULL); }
ProjectRepoId* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const ProjectRepoId& from);
void MergeFrom(const ProjectRepoId& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(ProjectRepoId* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// string project_id = 1;
void clear_project_id();
static const int kProjectIdFieldNumber = 1;
const ::std::string& project_id() const;
void set_project_id(const ::std::string& value);
#if LANG_CXX11
void set_project_id(::std::string&& value);
#endif
void set_project_id(const char* value);
void set_project_id(const char* value, size_t size);
::std::string* mutable_project_id();
::std::string* release_project_id();
void set_allocated_project_id(::std::string* project_id);
// string repo_name = 2;
void clear_repo_name();
static const int kRepoNameFieldNumber = 2;
const ::std::string& repo_name() const;
void set_repo_name(const ::std::string& value);
#if LANG_CXX11
void set_repo_name(::std::string&& value);
#endif
void set_repo_name(const char* value);
void set_repo_name(const char* value, size_t size);
::std::string* mutable_repo_name();
::std::string* release_repo_name();
void set_allocated_repo_name(::std::string* repo_name);
// @@protoc_insertion_point(class_scope:google.devtools.source.v1.ProjectRepoId)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::internal::ArenaStringPtr project_id_;
::google::protobuf::internal::ArenaStringPtr repo_name_;
mutable int _cached_size_;
friend struct protobuf_google_2fdevtools_2fsource_2fv1_2fsource_5fcontext_2eproto::TableStruct;
};
// -------------------------------------------------------------------
class CloudWorkspaceId : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:google.devtools.source.v1.CloudWorkspaceId) */ {
public:
CloudWorkspaceId();
virtual ~CloudWorkspaceId();
CloudWorkspaceId(const CloudWorkspaceId& from);
inline CloudWorkspaceId& operator=(const CloudWorkspaceId& from) {
CopyFrom(from);
return *this;
}
static const ::google::protobuf::Descriptor* descriptor();
static const CloudWorkspaceId& default_instance();
static inline const CloudWorkspaceId* internal_default_instance() {
return reinterpret_cast<const CloudWorkspaceId*>(
&_CloudWorkspaceId_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
10;
void Swap(CloudWorkspaceId* other);
// implements Message ----------------------------------------------
inline CloudWorkspaceId* New() const PROTOBUF_FINAL { return New(NULL); }
CloudWorkspaceId* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const CloudWorkspaceId& from);
void MergeFrom(const CloudWorkspaceId& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(CloudWorkspaceId* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// string name = 2;
void clear_name();
static const int kNameFieldNumber = 2;
const ::std::string& name() const;
void set_name(const ::std::string& value);
#if LANG_CXX11
void set_name(::std::string&& value);
#endif
void set_name(const char* value);
void set_name(const char* value, size_t size);
::std::string* mutable_name();
::std::string* release_name();
void set_allocated_name(::std::string* name);
// .google.devtools.source.v1.RepoId repo_id = 1;
bool has_repo_id() const;
void clear_repo_id();
static const int kRepoIdFieldNumber = 1;
const ::google::devtools::source::v1::RepoId& repo_id() const;
::google::devtools::source::v1::RepoId* mutable_repo_id();
::google::devtools::source::v1::RepoId* release_repo_id();
void set_allocated_repo_id(::google::devtools::source::v1::RepoId* repo_id);
// @@protoc_insertion_point(class_scope:google.devtools.source.v1.CloudWorkspaceId)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::internal::ArenaStringPtr name_;
::google::devtools::source::v1::RepoId* repo_id_;
mutable int _cached_size_;
friend struct protobuf_google_2fdevtools_2fsource_2fv1_2fsource_5fcontext_2eproto::TableStruct;
};
// ===================================================================
// ===================================================================
#if !PROTOBUF_INLINE_NOT_IN_HEADERS
// SourceContext
// .google.devtools.source.v1.CloudRepoSourceContext cloud_repo = 1;
inline bool SourceContext::has_cloud_repo() const {
return context_case() == kCloudRepo;
}
inline void SourceContext::set_has_cloud_repo() {
_oneof_case_[0] = kCloudRepo;
}
inline void SourceContext::clear_cloud_repo() {
if (has_cloud_repo()) {
delete context_.cloud_repo_;
clear_has_context();
}
}
inline const ::google::devtools::source::v1::CloudRepoSourceContext& SourceContext::cloud_repo() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.SourceContext.cloud_repo)
return has_cloud_repo()
? *context_.cloud_repo_
: ::google::devtools::source::v1::CloudRepoSourceContext::default_instance();
}
inline ::google::devtools::source::v1::CloudRepoSourceContext* SourceContext::mutable_cloud_repo() {
if (!has_cloud_repo()) {
clear_context();
set_has_cloud_repo();
context_.cloud_repo_ = new ::google::devtools::source::v1::CloudRepoSourceContext;
}
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.SourceContext.cloud_repo)
return context_.cloud_repo_;
}
inline ::google::devtools::source::v1::CloudRepoSourceContext* SourceContext::release_cloud_repo() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.SourceContext.cloud_repo)
if (has_cloud_repo()) {
clear_has_context();
::google::devtools::source::v1::CloudRepoSourceContext* temp = context_.cloud_repo_;
context_.cloud_repo_ = NULL;
return temp;
} else {
return NULL;
}
}
inline void SourceContext::set_allocated_cloud_repo(::google::devtools::source::v1::CloudRepoSourceContext* cloud_repo) {
clear_context();
if (cloud_repo) {
set_has_cloud_repo();
context_.cloud_repo_ = cloud_repo;
}
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.SourceContext.cloud_repo)
}
// .google.devtools.source.v1.CloudWorkspaceSourceContext cloud_workspace = 2;
inline bool SourceContext::has_cloud_workspace() const {
return context_case() == kCloudWorkspace;
}
inline void SourceContext::set_has_cloud_workspace() {
_oneof_case_[0] = kCloudWorkspace;
}
inline void SourceContext::clear_cloud_workspace() {
if (has_cloud_workspace()) {
delete context_.cloud_workspace_;
clear_has_context();
}
}
inline const ::google::devtools::source::v1::CloudWorkspaceSourceContext& SourceContext::cloud_workspace() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.SourceContext.cloud_workspace)
return has_cloud_workspace()
? *context_.cloud_workspace_
: ::google::devtools::source::v1::CloudWorkspaceSourceContext::default_instance();
}
inline ::google::devtools::source::v1::CloudWorkspaceSourceContext* SourceContext::mutable_cloud_workspace() {
if (!has_cloud_workspace()) {
clear_context();
set_has_cloud_workspace();
context_.cloud_workspace_ = new ::google::devtools::source::v1::CloudWorkspaceSourceContext;
}
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.SourceContext.cloud_workspace)
return context_.cloud_workspace_;
}
inline ::google::devtools::source::v1::CloudWorkspaceSourceContext* SourceContext::release_cloud_workspace() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.SourceContext.cloud_workspace)
if (has_cloud_workspace()) {
clear_has_context();
::google::devtools::source::v1::CloudWorkspaceSourceContext* temp = context_.cloud_workspace_;
context_.cloud_workspace_ = NULL;
return temp;
} else {
return NULL;
}
}
inline void SourceContext::set_allocated_cloud_workspace(::google::devtools::source::v1::CloudWorkspaceSourceContext* cloud_workspace) {
clear_context();
if (cloud_workspace) {
set_has_cloud_workspace();
context_.cloud_workspace_ = cloud_workspace;
}
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.SourceContext.cloud_workspace)
}
// .google.devtools.source.v1.GerritSourceContext gerrit = 3;
inline bool SourceContext::has_gerrit() const {
return context_case() == kGerrit;
}
inline void SourceContext::set_has_gerrit() {
_oneof_case_[0] = kGerrit;
}
inline void SourceContext::clear_gerrit() {
if (has_gerrit()) {
delete context_.gerrit_;
clear_has_context();
}
}
inline const ::google::devtools::source::v1::GerritSourceContext& SourceContext::gerrit() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.SourceContext.gerrit)
return has_gerrit()
? *context_.gerrit_
: ::google::devtools::source::v1::GerritSourceContext::default_instance();
}
inline ::google::devtools::source::v1::GerritSourceContext* SourceContext::mutable_gerrit() {
if (!has_gerrit()) {
clear_context();
set_has_gerrit();
context_.gerrit_ = new ::google::devtools::source::v1::GerritSourceContext;
}
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.SourceContext.gerrit)
return context_.gerrit_;
}
inline ::google::devtools::source::v1::GerritSourceContext* SourceContext::release_gerrit() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.SourceContext.gerrit)
if (has_gerrit()) {
clear_has_context();
::google::devtools::source::v1::GerritSourceContext* temp = context_.gerrit_;
context_.gerrit_ = NULL;
return temp;
} else {
return NULL;
}
}
inline void SourceContext::set_allocated_gerrit(::google::devtools::source::v1::GerritSourceContext* gerrit) {
clear_context();
if (gerrit) {
set_has_gerrit();
context_.gerrit_ = gerrit;
}
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.SourceContext.gerrit)
}
// .google.devtools.source.v1.GitSourceContext git = 6;
inline bool SourceContext::has_git() const {
return context_case() == kGit;
}
inline void SourceContext::set_has_git() {
_oneof_case_[0] = kGit;
}
inline void SourceContext::clear_git() {
if (has_git()) {
delete context_.git_;
clear_has_context();
}
}
inline const ::google::devtools::source::v1::GitSourceContext& SourceContext::git() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.SourceContext.git)
return has_git()
? *context_.git_
: ::google::devtools::source::v1::GitSourceContext::default_instance();
}
inline ::google::devtools::source::v1::GitSourceContext* SourceContext::mutable_git() {
if (!has_git()) {
clear_context();
set_has_git();
context_.git_ = new ::google::devtools::source::v1::GitSourceContext;
}
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.SourceContext.git)
return context_.git_;
}
inline ::google::devtools::source::v1::GitSourceContext* SourceContext::release_git() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.SourceContext.git)
if (has_git()) {
clear_has_context();
::google::devtools::source::v1::GitSourceContext* temp = context_.git_;
context_.git_ = NULL;
return temp;
} else {
return NULL;
}
}
inline void SourceContext::set_allocated_git(::google::devtools::source::v1::GitSourceContext* git) {
clear_context();
if (git) {
set_has_git();
context_.git_ = git;
}
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.SourceContext.git)
}
inline bool SourceContext::has_context() const {
return context_case() != CONTEXT_NOT_SET;
}
inline void SourceContext::clear_has_context() {
_oneof_case_[0] = CONTEXT_NOT_SET;
}
inline SourceContext::ContextCase SourceContext::context_case() const {
return SourceContext::ContextCase(_oneof_case_[0]);
}
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// ExtendedSourceContext
// .google.devtools.source.v1.SourceContext context = 1;
inline bool ExtendedSourceContext::has_context() const {
return this != internal_default_instance() && context_ != NULL;
}
inline void ExtendedSourceContext::clear_context() {
if (GetArenaNoVirtual() == NULL && context_ != NULL) delete context_;
context_ = NULL;
}
inline const ::google::devtools::source::v1::SourceContext& ExtendedSourceContext::context() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.ExtendedSourceContext.context)
return context_ != NULL ? *context_
: *::google::devtools::source::v1::SourceContext::internal_default_instance();
}
inline ::google::devtools::source::v1::SourceContext* ExtendedSourceContext::mutable_context() {
if (context_ == NULL) {
context_ = new ::google::devtools::source::v1::SourceContext;
}
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.ExtendedSourceContext.context)
return context_;
}
inline ::google::devtools::source::v1::SourceContext* ExtendedSourceContext::release_context() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.ExtendedSourceContext.context)
::google::devtools::source::v1::SourceContext* temp = context_;
context_ = NULL;
return temp;
}
inline void ExtendedSourceContext::set_allocated_context(::google::devtools::source::v1::SourceContext* context) {
delete context_;
context_ = context;
if (context) {
} else {
}
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.ExtendedSourceContext.context)
}
// map<string, string> labels = 2;
inline int ExtendedSourceContext::labels_size() const {
return labels_.size();
}
inline void ExtendedSourceContext::clear_labels() {
labels_.Clear();
}
inline const ::google::protobuf::Map< ::std::string, ::std::string >&
ExtendedSourceContext::labels() const {
// @@protoc_insertion_point(field_map:google.devtools.source.v1.ExtendedSourceContext.labels)
return labels_.GetMap();
}
inline ::google::protobuf::Map< ::std::string, ::std::string >*
ExtendedSourceContext::mutable_labels() {
// @@protoc_insertion_point(field_mutable_map:google.devtools.source.v1.ExtendedSourceContext.labels)
return labels_.MutableMap();
}
// -------------------------------------------------------------------
// AliasContext
// .google.devtools.source.v1.AliasContext.Kind kind = 1;
inline void AliasContext::clear_kind() {
kind_ = 0;
}
inline ::google::devtools::source::v1::AliasContext_Kind AliasContext::kind() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.AliasContext.kind)
return static_cast< ::google::devtools::source::v1::AliasContext_Kind >(kind_);
}
inline void AliasContext::set_kind(::google::devtools::source::v1::AliasContext_Kind value) {
kind_ = value;
// @@protoc_insertion_point(field_set:google.devtools.source.v1.AliasContext.kind)
}
// string name = 2;
inline void AliasContext::clear_name() {
name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline const ::std::string& AliasContext::name() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.AliasContext.name)
return name_.GetNoArena();
}
inline void AliasContext::set_name(const ::std::string& value) {
name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:google.devtools.source.v1.AliasContext.name)
}
#if LANG_CXX11
inline void AliasContext::set_name(::std::string&& value) {
name_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:google.devtools.source.v1.AliasContext.name)
}
#endif
inline void AliasContext::set_name(const char* value) {
GOOGLE_DCHECK(value != NULL);
name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
// @@protoc_insertion_point(field_set_char:google.devtools.source.v1.AliasContext.name)
}
inline void AliasContext::set_name(const char* value, size_t size) {
name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:google.devtools.source.v1.AliasContext.name)
}
inline ::std::string* AliasContext::mutable_name() {
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.AliasContext.name)
return name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* AliasContext::release_name() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.AliasContext.name)
return name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline void AliasContext::set_allocated_name(::std::string* name) {
if (name != NULL) {
} else {
}
name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), name);
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.AliasContext.name)
}
// -------------------------------------------------------------------
// CloudRepoSourceContext
// .google.devtools.source.v1.RepoId repo_id = 1;
inline bool CloudRepoSourceContext::has_repo_id() const {
return this != internal_default_instance() && repo_id_ != NULL;
}
inline void CloudRepoSourceContext::clear_repo_id() {
if (GetArenaNoVirtual() == NULL && repo_id_ != NULL) delete repo_id_;
repo_id_ = NULL;
}
inline const ::google::devtools::source::v1::RepoId& CloudRepoSourceContext::repo_id() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.CloudRepoSourceContext.repo_id)
return repo_id_ != NULL ? *repo_id_
: *::google::devtools::source::v1::RepoId::internal_default_instance();
}
inline ::google::devtools::source::v1::RepoId* CloudRepoSourceContext::mutable_repo_id() {
if (repo_id_ == NULL) {
repo_id_ = new ::google::devtools::source::v1::RepoId;
}
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.CloudRepoSourceContext.repo_id)
return repo_id_;
}
inline ::google::devtools::source::v1::RepoId* CloudRepoSourceContext::release_repo_id() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.CloudRepoSourceContext.repo_id)
::google::devtools::source::v1::RepoId* temp = repo_id_;
repo_id_ = NULL;
return temp;
}
inline void CloudRepoSourceContext::set_allocated_repo_id(::google::devtools::source::v1::RepoId* repo_id) {
delete repo_id_;
repo_id_ = repo_id;
if (repo_id) {
} else {
}
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.CloudRepoSourceContext.repo_id)
}
// string revision_id = 2;
inline bool CloudRepoSourceContext::has_revision_id() const {
return revision_case() == kRevisionId;
}
inline void CloudRepoSourceContext::set_has_revision_id() {
_oneof_case_[0] = kRevisionId;
}
inline void CloudRepoSourceContext::clear_revision_id() {
if (has_revision_id()) {
revision_.revision_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
clear_has_revision();
}
}
inline const ::std::string& CloudRepoSourceContext::revision_id() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.CloudRepoSourceContext.revision_id)
if (has_revision_id()) {
return revision_.revision_id_.GetNoArena();
}
return *&::google::protobuf::internal::GetEmptyStringAlreadyInited();
}
inline void CloudRepoSourceContext::set_revision_id(const ::std::string& value) {
// @@protoc_insertion_point(field_set:google.devtools.source.v1.CloudRepoSourceContext.revision_id)
if (!has_revision_id()) {
clear_revision();
set_has_revision_id();
revision_.revision_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
revision_.revision_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:google.devtools.source.v1.CloudRepoSourceContext.revision_id)
}
#if LANG_CXX11
inline void CloudRepoSourceContext::set_revision_id(::std::string&& value) {
// @@protoc_insertion_point(field_set:google.devtools.source.v1.CloudRepoSourceContext.revision_id)
if (!has_revision_id()) {
clear_revision();
set_has_revision_id();
revision_.revision_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
revision_.revision_id_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:google.devtools.source.v1.CloudRepoSourceContext.revision_id)
}
#endif
inline void CloudRepoSourceContext::set_revision_id(const char* value) {
GOOGLE_DCHECK(value != NULL);
if (!has_revision_id()) {
clear_revision();
set_has_revision_id();
revision_.revision_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
revision_.revision_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(value));
// @@protoc_insertion_point(field_set_char:google.devtools.source.v1.CloudRepoSourceContext.revision_id)
}
inline void CloudRepoSourceContext::set_revision_id(const char* value, size_t size) {
if (!has_revision_id()) {
clear_revision();
set_has_revision_id();
revision_.revision_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
revision_.revision_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(
reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:google.devtools.source.v1.CloudRepoSourceContext.revision_id)
}
inline ::std::string* CloudRepoSourceContext::mutable_revision_id() {
if (!has_revision_id()) {
clear_revision();
set_has_revision_id();
revision_.revision_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.CloudRepoSourceContext.revision_id)
return revision_.revision_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* CloudRepoSourceContext::release_revision_id() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.CloudRepoSourceContext.revision_id)
if (has_revision_id()) {
clear_has_revision();
return revision_.revision_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
} else {
return NULL;
}
}
inline void CloudRepoSourceContext::set_allocated_revision_id(::std::string* revision_id) {
if (!has_revision_id()) {
revision_.revision_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
clear_revision();
if (revision_id != NULL) {
set_has_revision_id();
revision_.revision_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
revision_id);
}
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.CloudRepoSourceContext.revision_id)
}
// string alias_name = 3;
inline bool CloudRepoSourceContext::has_alias_name() const {
return revision_case() == kAliasName;
}
inline void CloudRepoSourceContext::set_has_alias_name() {
_oneof_case_[0] = kAliasName;
}
inline void CloudRepoSourceContext::clear_alias_name() {
if (has_alias_name()) {
revision_.alias_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
clear_has_revision();
}
}
inline const ::std::string& CloudRepoSourceContext::alias_name() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.CloudRepoSourceContext.alias_name)
if (has_alias_name()) {
return revision_.alias_name_.GetNoArena();
}
return *&::google::protobuf::internal::GetEmptyStringAlreadyInited();
}
inline void CloudRepoSourceContext::set_alias_name(const ::std::string& value) {
// @@protoc_insertion_point(field_set:google.devtools.source.v1.CloudRepoSourceContext.alias_name)
if (!has_alias_name()) {
clear_revision();
set_has_alias_name();
revision_.alias_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
revision_.alias_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:google.devtools.source.v1.CloudRepoSourceContext.alias_name)
}
#if LANG_CXX11
inline void CloudRepoSourceContext::set_alias_name(::std::string&& value) {
// @@protoc_insertion_point(field_set:google.devtools.source.v1.CloudRepoSourceContext.alias_name)
if (!has_alias_name()) {
clear_revision();
set_has_alias_name();
revision_.alias_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
revision_.alias_name_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:google.devtools.source.v1.CloudRepoSourceContext.alias_name)
}
#endif
inline void CloudRepoSourceContext::set_alias_name(const char* value) {
GOOGLE_DCHECK(value != NULL);
if (!has_alias_name()) {
clear_revision();
set_has_alias_name();
revision_.alias_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
revision_.alias_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(value));
// @@protoc_insertion_point(field_set_char:google.devtools.source.v1.CloudRepoSourceContext.alias_name)
}
inline void CloudRepoSourceContext::set_alias_name(const char* value, size_t size) {
if (!has_alias_name()) {
clear_revision();
set_has_alias_name();
revision_.alias_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
revision_.alias_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(
reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:google.devtools.source.v1.CloudRepoSourceContext.alias_name)
}
inline ::std::string* CloudRepoSourceContext::mutable_alias_name() {
if (!has_alias_name()) {
clear_revision();
set_has_alias_name();
revision_.alias_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.CloudRepoSourceContext.alias_name)
return revision_.alias_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* CloudRepoSourceContext::release_alias_name() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.CloudRepoSourceContext.alias_name)
if (has_alias_name()) {
clear_has_revision();
return revision_.alias_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
} else {
return NULL;
}
}
inline void CloudRepoSourceContext::set_allocated_alias_name(::std::string* alias_name) {
if (!has_alias_name()) {
revision_.alias_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
clear_revision();
if (alias_name != NULL) {
set_has_alias_name();
revision_.alias_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
alias_name);
}
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.CloudRepoSourceContext.alias_name)
}
// .google.devtools.source.v1.AliasContext alias_context = 4;
inline bool CloudRepoSourceContext::has_alias_context() const {
return revision_case() == kAliasContext;
}
inline void CloudRepoSourceContext::set_has_alias_context() {
_oneof_case_[0] = kAliasContext;
}
inline void CloudRepoSourceContext::clear_alias_context() {
if (has_alias_context()) {
delete revision_.alias_context_;
clear_has_revision();
}
}
inline const ::google::devtools::source::v1::AliasContext& CloudRepoSourceContext::alias_context() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.CloudRepoSourceContext.alias_context)
return has_alias_context()
? *revision_.alias_context_
: ::google::devtools::source::v1::AliasContext::default_instance();
}
inline ::google::devtools::source::v1::AliasContext* CloudRepoSourceContext::mutable_alias_context() {
if (!has_alias_context()) {
clear_revision();
set_has_alias_context();
revision_.alias_context_ = new ::google::devtools::source::v1::AliasContext;
}
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.CloudRepoSourceContext.alias_context)
return revision_.alias_context_;
}
inline ::google::devtools::source::v1::AliasContext* CloudRepoSourceContext::release_alias_context() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.CloudRepoSourceContext.alias_context)
if (has_alias_context()) {
clear_has_revision();
::google::devtools::source::v1::AliasContext* temp = revision_.alias_context_;
revision_.alias_context_ = NULL;
return temp;
} else {
return NULL;
}
}
inline void CloudRepoSourceContext::set_allocated_alias_context(::google::devtools::source::v1::AliasContext* alias_context) {
clear_revision();
if (alias_context) {
set_has_alias_context();
revision_.alias_context_ = alias_context;
}
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.CloudRepoSourceContext.alias_context)
}
inline bool CloudRepoSourceContext::has_revision() const {
return revision_case() != REVISION_NOT_SET;
}
inline void CloudRepoSourceContext::clear_has_revision() {
_oneof_case_[0] = REVISION_NOT_SET;
}
inline CloudRepoSourceContext::RevisionCase CloudRepoSourceContext::revision_case() const {
return CloudRepoSourceContext::RevisionCase(_oneof_case_[0]);
}
// -------------------------------------------------------------------
// CloudWorkspaceSourceContext
// .google.devtools.source.v1.CloudWorkspaceId workspace_id = 1;
inline bool CloudWorkspaceSourceContext::has_workspace_id() const {
return this != internal_default_instance() && workspace_id_ != NULL;
}
inline void CloudWorkspaceSourceContext::clear_workspace_id() {
if (GetArenaNoVirtual() == NULL && workspace_id_ != NULL) delete workspace_id_;
workspace_id_ = NULL;
}
inline const ::google::devtools::source::v1::CloudWorkspaceId& CloudWorkspaceSourceContext::workspace_id() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.CloudWorkspaceSourceContext.workspace_id)
return workspace_id_ != NULL ? *workspace_id_
: *::google::devtools::source::v1::CloudWorkspaceId::internal_default_instance();
}
inline ::google::devtools::source::v1::CloudWorkspaceId* CloudWorkspaceSourceContext::mutable_workspace_id() {
if (workspace_id_ == NULL) {
workspace_id_ = new ::google::devtools::source::v1::CloudWorkspaceId;
}
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.CloudWorkspaceSourceContext.workspace_id)
return workspace_id_;
}
inline ::google::devtools::source::v1::CloudWorkspaceId* CloudWorkspaceSourceContext::release_workspace_id() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.CloudWorkspaceSourceContext.workspace_id)
::google::devtools::source::v1::CloudWorkspaceId* temp = workspace_id_;
workspace_id_ = NULL;
return temp;
}
inline void CloudWorkspaceSourceContext::set_allocated_workspace_id(::google::devtools::source::v1::CloudWorkspaceId* workspace_id) {
delete workspace_id_;
workspace_id_ = workspace_id;
if (workspace_id) {
} else {
}
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.CloudWorkspaceSourceContext.workspace_id)
}
// string snapshot_id = 2;
inline void CloudWorkspaceSourceContext::clear_snapshot_id() {
snapshot_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline const ::std::string& CloudWorkspaceSourceContext::snapshot_id() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.CloudWorkspaceSourceContext.snapshot_id)
return snapshot_id_.GetNoArena();
}
inline void CloudWorkspaceSourceContext::set_snapshot_id(const ::std::string& value) {
snapshot_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:google.devtools.source.v1.CloudWorkspaceSourceContext.snapshot_id)
}
#if LANG_CXX11
inline void CloudWorkspaceSourceContext::set_snapshot_id(::std::string&& value) {
snapshot_id_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:google.devtools.source.v1.CloudWorkspaceSourceContext.snapshot_id)
}
#endif
inline void CloudWorkspaceSourceContext::set_snapshot_id(const char* value) {
GOOGLE_DCHECK(value != NULL);
snapshot_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
// @@protoc_insertion_point(field_set_char:google.devtools.source.v1.CloudWorkspaceSourceContext.snapshot_id)
}
inline void CloudWorkspaceSourceContext::set_snapshot_id(const char* value, size_t size) {
snapshot_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:google.devtools.source.v1.CloudWorkspaceSourceContext.snapshot_id)
}
inline ::std::string* CloudWorkspaceSourceContext::mutable_snapshot_id() {
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.CloudWorkspaceSourceContext.snapshot_id)
return snapshot_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* CloudWorkspaceSourceContext::release_snapshot_id() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.CloudWorkspaceSourceContext.snapshot_id)
return snapshot_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline void CloudWorkspaceSourceContext::set_allocated_snapshot_id(::std::string* snapshot_id) {
if (snapshot_id != NULL) {
} else {
}
snapshot_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), snapshot_id);
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.CloudWorkspaceSourceContext.snapshot_id)
}
// -------------------------------------------------------------------
// GerritSourceContext
// string host_uri = 1;
inline void GerritSourceContext::clear_host_uri() {
host_uri_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline const ::std::string& GerritSourceContext::host_uri() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.GerritSourceContext.host_uri)
return host_uri_.GetNoArena();
}
inline void GerritSourceContext::set_host_uri(const ::std::string& value) {
host_uri_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:google.devtools.source.v1.GerritSourceContext.host_uri)
}
#if LANG_CXX11
inline void GerritSourceContext::set_host_uri(::std::string&& value) {
host_uri_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:google.devtools.source.v1.GerritSourceContext.host_uri)
}
#endif
inline void GerritSourceContext::set_host_uri(const char* value) {
GOOGLE_DCHECK(value != NULL);
host_uri_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
// @@protoc_insertion_point(field_set_char:google.devtools.source.v1.GerritSourceContext.host_uri)
}
inline void GerritSourceContext::set_host_uri(const char* value, size_t size) {
host_uri_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:google.devtools.source.v1.GerritSourceContext.host_uri)
}
inline ::std::string* GerritSourceContext::mutable_host_uri() {
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.GerritSourceContext.host_uri)
return host_uri_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* GerritSourceContext::release_host_uri() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.GerritSourceContext.host_uri)
return host_uri_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline void GerritSourceContext::set_allocated_host_uri(::std::string* host_uri) {
if (host_uri != NULL) {
} else {
}
host_uri_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), host_uri);
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.GerritSourceContext.host_uri)
}
// string gerrit_project = 2;
inline void GerritSourceContext::clear_gerrit_project() {
gerrit_project_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline const ::std::string& GerritSourceContext::gerrit_project() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.GerritSourceContext.gerrit_project)
return gerrit_project_.GetNoArena();
}
inline void GerritSourceContext::set_gerrit_project(const ::std::string& value) {
gerrit_project_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:google.devtools.source.v1.GerritSourceContext.gerrit_project)
}
#if LANG_CXX11
inline void GerritSourceContext::set_gerrit_project(::std::string&& value) {
gerrit_project_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:google.devtools.source.v1.GerritSourceContext.gerrit_project)
}
#endif
inline void GerritSourceContext::set_gerrit_project(const char* value) {
GOOGLE_DCHECK(value != NULL);
gerrit_project_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
// @@protoc_insertion_point(field_set_char:google.devtools.source.v1.GerritSourceContext.gerrit_project)
}
inline void GerritSourceContext::set_gerrit_project(const char* value, size_t size) {
gerrit_project_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:google.devtools.source.v1.GerritSourceContext.gerrit_project)
}
inline ::std::string* GerritSourceContext::mutable_gerrit_project() {
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.GerritSourceContext.gerrit_project)
return gerrit_project_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* GerritSourceContext::release_gerrit_project() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.GerritSourceContext.gerrit_project)
return gerrit_project_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline void GerritSourceContext::set_allocated_gerrit_project(::std::string* gerrit_project) {
if (gerrit_project != NULL) {
} else {
}
gerrit_project_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), gerrit_project);
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.GerritSourceContext.gerrit_project)
}
// string revision_id = 3;
inline bool GerritSourceContext::has_revision_id() const {
return revision_case() == kRevisionId;
}
inline void GerritSourceContext::set_has_revision_id() {
_oneof_case_[0] = kRevisionId;
}
inline void GerritSourceContext::clear_revision_id() {
if (has_revision_id()) {
revision_.revision_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
clear_has_revision();
}
}
inline const ::std::string& GerritSourceContext::revision_id() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.GerritSourceContext.revision_id)
if (has_revision_id()) {
return revision_.revision_id_.GetNoArena();
}
return *&::google::protobuf::internal::GetEmptyStringAlreadyInited();
}
inline void GerritSourceContext::set_revision_id(const ::std::string& value) {
// @@protoc_insertion_point(field_set:google.devtools.source.v1.GerritSourceContext.revision_id)
if (!has_revision_id()) {
clear_revision();
set_has_revision_id();
revision_.revision_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
revision_.revision_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:google.devtools.source.v1.GerritSourceContext.revision_id)
}
#if LANG_CXX11
inline void GerritSourceContext::set_revision_id(::std::string&& value) {
// @@protoc_insertion_point(field_set:google.devtools.source.v1.GerritSourceContext.revision_id)
if (!has_revision_id()) {
clear_revision();
set_has_revision_id();
revision_.revision_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
revision_.revision_id_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:google.devtools.source.v1.GerritSourceContext.revision_id)
}
#endif
inline void GerritSourceContext::set_revision_id(const char* value) {
GOOGLE_DCHECK(value != NULL);
if (!has_revision_id()) {
clear_revision();
set_has_revision_id();
revision_.revision_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
revision_.revision_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(value));
// @@protoc_insertion_point(field_set_char:google.devtools.source.v1.GerritSourceContext.revision_id)
}
inline void GerritSourceContext::set_revision_id(const char* value, size_t size) {
if (!has_revision_id()) {
clear_revision();
set_has_revision_id();
revision_.revision_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
revision_.revision_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(
reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:google.devtools.source.v1.GerritSourceContext.revision_id)
}
inline ::std::string* GerritSourceContext::mutable_revision_id() {
if (!has_revision_id()) {
clear_revision();
set_has_revision_id();
revision_.revision_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.GerritSourceContext.revision_id)
return revision_.revision_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* GerritSourceContext::release_revision_id() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.GerritSourceContext.revision_id)
if (has_revision_id()) {
clear_has_revision();
return revision_.revision_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
} else {
return NULL;
}
}
inline void GerritSourceContext::set_allocated_revision_id(::std::string* revision_id) {
if (!has_revision_id()) {
revision_.revision_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
clear_revision();
if (revision_id != NULL) {
set_has_revision_id();
revision_.revision_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
revision_id);
}
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.GerritSourceContext.revision_id)
}
// string alias_name = 4;
inline bool GerritSourceContext::has_alias_name() const {
return revision_case() == kAliasName;
}
inline void GerritSourceContext::set_has_alias_name() {
_oneof_case_[0] = kAliasName;
}
inline void GerritSourceContext::clear_alias_name() {
if (has_alias_name()) {
revision_.alias_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
clear_has_revision();
}
}
inline const ::std::string& GerritSourceContext::alias_name() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.GerritSourceContext.alias_name)
if (has_alias_name()) {
return revision_.alias_name_.GetNoArena();
}
return *&::google::protobuf::internal::GetEmptyStringAlreadyInited();
}
inline void GerritSourceContext::set_alias_name(const ::std::string& value) {
// @@protoc_insertion_point(field_set:google.devtools.source.v1.GerritSourceContext.alias_name)
if (!has_alias_name()) {
clear_revision();
set_has_alias_name();
revision_.alias_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
revision_.alias_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:google.devtools.source.v1.GerritSourceContext.alias_name)
}
#if LANG_CXX11
inline void GerritSourceContext::set_alias_name(::std::string&& value) {
// @@protoc_insertion_point(field_set:google.devtools.source.v1.GerritSourceContext.alias_name)
if (!has_alias_name()) {
clear_revision();
set_has_alias_name();
revision_.alias_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
revision_.alias_name_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:google.devtools.source.v1.GerritSourceContext.alias_name)
}
#endif
inline void GerritSourceContext::set_alias_name(const char* value) {
GOOGLE_DCHECK(value != NULL);
if (!has_alias_name()) {
clear_revision();
set_has_alias_name();
revision_.alias_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
revision_.alias_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(value));
// @@protoc_insertion_point(field_set_char:google.devtools.source.v1.GerritSourceContext.alias_name)
}
inline void GerritSourceContext::set_alias_name(const char* value, size_t size) {
if (!has_alias_name()) {
clear_revision();
set_has_alias_name();
revision_.alias_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
revision_.alias_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(
reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:google.devtools.source.v1.GerritSourceContext.alias_name)
}
inline ::std::string* GerritSourceContext::mutable_alias_name() {
if (!has_alias_name()) {
clear_revision();
set_has_alias_name();
revision_.alias_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.GerritSourceContext.alias_name)
return revision_.alias_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* GerritSourceContext::release_alias_name() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.GerritSourceContext.alias_name)
if (has_alias_name()) {
clear_has_revision();
return revision_.alias_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
} else {
return NULL;
}
}
inline void GerritSourceContext::set_allocated_alias_name(::std::string* alias_name) {
if (!has_alias_name()) {
revision_.alias_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
clear_revision();
if (alias_name != NULL) {
set_has_alias_name();
revision_.alias_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
alias_name);
}
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.GerritSourceContext.alias_name)
}
// .google.devtools.source.v1.AliasContext alias_context = 5;
inline bool GerritSourceContext::has_alias_context() const {
return revision_case() == kAliasContext;
}
inline void GerritSourceContext::set_has_alias_context() {
_oneof_case_[0] = kAliasContext;
}
inline void GerritSourceContext::clear_alias_context() {
if (has_alias_context()) {
delete revision_.alias_context_;
clear_has_revision();
}
}
inline const ::google::devtools::source::v1::AliasContext& GerritSourceContext::alias_context() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.GerritSourceContext.alias_context)
return has_alias_context()
? *revision_.alias_context_
: ::google::devtools::source::v1::AliasContext::default_instance();
}
inline ::google::devtools::source::v1::AliasContext* GerritSourceContext::mutable_alias_context() {
if (!has_alias_context()) {
clear_revision();
set_has_alias_context();
revision_.alias_context_ = new ::google::devtools::source::v1::AliasContext;
}
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.GerritSourceContext.alias_context)
return revision_.alias_context_;
}
inline ::google::devtools::source::v1::AliasContext* GerritSourceContext::release_alias_context() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.GerritSourceContext.alias_context)
if (has_alias_context()) {
clear_has_revision();
::google::devtools::source::v1::AliasContext* temp = revision_.alias_context_;
revision_.alias_context_ = NULL;
return temp;
} else {
return NULL;
}
}
inline void GerritSourceContext::set_allocated_alias_context(::google::devtools::source::v1::AliasContext* alias_context) {
clear_revision();
if (alias_context) {
set_has_alias_context();
revision_.alias_context_ = alias_context;
}
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.GerritSourceContext.alias_context)
}
inline bool GerritSourceContext::has_revision() const {
return revision_case() != REVISION_NOT_SET;
}
inline void GerritSourceContext::clear_has_revision() {
_oneof_case_[0] = REVISION_NOT_SET;
}
inline GerritSourceContext::RevisionCase GerritSourceContext::revision_case() const {
return GerritSourceContext::RevisionCase(_oneof_case_[0]);
}
// -------------------------------------------------------------------
// GitSourceContext
// string url = 1;
inline void GitSourceContext::clear_url() {
url_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline const ::std::string& GitSourceContext::url() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.GitSourceContext.url)
return url_.GetNoArena();
}
inline void GitSourceContext::set_url(const ::std::string& value) {
url_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:google.devtools.source.v1.GitSourceContext.url)
}
#if LANG_CXX11
inline void GitSourceContext::set_url(::std::string&& value) {
url_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:google.devtools.source.v1.GitSourceContext.url)
}
#endif
inline void GitSourceContext::set_url(const char* value) {
GOOGLE_DCHECK(value != NULL);
url_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
// @@protoc_insertion_point(field_set_char:google.devtools.source.v1.GitSourceContext.url)
}
inline void GitSourceContext::set_url(const char* value, size_t size) {
url_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:google.devtools.source.v1.GitSourceContext.url)
}
inline ::std::string* GitSourceContext::mutable_url() {
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.GitSourceContext.url)
return url_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* GitSourceContext::release_url() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.GitSourceContext.url)
return url_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline void GitSourceContext::set_allocated_url(::std::string* url) {
if (url != NULL) {
} else {
}
url_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), url);
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.GitSourceContext.url)
}
// string revision_id = 2;
inline void GitSourceContext::clear_revision_id() {
revision_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline const ::std::string& GitSourceContext::revision_id() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.GitSourceContext.revision_id)
return revision_id_.GetNoArena();
}
inline void GitSourceContext::set_revision_id(const ::std::string& value) {
revision_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:google.devtools.source.v1.GitSourceContext.revision_id)
}
#if LANG_CXX11
inline void GitSourceContext::set_revision_id(::std::string&& value) {
revision_id_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:google.devtools.source.v1.GitSourceContext.revision_id)
}
#endif
inline void GitSourceContext::set_revision_id(const char* value) {
GOOGLE_DCHECK(value != NULL);
revision_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
// @@protoc_insertion_point(field_set_char:google.devtools.source.v1.GitSourceContext.revision_id)
}
inline void GitSourceContext::set_revision_id(const char* value, size_t size) {
revision_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:google.devtools.source.v1.GitSourceContext.revision_id)
}
inline ::std::string* GitSourceContext::mutable_revision_id() {
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.GitSourceContext.revision_id)
return revision_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* GitSourceContext::release_revision_id() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.GitSourceContext.revision_id)
return revision_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline void GitSourceContext::set_allocated_revision_id(::std::string* revision_id) {
if (revision_id != NULL) {
} else {
}
revision_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), revision_id);
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.GitSourceContext.revision_id)
}
// -------------------------------------------------------------------
// RepoId
// .google.devtools.source.v1.ProjectRepoId project_repo_id = 1;
inline bool RepoId::has_project_repo_id() const {
return id_case() == kProjectRepoId;
}
inline void RepoId::set_has_project_repo_id() {
_oneof_case_[0] = kProjectRepoId;
}
inline void RepoId::clear_project_repo_id() {
if (has_project_repo_id()) {
delete id_.project_repo_id_;
clear_has_id();
}
}
inline const ::google::devtools::source::v1::ProjectRepoId& RepoId::project_repo_id() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.RepoId.project_repo_id)
return has_project_repo_id()
? *id_.project_repo_id_
: ::google::devtools::source::v1::ProjectRepoId::default_instance();
}
inline ::google::devtools::source::v1::ProjectRepoId* RepoId::mutable_project_repo_id() {
if (!has_project_repo_id()) {
clear_id();
set_has_project_repo_id();
id_.project_repo_id_ = new ::google::devtools::source::v1::ProjectRepoId;
}
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.RepoId.project_repo_id)
return id_.project_repo_id_;
}
inline ::google::devtools::source::v1::ProjectRepoId* RepoId::release_project_repo_id() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.RepoId.project_repo_id)
if (has_project_repo_id()) {
clear_has_id();
::google::devtools::source::v1::ProjectRepoId* temp = id_.project_repo_id_;
id_.project_repo_id_ = NULL;
return temp;
} else {
return NULL;
}
}
inline void RepoId::set_allocated_project_repo_id(::google::devtools::source::v1::ProjectRepoId* project_repo_id) {
clear_id();
if (project_repo_id) {
set_has_project_repo_id();
id_.project_repo_id_ = project_repo_id;
}
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.RepoId.project_repo_id)
}
// string uid = 2;
inline bool RepoId::has_uid() const {
return id_case() == kUid;
}
inline void RepoId::set_has_uid() {
_oneof_case_[0] = kUid;
}
inline void RepoId::clear_uid() {
if (has_uid()) {
id_.uid_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
clear_has_id();
}
}
inline const ::std::string& RepoId::uid() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.RepoId.uid)
if (has_uid()) {
return id_.uid_.GetNoArena();
}
return *&::google::protobuf::internal::GetEmptyStringAlreadyInited();
}
inline void RepoId::set_uid(const ::std::string& value) {
// @@protoc_insertion_point(field_set:google.devtools.source.v1.RepoId.uid)
if (!has_uid()) {
clear_id();
set_has_uid();
id_.uid_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
id_.uid_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:google.devtools.source.v1.RepoId.uid)
}
#if LANG_CXX11
inline void RepoId::set_uid(::std::string&& value) {
// @@protoc_insertion_point(field_set:google.devtools.source.v1.RepoId.uid)
if (!has_uid()) {
clear_id();
set_has_uid();
id_.uid_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
id_.uid_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:google.devtools.source.v1.RepoId.uid)
}
#endif
inline void RepoId::set_uid(const char* value) {
GOOGLE_DCHECK(value != NULL);
if (!has_uid()) {
clear_id();
set_has_uid();
id_.uid_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
id_.uid_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(value));
// @@protoc_insertion_point(field_set_char:google.devtools.source.v1.RepoId.uid)
}
inline void RepoId::set_uid(const char* value, size_t size) {
if (!has_uid()) {
clear_id();
set_has_uid();
id_.uid_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
id_.uid_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(
reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:google.devtools.source.v1.RepoId.uid)
}
inline ::std::string* RepoId::mutable_uid() {
if (!has_uid()) {
clear_id();
set_has_uid();
id_.uid_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.RepoId.uid)
return id_.uid_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* RepoId::release_uid() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.RepoId.uid)
if (has_uid()) {
clear_has_id();
return id_.uid_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
} else {
return NULL;
}
}
inline void RepoId::set_allocated_uid(::std::string* uid) {
if (!has_uid()) {
id_.uid_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
clear_id();
if (uid != NULL) {
set_has_uid();
id_.uid_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
uid);
}
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.RepoId.uid)
}
inline bool RepoId::has_id() const {
return id_case() != ID_NOT_SET;
}
inline void RepoId::clear_has_id() {
_oneof_case_[0] = ID_NOT_SET;
}
inline RepoId::IdCase RepoId::id_case() const {
return RepoId::IdCase(_oneof_case_[0]);
}
// -------------------------------------------------------------------
// ProjectRepoId
// string project_id = 1;
inline void ProjectRepoId::clear_project_id() {
project_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline const ::std::string& ProjectRepoId::project_id() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.ProjectRepoId.project_id)
return project_id_.GetNoArena();
}
inline void ProjectRepoId::set_project_id(const ::std::string& value) {
project_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:google.devtools.source.v1.ProjectRepoId.project_id)
}
#if LANG_CXX11
inline void ProjectRepoId::set_project_id(::std::string&& value) {
project_id_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:google.devtools.source.v1.ProjectRepoId.project_id)
}
#endif
inline void ProjectRepoId::set_project_id(const char* value) {
GOOGLE_DCHECK(value != NULL);
project_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
// @@protoc_insertion_point(field_set_char:google.devtools.source.v1.ProjectRepoId.project_id)
}
inline void ProjectRepoId::set_project_id(const char* value, size_t size) {
project_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:google.devtools.source.v1.ProjectRepoId.project_id)
}
inline ::std::string* ProjectRepoId::mutable_project_id() {
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.ProjectRepoId.project_id)
return project_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* ProjectRepoId::release_project_id() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.ProjectRepoId.project_id)
return project_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline void ProjectRepoId::set_allocated_project_id(::std::string* project_id) {
if (project_id != NULL) {
} else {
}
project_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), project_id);
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.ProjectRepoId.project_id)
}
// string repo_name = 2;
inline void ProjectRepoId::clear_repo_name() {
repo_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline const ::std::string& ProjectRepoId::repo_name() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.ProjectRepoId.repo_name)
return repo_name_.GetNoArena();
}
inline void ProjectRepoId::set_repo_name(const ::std::string& value) {
repo_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:google.devtools.source.v1.ProjectRepoId.repo_name)
}
#if LANG_CXX11
inline void ProjectRepoId::set_repo_name(::std::string&& value) {
repo_name_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:google.devtools.source.v1.ProjectRepoId.repo_name)
}
#endif
inline void ProjectRepoId::set_repo_name(const char* value) {
GOOGLE_DCHECK(value != NULL);
repo_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
// @@protoc_insertion_point(field_set_char:google.devtools.source.v1.ProjectRepoId.repo_name)
}
inline void ProjectRepoId::set_repo_name(const char* value, size_t size) {
repo_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:google.devtools.source.v1.ProjectRepoId.repo_name)
}
inline ::std::string* ProjectRepoId::mutable_repo_name() {
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.ProjectRepoId.repo_name)
return repo_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* ProjectRepoId::release_repo_name() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.ProjectRepoId.repo_name)
return repo_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline void ProjectRepoId::set_allocated_repo_name(::std::string* repo_name) {
if (repo_name != NULL) {
} else {
}
repo_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), repo_name);
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.ProjectRepoId.repo_name)
}
// -------------------------------------------------------------------
// CloudWorkspaceId
// .google.devtools.source.v1.RepoId repo_id = 1;
inline bool CloudWorkspaceId::has_repo_id() const {
return this != internal_default_instance() && repo_id_ != NULL;
}
inline void CloudWorkspaceId::clear_repo_id() {
if (GetArenaNoVirtual() == NULL && repo_id_ != NULL) delete repo_id_;
repo_id_ = NULL;
}
inline const ::google::devtools::source::v1::RepoId& CloudWorkspaceId::repo_id() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.CloudWorkspaceId.repo_id)
return repo_id_ != NULL ? *repo_id_
: *::google::devtools::source::v1::RepoId::internal_default_instance();
}
inline ::google::devtools::source::v1::RepoId* CloudWorkspaceId::mutable_repo_id() {
if (repo_id_ == NULL) {
repo_id_ = new ::google::devtools::source::v1::RepoId;
}
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.CloudWorkspaceId.repo_id)
return repo_id_;
}
inline ::google::devtools::source::v1::RepoId* CloudWorkspaceId::release_repo_id() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.CloudWorkspaceId.repo_id)
::google::devtools::source::v1::RepoId* temp = repo_id_;
repo_id_ = NULL;
return temp;
}
inline void CloudWorkspaceId::set_allocated_repo_id(::google::devtools::source::v1::RepoId* repo_id) {
delete repo_id_;
repo_id_ = repo_id;
if (repo_id) {
} else {
}
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.CloudWorkspaceId.repo_id)
}
// string name = 2;
inline void CloudWorkspaceId::clear_name() {
name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline const ::std::string& CloudWorkspaceId::name() const {
// @@protoc_insertion_point(field_get:google.devtools.source.v1.CloudWorkspaceId.name)
return name_.GetNoArena();
}
inline void CloudWorkspaceId::set_name(const ::std::string& value) {
name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:google.devtools.source.v1.CloudWorkspaceId.name)
}
#if LANG_CXX11
inline void CloudWorkspaceId::set_name(::std::string&& value) {
name_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:google.devtools.source.v1.CloudWorkspaceId.name)
}
#endif
inline void CloudWorkspaceId::set_name(const char* value) {
GOOGLE_DCHECK(value != NULL);
name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
// @@protoc_insertion_point(field_set_char:google.devtools.source.v1.CloudWorkspaceId.name)
}
inline void CloudWorkspaceId::set_name(const char* value, size_t size) {
name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:google.devtools.source.v1.CloudWorkspaceId.name)
}
inline ::std::string* CloudWorkspaceId::mutable_name() {
// @@protoc_insertion_point(field_mutable:google.devtools.source.v1.CloudWorkspaceId.name)
return name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* CloudWorkspaceId::release_name() {
// @@protoc_insertion_point(field_release:google.devtools.source.v1.CloudWorkspaceId.name)
return name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline void CloudWorkspaceId::set_allocated_name(::std::string* name) {
if (name != NULL) {
} else {
}
name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), name);
// @@protoc_insertion_point(field_set_allocated:google.devtools.source.v1.CloudWorkspaceId.name)
}
#endif // !PROTOBUF_INLINE_NOT_IN_HEADERS
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// @@protoc_insertion_point(namespace_scope)
} // namespace v1
} // namespace source
} // namespace devtools
} // namespace google
#ifndef SWIG
namespace google {
namespace protobuf {
template <> struct is_proto_enum< ::google::devtools::source::v1::AliasContext_Kind> : ::google::protobuf::internal::true_type {};
template <>
inline const EnumDescriptor* GetEnumDescriptor< ::google::devtools::source::v1::AliasContext_Kind>() {
return ::google::devtools::source::v1::AliasContext_Kind_descriptor();
}
} // namespace protobuf
} // namespace google
#endif // SWIG
// @@protoc_insertion_point(global_scope)
#endif // PROTOBUF_google_2fdevtools_2fsource_2fv1_2fsource_5fcontext_2eproto__INCLUDED
| [
"[email protected]"
] | |
f3c976bcd18777f5a789c69cfe701cbb8aa25c8f | 291e73a8eb9b7b8ee00e4bccb67c5a2f879ed804 | /Jung-jaeho/실패율.cpp | af9dcaa574dc1e9e9b70da0782827b9b2a84de3e | [] | no_license | sejong-algorithm/Study | 7ce16fdd1318c1b1f2810fd434df9022ed26a17b | 6df92a22d3b8d59a3f5e0aa4555b8dd8d0e1b768 | refs/heads/master | 2020-12-04T19:08:58.123192 | 2020-11-22T08:30:22 | 2020-11-22T08:30:22 | 231,876,773 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,056 | cpp | #include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
bool cmp(pair<double, int> p1, pair<double, int> p2){
if(p1.first == p2.first) return p1.second < p2.second;
else return p1.first > p2.first;
}
vector<int> solution(int N, vector<int> stages){
vector<int> answer;
vector<pair<double, int>> failure;
for(int i = 0 ; i<= N; i++){
failure.push_back(make_pair(0,0));
}
for(int i = 0 ; i < stages.size(); i++)
{
int num = stages[i];
failure[stages[i]-1].first += 1;
while(num > 0){
failure[num - 1].second += 1;
num -= 1;
}
}
for( int i = 0 ; i < N ; i++){
if(failure[i].second == 0)
failure[i] = make_pair(0, i);
else
failure[i] = make_pair(failure[i].first / failure[i].second, i);
}
failure.pop_back();
sort(failure.begin(), failure.end(), cmp);
for(int i = 0 ; i< N ; i++){
answer.push_back(failure[i].second+1);
}
return answer;
} | [
"[email protected]"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.